/* ============================================
   RESTAURANT WEBSITE - MAIN STYLESHEET
   ============================================

   COLOR PALETTE:
   - Charcoal (dark): #2C2C2C
   - Deep Red (accent): #8B2635
   - Warm Beige (light): #F5E6D3
   - Cream White: #FFFEF9
   - Gold Accent: #D4A574

   FONTS:
   - Headings: Playfair Display (elegant serif)
   - Body: Lato (clean sans-serif)

   TO CUSTOMIZE COLORS:
   Search and replace the hex codes above throughout this file.
   ============================================ */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFEF9;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #2C2C2C;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Decorative Line */
.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B2635, #D4A574);
    margin: 20px auto 30px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background-color: #8B2635;
    color: #FFFEF9;
}

.btn-primary:hover {
    background-color: #6d1e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFEF9;
    border: 2px solid #FFFEF9;
}

.btn-secondary:hover {
    background-color: #FFFEF9;
    color: #2C2C2C;
}

.btn-outline {
    background-color: transparent;
    color: #8B2635;
    border: 2px solid #8B2635;
}

.btn-outline:hover {
    background-color: #8B2635;
    color: #FFFEF9;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(44, 44, 44, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #2C2C2C;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFEF9;
    text-decoration: none;
}

.logo span {
    color: #D4A574;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #FFFEF9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4A574;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4A574;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FFFEF9;
    transition: all 0.3s ease;
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    color: #FFFEF9;
}

.lang-btn.active {
    color: #FFFEF9;
    background-color: #8B2635;
}

.lang-divider {
    color: #666;
    font-weight: 300;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    /*
       TO CHANGE HERO IMAGE:
       Replace 'hero-bg.jpg' with your image filename
       Place the image in the 'images' folder
    */
    background: linear-gradient(rgba(44, 44, 44, 0.6), rgba(44, 44, 44, 0.7)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFEF9;
    position: relative;
}

/* Fallback gradient if no image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #8B2635 50%, #2C2C2C 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content .tagline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #FFFEF9;
    font-size: 2rem;
    text-decoration: none;
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.intro-section {
    background-color: #F5E6D3;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* ==========================================
   FEATURED DISHES
   ========================================== */
.featured-dishes {
    background-color: #FFFEF9;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dish-card {
    background-color: #FFFEF9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dish-image {
    width: 100%;
    height: 220px;
    /*
       TO CHANGE DISH IMAGE:
       Replace background-color with your image:
       background: url('../images/your-dish.jpg') center/cover;
    */
    background-color: #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B2635;
}

.dish-info {
    padding: 25px;
}

.dish-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.dish-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.dish-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B2635;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    background-color: #2C2C2C;
    color: #FFFEF9;
}

.testimonials .section-title {
    color: #FFFEF9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #D4A574;
    transition: background-color 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #D4A574;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2C2C2C;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: #999;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, #8B2635 0%, #6d1e2a 100%);
    padding: 60px 0;
    text-align: center;
    color: #FFFEF9;
}

.cta-banner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ==========================================
   MENU PAGE STYLES
   ========================================== */
.page-header {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(44, 44, 44, 0.7), rgba(44, 44, 44, 0.8)),
                url('../images/menu-header.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFEF9;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #8B2635 100%);
    z-index: -1;
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
}

/* Menu Categories */
.menu-section {
    background-color: #FFFEF9;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid #2C2C2C;
    color: #2C2C2C;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.category-btn:hover,
.category-btn.active {
    background-color: #8B2635;
    border-color: #8B2635;
    color: #FFFEF9;
}

/* Menu Grid */
.menu-category {
    margin-bottom: 60px;
}

.menu-category h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E8DED1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #F5E6D3;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-color: #E8DED1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.menu-item-details {
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-item-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #2C2C2C;
}

.menu-item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #8B2635;
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.about-section {
    background-color: #FFFEF9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 10px;
    /*
       TO CHANGE ABOUT IMAGE:
       Replace with: background: url('../images/your-image.jpg') center/cover;
    */
    background-color: #E8DED1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #8B2635;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #D4A574;
    border-radius: 10px;
    z-index: -1;
}

.about-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.about-content p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

