:root {
    --maroon: #6b1d1d;
    --gold: #f5b041;
    --light-gold: #f8d7a4;
    --cream: #fffaf2;
    --light-cream: #ffe8cc;
    --dark-maroon: #4a1414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    position: relative;
}
/* Mobile-only styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Container fix to prevent overflow */
    .container {
        max-width: 100%;
    }

    /* Ensure all sections don't overflow */
    section, .section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .div{
        width: 100%;
        overflow: hidden;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.om-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: rotate 3s linear infinite;
}

.om-symbol svg {
    width: 100%;
    height: 100%;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    color: rgba(245, 176, 65, 0.1);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

.floating-element.element-4 {
    top: 70%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Navbar Styles */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--maroon) !important;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-link {
    color: #3a2b2b !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 25px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--gold) !important;
    background: rgba(245, 176, 65, 0.1);
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav {
        gap: 0.5rem !important;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        border-radius: 10px;
        margin: 2px 0;
    }
    
    /* Mobile Book Now Button */
    .navbar-nav .btn-gold {
        padding: 12px 24px;
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.95);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 2px 10px;
    width: auto;
    color: #3a2b2b;
}

.dropdown-item:hover {
    background: rgba(245, 176, 65, 0.1);
    color: var(--gold);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #e09a2d);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e09a2d, var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 176, 65, 0.4);
}

/* Glow Effect */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.glow-effect:hover::before {
    left: 100%;
}

/* Utility Classes */
.text-maroon {
    color: var(--maroon) !important;
}

.text-gold {
    color: var(--gold) !important;
}

/* Navbar Toggler Customization */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28107, 29, 29, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 176, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 29, 29, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.badge-content h5 {
    color: var(--maroon);
    margin-bottom: 5px;
}

.rating i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #e09a2d);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e09a2d, var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 176, 65, 0.4);
}

.btn-outline-maroon {
    color: var(--maroon);
    border: 2px solid var(--maroon);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-maroon:hover {
    background: var(--maroon);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 29, 29, 0.3);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold), var(--maroon));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    color: white !important;
}

.social-icons a i {
    position: relative;
    z-index: 2;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(245, 176, 65, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--maroon);
}

/* Section Spacing */
section {
    padding: 100px 0;
}

/* Utility Classes */
.text-maroon {
    color: var(--maroon);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: white;
}

.bg-maroon {
    background-color: var(--maroon);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-light {
    background: linear-gradient(135deg, rgba(255,250,242,0.8) 0%, rgba(255,232,204,0.8) 100%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}