/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #000000; /* Black */
    --accent-color: #f4f4f4;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled:hover {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
}

.navbar.scrolled .nav-logo img {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 15px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 15px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-content a:hover::before {
    width: 4px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image,
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35));
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Action Section with desi background pattern */
.action-section {
    padding: 4rem 0;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.03) 3px, transparent 3px),
        radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.03) 3px, transparent 3px),
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.02) 50%, transparent 52%);
    background-size: 80px 80px, 120px 120px, 60px 60px, 90px 90px, 200px 200px, 200px 200px;
    background-position: 0 0, 40px 40px, 20px 20px, 60px 60px, 0 0, 0 0;
    opacity: 0.6;
    pointer-events: none;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Architectural column decorative elements */
.action-buttons::before,
.action-buttons::after {
    content: '⟦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.action-buttons::before {
    left: -3.5rem;
}

.action-buttons::after {
    right: -3.5rem;
    transform: translateY(-50%) scaleX(-1);
}

.action-buttons:hover::before,
.action-buttons:hover::after {
    opacity: 0.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 2.8rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: visible;
    border: none;
    /* Octagonal mandala base shape */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-clip: padding-box;
}

/* Inner mandala petal pattern */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 20%, 60% 40%, 80% 50%, 60% 60%, 50% 80%, 40% 60%, 20% 50%, 40% 40%);
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Outer mandala geometric border */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    border: 3px solid currentColor;
    opacity: 0;
    transition: all 0.5s ease;
    background: 
        conic-gradient(from 0deg, transparent 10%, currentColor 12%, currentColor 13%, transparent 15%,
                      transparent 55%, currentColor 57%, currentColor 58%, transparent 60%,
                      transparent 100%, currentColor 102%, currentColor 103%, transparent 105%,
                      transparent 145%, currentColor 147%, currentColor 148%, transparent 150%,
                      transparent 190%, currentColor 192%, currentColor 193%, transparent 195%,
                      transparent 235%, currentColor 237%, currentColor 238%, transparent 240%,
                      transparent 280%, currentColor 282%, currentColor 283%, transparent 285%,
                      transparent 325%, currentColor 327%, currentColor 328%, transparent 330%);
}

.btn:hover::before {
    opacity: 1;
    width: 90%;
    height: 90%;
    animation: petalRotate 4s linear infinite;
}

.btn:hover::after {
    opacity: 0.3;
    width: 140%;
    height: 140%;
    animation: mandalaSpiral 6s linear infinite reverse;
}

@keyframes petalRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes mandalaSpiral {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.btn:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* View Menu Button - Elegant Hexagonal Shape */
.btn-accent {
    background: #E74C3C;
    color: #FFFFFF;
    border: 3px solid #C0392B;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.btn-accent:hover {
    background: #C0392B;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
    border-color: #A93226;
}

/* Book Table Button - Clean Mandala Design */
.btn-primary {
    background: #D4AF37;
    color: #2C3E50;
    border: 3px solid #B8941F;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.btn-primary:hover {
    background: #F1C40F;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    border-color: #D4AF37;
}

/* Order Online Button - Geometric Pattern */
.btn-secondary {
    background: #2C3E50;
    color: #F39C12;
    border: 3px solid #1B2631;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.btn-secondary:hover {
    background: #34495E;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.4);
    border-color: #2C3E50;
    color: #E67E22;
}

/* Menu Section */
.menu-slider-section {
    padding: 6rem 0;
    background: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-card {
    background: var(--text-light);
    border: 2px solid #f0f0f0;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.menu-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: var(--transition);
}

.menu-card:hover .menu-card-overlay {
    opacity: 1;
}

.menu-card-content {
    padding: 2rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.menu-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.menu-card-action {
    margin-top: auto;
}

.menu-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0.8rem 0;
    border-bottom: 2px solid transparent;
}

.menu-card-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}

.menu-card-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.menu-card-link:hover i {
    transform: translateX(3px);
}

/* Navigation Buttons - Clean Design */
.menu-nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.menu-nav-button:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.menu-nav-button i {
    font-size: 1rem;
    transition: var(--transition);
}

.menu-nav-button:hover i {
    transform: translateX(3px);
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text .section-title {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 2rem;
}

.vision-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.vision-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.vision-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: var(--accent-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--primary-color);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hour-row:last-child {
    border-bottom: none;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Footer contact links styling */
.footer-section p a {
    color: var(--text-light);
    text-decoration: underline;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .navbar {
        padding: 0.8rem 0;
        height: 80px;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 100%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 8px;
        margin: 0 2rem;
        width: calc(100% - 4rem);
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(212, 175, 55, 0.05);
        margin-top: 1rem;
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 8px;
    }

    /* Ensure mobile menu always has dark background */
    .navbar .nav-menu {
        background: rgba(0, 0, 0, 0.98);
    }

    /* Fix for mobile menu not hiding properly */
    .nav-menu:not(.active) {
        left: -100% !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo-img {
        height: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1.2rem 2.2rem;
        font-size: 1rem;
        /* Maintain dome shape on mobile */
        border-radius: 0 0 40px 40px;
    }

    .btn:hover {
        transform: translateY(-1px);
    }

    .vision-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .menu-card-content {
        padding: 1.5rem;
    }

    .menu-card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .navbar {
        padding: 0.5rem 0;
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem 0;
    }

    .nav-link {
        margin: 0 1rem;
        padding: 0.8rem;
        width: calc(100% - 2rem);
    }

    /* Ensure main content is visible */
    .menu-tabs-section {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .vision-section,
    .location-section,
    .menu-slider-section {
        padding: 3rem 0;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}
