/* ===== GURKHA RESTAURANT AESTHETIC DESIGN ===== */

/* Root Variables - Comfort Colors */
:root {
    --primary-color: #8B4513;      /* Saddle Brown - warm, earthy */
    --secondary-color: #CD853F;     /* Peru - warm sand color */
    --accent-color: #DAA520;        /* Goldenrod - warm gold */
    --dark-color: #2F1B14;          /* Dark brown */
    --light-color: #F5F5DC;         /* Beige */
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F8F8F8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-warm: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    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: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-delivery {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* ===== NAVIGATION ===== */
/*.navbar {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    background: rgba(47, 27, 20, 0.95);*/
/*    backdrop-filter: blur(10px);*/
/*    z-index: 1000;*/
/*    transition: var(--transition);*/
/*    animation: slideDown 0.8s ease-out;*/
/*}*/

/*@keyframes slideDown {*/
/*    from {*/
/*        transform: translateY(-100%);*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        transform: translateY(0);*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*.navbar.scrolled {*/
/*    background: rgba(47, 27, 20, 0.98);*/
/*    box-shadow: var(--shadow-medium);*/
/*}*/

/*.nav-container {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    padding: 1rem 2rem;*/
/*}*/

/*.nav-logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/

/*.logo {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border-radius: 50%;*/
/*}*/

/*.logo-text {*/
/*    font-family: 'Playfair Display', serif;*/
/*    font-size: 1.8rem;*/
/*    font-weight: 700;*/
/*    color: var(--accent-color);*/
/*}*/

/*.nav-menu {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    gap: 2rem;*/
/*    align-items: center;*/
/*}*/

/*.nav-link {*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*    font-weight: 500;*/
/*    transition: var(--transition);*/
/*    position: relative;*/
/*}*/

/*.nav-link::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -5px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: var(--accent-color);*/
/*    transition: var(--transition);*/
/*}*/

/*.nav-link:hover::after {*/
/*    width: 100%;*/
/*}*/

/*.btn-reserve {*/
/*    background: var(--gradient-primary);*/
/*    padding: 10px 20px;*/
/*    border-radius: 25px;*/
/*}*/

/*.btn-reserve:hover {*/
/*    transform: translateY(-2px);*/
/*}*/

/* ===== LANGUAGE SWITCHER ===== */
/*.language-switcher {*/
/*    position: relative;*/
/*    margin-left: 1rem;*/
/*}*/

/*.lang-dropdown {*/
/*    position: relative;*/
/*}*/

/*.lang-button {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    color: var(--white);*/
/*    padding: 8px 12px;*/
/*    border-radius: 25px;*/
/*    cursor: pointer;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    transition: var(--transition);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.lang-button:hover {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    transform: translateY(-1px);*/
/*}*/

/*.lang-button i:first-child {*/
/*    color: var(--accent-color);*/
/*}*/

/*.lang-button i:last-child {*/
/*    font-size: 0.7rem;*/
/*    transition: var(--transition);*/
/*}*/

/*.lang-dropdown.active .lang-button i:last-child {*/
/*    transform: rotate(180deg);*/
/*}*/

/*.lang-options {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    right: 0;*/
/*    background: var(--white);*/
/*    border-radius: 10px;*/
/*    box-shadow: var(--shadow-heavy);*/
/*    min-width: 150px;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: var(--transition);*/
/*    z-index: 1001;*/
/*    overflow: hidden;*/
/*}*/

/*.lang-dropdown.active .lang-options {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(5px);*/
/*}*/

/*.lang-option {*/
/*    width: 100%;*/
/*    padding: 12px 16px;*/
/*    border: none;*/
/*    background: transparent;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    cursor: pointer;*/
/*    transition: var(--transition);*/
/*    color: var(--dark-color);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.lang-option:hover {*/
/*    background: var(--light-color);*/
/*}*/

/*.lang-option.active {*/
/*    background: var(--primary-color);*/
/*    color: var(--white);*/
/*}*/

/*.lang-option img {*/
/*    width: 20px;*/
/*    height: 15px;*/
/*    object-fit: cover;*/
/*    border-radius: 2px;*/
/*}*/

/*.hamburger {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    cursor: pointer;*/
/*    margin-left: 1rem;*/
/*}*/

/*.bar {*/
/*    width: 25px;*/
/*    height: 3px;*/
/*    background: var(--white);*/
/*    margin: 3px 0;*/
/*    transition: var(--transition);*/
/*}*/

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}
.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure overlay is above the background image but below content */
}

