/* Allfood Template Styles - Inspired by Colorlib Allfood */

:root {
    --primary-color: #c17a32;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --light-text-color: #666666;
    --background-color: #ffffff;
    --dark-section-bg: #1a1a2e;
    --font-family: Roboto, sans-serif;
    --heading-font: Merriweather, serif;
    --container-width: 1200px;
    --container-width-xxl: 1320px;
    --section-label-transform: uppercase;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - matches colorlib allfood computed styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: rgb(33, 32, 37);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 87px);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 49px);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

p {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Section Label - Orange text */
.section-label {
    display: block;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: var(--section-label-transform);
    letter-spacing: normal;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* ===========================================
   HEADER STYLES
   =========================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.site-header.transparent {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.site-header.solid {
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sticky header - appears when scrolling past hero */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    background: var(--background-color);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    animation: slideDown 0.4s ease;
}

.site-header.is-sticky .main-navigation a,
.site-header.is-sticky .logo-text {
    color: var(--text-color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text i {
    color: var(--primary-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation a {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
    text-transform: capitalize;
    letter-spacing: normal;
}

.site-header.transparent .main-navigation a,
.site-header.transparent .logo-text {
    color: #fff;
}

.site-header.transparent .main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 4px;
    gap: 0.5rem;
    align-items: center;
}

.mobile-menu-toggle i {
    margin-left: 0.5rem;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-section-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-slide {
    padding: 8rem 0 4rem;
}

.hero-content {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* Hero text animations */
.hero-tagline {
    display: block;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 6vw, 50px);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.875;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-content .cta-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-color);
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.cta-button-large {
    padding: 1.25rem 3rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.text-link:hover {
    gap: 0.75rem;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-section {
    padding: 5rem 0;
}

.about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-chef-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* About Section Alternate (dark background with image) */
.about-section-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-image-container {
    position: relative;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-container {
    background: var(--dark-section-bg);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-container .section-label {
    color: var(--primary-color);
}

.about-content-container h2 {
    color: #fff;
}

.about-content-container p {
    color: rgba(255, 255, 255, 0.7);
}

.about-content-container .text-link {
    margin-top: 1rem;
}

/* ===========================================
   MENU SECTION
   =========================================== */
.menu-section,
.menu-full-section {
    padding: 5rem 0 1rem;
    background: var(--background-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 49px);
    font-weight: 600;
    line-height: 1.3;
}

/* Menu Tabs */
.menu-tabs {
    margin-bottom: 2rem;
}

.menu-section .menu-tabs {
    margin-bottom: 3rem;
}

.tabs-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    background: var(--primary-color);
    color: #fff;
}

/* Arrow pointer below active tab */
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.menu-panel {
    display: none !important;
}

.menu-panel.active {
    display: block !important;
}

.menu-panel.active.menu-gallery-grid {
    display: grid !important;
}

/* Menu Item */
.menu-item {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.item-image {
    flex: 0 0 150px;
    position: relative;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 150px;
}

.item-image-placeholder {
    background: linear-gradient(135deg, var(--dark-section-bg), #2d2d44);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image-placeholder i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.item-content {
    flex: 1;
    padding: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--secondary-color);
}

.item-price {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.item-description {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin: 0;
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* ===========================================
   MENU GALLERY GRID (Homepage style)
   =========================================== */
.menu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Grid layout:
   [1] [2] [Featured]
   [3] [4] [Featured]
   Featured spans 2 rows on the right
*/
.gallery-menu-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-menu-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-menu-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-menu-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; } /* Featured */
.gallery-menu-item:nth-child(4) { grid-column: 1 / 3; grid-row: 2; }

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-menu-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-price {
    display: block;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.gallery-item-name {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Featured gallery item - always visible overlay with CTA */
.gallery-menu-item.featured .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem;
    top: 0;
}

.gallery-menu-item.featured .gallery-item-price {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.gallery-menu-item.featured .gallery-item-name {
    font-size: 28px;
    margin-bottom: 0.75rem;
}

.gallery-menu-item.featured .gallery-item-description {
    font-family: var(--font-family);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 220px;
}

.gallery-menu-item.featured .gallery-item-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    transition: background 0.3s ease;
}

.gallery-menu-item.featured .gallery-item-cta:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 1024px) {
    .menu-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
    }

    .gallery-menu-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .gallery-menu-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-menu-item:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
    .gallery-menu-item:nth-child(4) { display: none; }
}

@media (max-width: 768px) {
    .menu-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-menu-item {
        aspect-ratio: 16/9;
    }

    .gallery-menu-item:nth-child(1),
    .gallery-menu-item:nth-child(2),
    .gallery-menu-item:nth-child(3),
    .gallery-menu-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-menu-item:nth-child(4) { display: block; }

    .gallery-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    }

    .gallery-menu-item.featured .gallery-item-overlay {
        justify-content: flex-end;
        padding: 1.5rem;
    }
}

/* Product Ingredients */
.product-ingredients {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85rem;
}

.product-ingredients h4 {
    font-size: 0.85rem;
    font-family: var(--font-family);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-ingredients h4 i {
    color: var(--primary-color);
}

.ingredients-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ingredients-list li {
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #eee;
}

.allergens {
    margin-top: 0.75rem;
}

.allergens p {
    color: #d32f2f;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}

.nutritional-info {
    margin-top: 0.75rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.8rem;
}

.nutrition-item .label {
    color: var(--light-text-color);
}

.nutrition-item .value {
    font-weight: 600;
}

/* ===========================================
   RESERVATION SECTION
   =========================================== */
.reservation-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reservation-content {
    max-width: 900px;
    margin: 0 auto;
}

.reservation-text {
    text-align: center;
    margin-bottom: 2rem;
}

.reservation-form .form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.reservation-form .form-group {
    flex: 1;
    position: relative;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    background: #fff;
    appearance: none;
}

.reservation-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text-color);
}

.select-group select {
    padding-left: 1rem;
    cursor: pointer;
}

.select-group i.fa-chevron-down {
    left: auto;
    right: 1rem;
    pointer-events: none;
}

.reservation-section-full {
    padding: 5rem 0;
}

.reservation-form-full .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reservation-form-full .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.reservation-form-full .form-group-full {
    grid-column: 1 / -1;
}

.reservation-form-full textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    resize: vertical;
}

/* ===========================================
   SERVICES SECTION (matches colorlib original)
   =========================================== */
.services-section {
    padding: 120px 0 90px;
    background: transparent;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.service-card {
    text-align: center;
    padding: 79px 23px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 100%;
    max-width: 370px;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(133, 66, 189, 0.1);
}

.service-icon {
    margin: 0 auto 16px;
    display: block;
    text-align: center;
    line-height: 90px;
}

.service-icon i {
    font-size: 60px;
    color: #000;
    transition: color 0.3s ease;
    line-height: inherit;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-content {
    padding: 0 16px;
}

.service-content h5 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 24px;
    color: rgb(33, 32, 37);
}

.service-content h5 a {
    color: inherit;
    text-decoration: none;
}

.service-content h5 a:hover {
    color: var(--primary-color);
}

.service-content p {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 15px;
    line-height: 30px;
    color: rgb(130, 130, 130);
}

@media (max-width: 991px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        padding: 50px 20px;
    }
}

/* ===========================================
   NEWSLETTER SECTION
   =========================================== */
.newsletter-section {
    padding: 5rem 0;
    background: var(--dark-section-bg);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

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

.newsletter-text .section-label {
    color: var(--primary-color);
}

.newsletter-text h2 {
    color: #fff;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

/* ===========================================
   GALLERY SECTION
   =========================================== */
.gallery-section,
.gallery-full-section {
    padding: 1.5rem 0 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 87, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

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

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.no-images {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-text-color);
}

.no-images i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Instagram CTA */
.instagram-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram-cta {
    text-align: center;
    color: #fff;
}

.instagram-cta i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-cta h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.instagram-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.instagram-cta .cta-button {
    background: #fff;
    color: #833ab4;
    border-color: #fff;
}

.instagram-cta .cta-button:hover {
    background: transparent;
    color: #fff;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-info-section {
    padding: 4rem 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: var(--text-color);
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Hours Section */
.hours-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.hours-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hours-grid {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-item.today {
    background: rgba(255, 87, 34, 0.1);
}

.hours-item.today .day-name {
    color: var(--primary-color);
    font-weight: 600;
}

.day-name {
    font-weight: 500;
}

.day-hours {
    color: var(--light-text-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

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

.form-text {
    padding-top: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===========================================
   PAGE HEADER
   =========================================== */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--background-color);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0;
}

.menu-page .page-header,
.gallery-page .page-header,
.contact-page .page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.85)), url('') center/cover;
}

.menu-page .page-header .section-label,
.gallery-page .page-header .section-label,
.contact-page .page-header .section-label {
    color: var(--primary-color);
}

.menu-page .page-header h1,
.gallery-page .page-header h1,
.contact-page .page-header h1 {
    color: #fff;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: var(--dark-section-bg);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    max-height: 60px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column h4 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Instagram Grid in Footer */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
}

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

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

.instagram-placeholder {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-placeholder i {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
}

/* ===========================================
   BACK TO TOP BUTTON
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section-alt {
        grid-template-columns: 1fr;
    }

    .about-content-container {
        order: -1;
    }

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

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-color);
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        display: block;
        padding: 0.75rem 0;
        color: var(--text-color) !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .menu-item {
        flex-direction: column;
    }

    .item-image {
        flex: none;
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservation-form .form-row {
        flex-direction: column;
    }

    .reservation-form-full .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .tabs-list {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .page-header {
        padding: 8rem 0 3rem;
    }
}

/* XXL Screens - Extra large desktops */
@media (min-width: 1400px) {
    .container {
        max-width: var(--container-width-xxl);
        padding: 0 30px;
    }

    .hero-content {
        max-width: 700px;
    }

    .menu-grid {
        gap: 2.5rem;
    }

    .footer-grid {
        gap: 4rem;
    }

    .about-section {
        padding: 6rem 0;
    }

    .services-section {
        padding: 140px 0 100px;
    }

    .menu-section,
    .menu-full-section {
        padding: 6rem 0 2rem;
    }

    .gallery-section,
    .gallery-full-section {
        padding: 2rem 0 6rem;
    }
}

/* Custom CSS Override */