/* Features List */
.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.features-list .icon {
    width: 40px;
    height: 40px;
    background-color: #8B2635;
    color: #FFFEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #F5E6D3;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background-color: #8B2635;
    color: #FFFEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.info-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */
.gallery-section {
    background-color: #F5E6D3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    /*
       TO CHANGE GALLERY IMAGE:
       Replace background-color with:
       background: url('../images/gallery-1.jpg') center/cover;
    */
    background-color: #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B2635;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #FFFEF9;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #FFFEF9;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #D4A574;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #FFFEF9;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: #D4A574;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-section {
    background-color: #FFFEF9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    background-color: #8B2635;
    color: #FFFEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2C2C2C;
}

.contact-item-content p,
.contact-item-content a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: #8B2635;
}

/* Opening Hours */
.opening-hours {
    background-color: #F5E6D3;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.opening-hours h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E8DED1;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #F5E6D3;
    padding: 40px;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C2C2C;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8DED1;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FFFEF9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B2635;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    color: #8B2635;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-success {
    background-color: #4a7c59;
    color: #FFFEF9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

/* Map Container */
.map-container {
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background-color: #E8DED1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder .icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #8B2635;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #2C2C2C;
    color: #FFFEF9;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFEF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #8B2635;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #FFFEF9;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: #D4A574;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
}

.footer-contact .icon {
    color: #D4A574;
    margin-top: 3px;
}

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

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   TAKEAWAY ORDERING SYSTEM
   ========================================== */

/* Cart Toggle in Navbar */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-icon {
    font-size: 1.5rem;
    color: #FFFEF9;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #8B2635;
    color: #FFFEF9;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cart-badge.hidden {
    display: none;
}

.cart-badge.bump {
    animation: cartBump 0.3s ease;
}

@keyframes cartBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Add to Order Button */
.btn-add-to-cart {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background-color: #8B2635;
    color: #FFFEF9;
    border: 2px solid #8B2635;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-to-cart:hover {
    background-color: transparent;
    color: #8B2635;
}

.btn-add-to-cart.added {
    background-color: #4a7c59;
    border-color: #4a7c59;
    color: #FFFEF9;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background-color: #FFFEF9;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #E8DED1;
    background-color: #F5E6D3;
}

.cart-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #2C2C2C;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2C2C2C;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #8B2635;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 25px;
}

.cart-empty {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E8DED1;
    gap: 10px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #2C2C2C;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #8B2635;
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 2px solid #2C2C2C;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.cart-qty-btn:hover {
    background-color: #8B2635;
    border-color: #8B2635;
    color: #FFFEF9;
}

.cart-item-qty {
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 2px 5px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #8B2635;
}

.cart-footer {
    padding: 20px 25px;
    border-top: 2px solid #E8DED1;
    background-color: #F5E6D3;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C2C2C;
}

.cart-total #cart-total-price {
    color: #8B2635;
    font-size: 1.4rem;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
}

/* Order Modal */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.order-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    background-color: #FFFEF9;
    border-radius: 10px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal-overlay.active .order-modal {
    transform: scale(1);
}

.order-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2C2C2C;
    transition: color 0.3s ease;
}

.order-modal-close:hover {
    color: #8B2635;
}

.order-modal h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.order-summary {
    background-color: #F5E6D3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    max-height: 200px;
    overflow-y: auto;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #E8DED1;
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-item-qty {
    color: #666;
    margin-left: 5px;
}

.order-summary-item-subtotal {
    font-weight: 700;
    color: #8B2635;
    white-space: nowrap;
}

.order-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 2px solid #E8DED1;
}

.order-modal-total span:last-child {
    color: #8B2635;
}

.order-submit-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px;
}

.order-success {
    text-align: center;
    padding: 20px 0;
}

.order-success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.order-success h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.order-success p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.order-done-btn {
    min-width: 150px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #2C2C2C;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Sections */
    .section-padding {
        padding: 60px 0;
    }

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

    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    /* Cart responsive */
    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }

    .menu-item .btn-add-to-cart {
        width: 100%;
    }

    .order-modal {
        padding: 25px;
        margin: 10px;
    }

    .order-modal h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #D4A574;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #8B2635;
    color: #FFFEF9;
    padding: 10px 20px;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #FFFEF9;
    }

    .nav-menu a {
        text-decoration: underline;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .navbar,
    .footer,
    .cta-banner,
    .lightbox,
    .cart-sidebar,
    .cart-overlay,
    .cart-toggle,
    .order-modal-overlay,
    .btn-add-to-cart {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}