/*@keyframes smokeAnimation {*/
/*    0%, 100% {*/
/*        background: linear-gradient(45deg, */
/*            rgba(20, 20, 20, 0.7) 0%,*/
/*            rgba(40, 40, 40, 0.5) 25%,*/
/*            rgba(50, 50, 50, 0.3) 50%,*/
/*            rgba(20, 20, 20, 0.6) 75%,*/
/*            rgba(10, 10, 10, 0.8) 100%);*/
/*    }*/
/*    50% {*/
/*        background: linear-gradient(135deg, */
/*            rgba(50, 50, 50, 0.6) 0%,*/
/*            rgba(20, 20, 20, 0.4) 25%,*/
/*            rgba(40, 40, 40, 0.7) 50%,*/
/*            rgba(10, 10, 10, 0.5) 75%,*/
/*            rgba(20, 20, 20, 0.8) 100%);*/
/*    }*/
/*}*/

.hero-content {
    z-index: 2;
    /* Reduced padding to minimize space around content */
    padding: 10px 20px;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.3); /* Added a subtle background for better readability */
    border-radius: 10px; /* Slightly rounded corners */
    animation: fadeUp 1.5s ease;
    max-height: 100vh; /* Allow content to take up to 90% of viewport height */
    overflow-y: auto; /* Add scroll if content exceeds max-height */
    display: flex; /* Use flexbox for internal content alignment */
    flex-direction: column;
    justify-content: center; /* Center content vertically within its own box */
    align-items: center; /* Center content horizontally within its own box */
}

.hero-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
    text-align: justify;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 27, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-btn {
    font-size: 4rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* ===== STORY TIMELINE ===== */
.story-section {
    margin-top: 6rem;
}

.story-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    margin: 0 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===== MENU SECTION ===== */
.menu {
    padding: 100px 0;
    position: relative;
    background: var(--light-color);
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: -1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    transform: translateY(20px);
    opacity: 0.9;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    opacity: 1;
}

.menu-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 2rem;
    position: relative;
}

.menu-title {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.menu-description {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.menu-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== DELIVERY SECTION ===== */
.delivery {
    padding: 100px 0;
    background: var(--white);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.delivery-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.delivery-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.delivery-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.delivery-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 100px 0;
    background: var(--light-color);
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.index-contact-info {
    background: var(--dark-color);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.contact-item {
    text-align: center;
    color: var(--white);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PAYMENT SECTION ===== */
/*.payment {*/
/*    padding: 100px 0;*/
/*    background: var(--white);*/
/*}*/

/*.payment-methods {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 2rem;*/
/*    flex-wrap: wrap;*/
/*    margin-top: 3rem;*/
/*}*/

/*.payment-item {*/
/*    width: 120px;*/
/*    height: 80px;*/
/*    background: var(--light-color);*/
/*    border-radius: 15px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    flex-direction: column;*/
/*    box-shadow: var(--shadow-light);*/
/*    transition: var(--transition);*/
/*    padding: 1rem;*/
/*}*/

/*.payment-item:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: var(--shadow-medium);*/
/*}*/

/*.payment-item img {*/
/*    max-width: 80%;*/
/*    max-height: 60%;*/
/*    object-fit: contain;*/
/*}*/

/*.payment-item i {*/
/*    font-size: 2rem;*/
/*    color: var(--primary-color);*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.payment-item span {*/
/*    font-size: 0.8rem;*/
/*    color: var(--gray);*/
/*    font-weight: 600;*/
/*}*/

/* Payment Methods Section */
.payment-methods {
    padding: 5rem 0;
    background: #f8f5f0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-item h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.payment-item p {
    color: #666;
    line-height: 1.5;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Screens */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    /* Language Switcher Mobile */
    .language-switcher {
        margin-left: 0.5rem;
        margin-right: 1rem;
    }
    
    .lang-button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .lang-options {
        right: -10px;
        min-width: 130px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    /* Hero */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        flex: none;
        width: 60px;
        height: 60px;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Delivery */
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Payment */
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-item {
        width: 100px;
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    /* Typography */
    .section-title {
        font-size: 2rem;
    }
    
    /* Language Switcher Small Mobile */
    .lang-button {
        padding: 5px 8px;
        font-size: 0.7rem;
        gap: 5px;
    }
    
    .lang-options {
        right: -20px;
        min-width: 120px;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    /* Hero */
    .hero-content {
        padding: 1rem;
    }
    
    /* Services */
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Menu */
    .menu-card {
        margin: 0 10px;
    }
    
    /* Delivery */
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Payment */
    .payment-item {
        width: 80px;
        height: 60px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Fix AOS animations on mobile to prevent horizontal overflow */
    [data-aos="fade-right"] {
        transform: translateX(0) !important;
    }
    
    [data-aos="fade-left"] {
        transform: translateX(0) !important;
    }
    
    /* Disable horizontal slide animations on mobile */
    .fade-right {
        transform: translateY(30px) !important;
    }
    
    .fade-left {
        transform: translateY(30px) !important;
    }
    
    .fade-right.active {
        transform: translateY(0) !important;
    }
    
    .fade-left.active {
        transform: translateY(0) !important;
    }
}

/* ===== MOBILE AOS ANIMATION FIXES ===== */\n@media (max-width: 768px) {\n    /* Fix AOS animations on mobile/tablet to prevent horizontal overflow */\n    [data-aos=\"fade-right\"] {\n        transform: translateX(0) !important;\n    }\n    \n    [data-aos=\"fade-left\"] {\n        transform: translateX(0) !important;\n    }\n    \n    /* Convert horizontal animations to vertical for mobile */\n    [data-aos=\"fade-right\"]:not(.aos-animate) {\n        transform: translateY(30px) !important;\n        opacity: 0 !important;\n    }\n    \n    [data-aos=\"fade-left\"]:not(.aos-animate) {\n        transform: translateY(30px) !important;\n        opacity: 0 !important;\n    }\n    \n    [data-aos=\"fade-right\"].aos-animate {\n        transform: translateY(0) !important;\n        opacity: 1 !important;\n    }\n    \n    [data-aos=\"fade-left\"].aos-animate {\n        transform: translateY(0) !important;\n        opacity: 1 !important;\n    }\n    \n    /* Fix about image responsiveness on mobile/tablet */\n    .about-image img {\n        height: auto !important;\n        max-height: 400px !important;\n    }\n}\n\n/* ===== ENHANCED SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

.slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.rotate-in {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}

.flip-in {
    opacity: 0;
    transform: rotateX(-90deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-in.active {
    opacity: 1;
    transform: rotateX(0deg);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax elements */
.parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(139, 69, 19, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0);
    }
}

.pulse {
    animation: pulse 3s infinite;
}

/* Typewriter animation */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent-color);
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-color);
    }
}

/* Reveal text animation */
.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.reveal-text.active::after {
    transform: translateX(100%);
}

/* Progress bar animation */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 69, 19, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 2s ease;
    border-radius: 2px;
}

.progress-bar.active .progress-fill {
    width: 100%;
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.3);
    transform: scale(1.02);
}

/* Magnetic effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loading animations */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== LOADING ANIMATION ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(218, 165, 32, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
