:root {
    --bg-main: #0b0b0b;
    --gold: #c9a24d;
    --white: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--bg-main);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

.section {
    padding: 120px 0;
}

.btn-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px 40px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    background: transparent;
    transition: all .4s ease;
}

.btn-gold:hover {
    background: var(--gold);
    color: #000;
}


/* ============================================
   NAVBAR PREMIUM
============================================ */

#mainNavbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

#mainNavbar.navbar-scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* BRAND */
.navbar-brand {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--gold) !important;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 12px;
    padding: 8px 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

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

/* DROPDOWN MENUS */
.dropdown-menu {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 10px;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(201, 162, 77, 0.1);
    color: var(--gold);
    padding-left: 25px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* BOUTON RÉSERVATION NAVBAR */
.btn-nav-reservation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    margin-left: 10px;
}

.btn-nav-reservation:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

.reservation-icon {
    font-size: 1rem;
}

/* TOGGLER MOBILE */
.navbar-toggler {
    border: 1px solid rgba(201, 162, 77, 0.3);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(201, 162, 77, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 162, 77, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Active link state */
.navbar-nav .nav-link.active,
.dropdown-item.active {
    color: var(--gold) !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    width: 100% !important;
}

.dropdown-item.active {
    background: rgba(201, 162, 77, 0.1);
    padding-left: 25px;
}

.dropdown-item.active::before {
    opacity: 1 !important;
}

/* ============================================
   HERO SECTION
============================================ */

#hero {
    color: white;
    padding-top: 0;
}

.hero-overlay {
    background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    z-index: 1;
}

#hero video {
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 2;
    margin-top: 80px; /* Compense la navbar fixe */
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ddd;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* BOUTONS HERO */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-gold-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: rgba(201, 162, 77, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-counter {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-top: 40px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(201, 162, 77, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    #mainNavbar {
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .navbar-collapse {
        background: rgba(11, 11, 11, 0.98);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(201, 162, 77, 0.2);
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .btn-nav-reservation {
        margin: 15px 0 0;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn-gold,
    .hero-buttons .btn-gold-outline {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* univers Section */

.universe-section {
    background: #0b0b0b;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.section-subtitle {
    max-width: 600px;
    color: #b5b5b5;
    letter-spacing: 0.08em;
}

.universe-text {
    font-size: 1.1rem;
    color: #d0d0d0;
}

/* TIMELINE */
.timeline {
    position: relative;
    align-items: center;
}

.timeline-item {
    text-align: center;
    width: 30%;
}

.timeline-year {
    color: var(--gold);
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
}

.timeline-line {
    flex: 1;
    height: 1px;
    background: rgba(201,162,77,0.4);
}

/* STATS */
.stat-number {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

.stat p {
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    text-transform: uppercase;
}


/* Section restaurant */

.restaurants-section {
    padding: 0;
}

.restaurant-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-size: cover;
    background-position: center;
}

/* Images */
.restaurant-block.left {
    background-image: url("/static/images/7tables.jpg");
}

.restaurant-block.right {
    background-image: url("/static/images/casa60.jpg");
}

.restaurant-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    transition: background 0.5s ease;
}

.restaurant-block:hover .restaurant-overlay {
    background: rgba(0,0,0,0.35);
}

.restaurant-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    padding: 40px;
}

.restaurant-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.restaurant-meta {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--gold);
}

.restaurant-info li {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #ddd;
}

/* Responsive */
@media (max-width: 991px) {
    .restaurant-block {
        min-height: 70vh;
    }
}  
@media (max-width: 768px) {
    .restaurant-block {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .restaurant-content {
        max-width: 100%;
        padding: 20px;
    }
}


/* Gallery Section */

.gallery-section {
    background: #111;
}

.gallery-filters {
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #aaa;
    margin: 0 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: color .3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--gold);
}

.gallery-swiper {
    width: 100%;
    height: 70vh;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

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

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

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}


/* SECTION CLIENTS */
.clients-section {
    background: #0b0b0b;
}

.client-filters {
    margin-bottom: 40px;
}

/* GRID */
.clients-grid {
    min-height: 500px; /* Pour l'animation */
}

/* CARTE CLIENT */
.client-card {
    position: relative;
    background: #111;
    overflow: hidden;
    height: 100%;
    transition: transform 0.5s ease;
}

.client-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.client-img {
    height: 280px;
    overflow: hidden;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

/* CITATION */
.client-quote {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.client-quote p {
    font-style: italic;
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 10px;
}

.client-name {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* EFFET POLAROID */
.client-polaroid {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(201,162,77,0.2);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover .client-polaroid {
    opacity: 1;
}


/* SECTION MOMENTS */
.moments-section {
    padding: 100px 0;
    background: #000;
}

/* SWIPER CUSTOM */
.moments-swiper {
    width: 100%;
    height: 70vh;
}

.moment-slide {
    position: relative;
    overflow: hidden;
}

.moment-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.moment-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.8s ease;
}

.moment-slide-active .moment-video video {
    filter: grayscale(0%) brightness(1);
}

.moment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

/* CAPTION */
.moment-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 10;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.moment-slide-active .moment-caption {
    opacity: 1;
    transform: translateY(0);
}

.moment-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.moment-caption p {
    font-size: 1rem;
    color: #eee;
    font-style: italic;
}

/* SWIPER CONTROLS */
.moments-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.moments-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

.moments-swiper .swiper-button-next,
.moments-swiper .swiper-button-prev {
    color: var(--gold);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

/* AUDIO CONTROL */
.btn-audio {
    background: transparent;
    border: 1px solid rgba(201,162,77,0.4);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-audio:hover {
    background: rgba(201,162,77,0.1);
    border-color: var(--gold);
}

.audio-icon {
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .moments-swiper {
        height: 60vh;
    }
    
    .moment-caption {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .moment-caption h3 {
        font-size: 1.5rem;
    }
}


/* ============================================
   SECTION DIGITAL - SIMPLE
============================================ */

.digital-section {
    background: #0b0b0b;
    padding: 100px 0;
}

/* APP CARD */
.app-card {
    background: #151515;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.app-7tables {
    border-top: 4px solid var(--gold);
}

.app-casa60 {
    border-top: 4px solid #e74c3c;
}

/* APP HEADER */
.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.app-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.app-7tables .app-title {
    color: #e74c3c;
}

.app-casa60 .app-title {
    color: #30c751;
}


.app-casa60 .app-title {
    color: #30c751;
}

.app-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* APP MOCKUP */
.app-mockup {
    margin: 30px 0;
    text-align: center;
}

.phone-frame {
    display: inline-block;
    background: #111;
    border-radius: 30px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    max-width: 280px;
}

.app-screen {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* APP DOWNLOAD */
.app-download {
    margin-top: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.store-btn img {
    height: 50px;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.store-btn:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* QR CODE */
.qr-container {
    text-align: center;
}

.qr-code {
    display: inline-block;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.qr-code img {
    width: 150px;
    height: 150px;
    display: block;
}

.qr-label {
    color: #888;
    font-size: 0.8rem;
    margin-top: 10px;
    letter-spacing: 0.05em;
}

/* NOTE SIMPLE */
.note-simple {
    color: #aaa;
    font-size: 0.9rem;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .app-card {
        padding: 25px;
    }
    
    .phone-frame {
        max-width: 240px;
    }
    
    .qr-code img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 767px) {
    .digital-section {
        padding: 80px 0;
    }
    
    .app-card {
        margin-bottom: 30px;
    }
    
    .app-card:last-child {
        margin-bottom: 0;
    }
    
    .app-icon {
        font-size: 2.5rem;
    }
    
    .app-title {
        font-size: 1.8rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* SECTION CHEFS */
.chefs-section {
    background: #0b0b0b;
    position: relative;
}

.chefs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,77,0.3), transparent);
}

/* CARTE CHEF */
.chef-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* IMAGE CHEF */
.chef-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.chef-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s ease;
}

.chef-card:hover .chef-portrait {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.chef-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.chef-card:hover .chef-overlay {
    opacity: 0;
}

.chef-bio-preview h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.chef-bio-preview p {
    color: #ccc;
    font-size: 0.9rem;
}

/* INFO CHEF */
.chef-info {
    padding: 30px;
}

.chef-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
}

.chef-title {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.chef-philosophy {
    font-style: italic;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* BOUTON "DÉCOUVRIR" */
.btn-chef-more {
    background: transparent;
    border: 1px solid rgba(201,162,77,0.5);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-chef-more:hover {
    background: rgba(201,162,77,0.1);
    border-color: var(--gold);
}

/* MODAL CHEF */
.chef-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.chef-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #111;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border: 1px solid rgba(201,162,77,0.2);
    animation: modalAppear 0.5s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

/* DETAIL CHEF */
.chef-detail {
    display: none;
}

.chef-detail.active {
    display: block;
}

.detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.badge {
    background: var(--gold);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.detail-subtitle {
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.detail-bio {
    margin-bottom: 30px;
}

.detail-bio p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.detail-video video {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.video-caption {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .chef-image {
        height: 300px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .detail-content h2 {
        font-size: 2rem;
    }
}


/* SECTION MENU */
.menu-section {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* APP SIMULATION */
.menu-app {
    background: #151515;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201,162,77,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER APP */
.app-header {
    background: rgba(0,0,0,0.6);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-restaurant-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.app-restaurant {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.app-restaurant.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.app-title {
    font-size: 1.8rem;
    font-family: var(--font-title);
    color: var(--white);
}

/* CONTENU APP */
.app-content {
    padding: 30px;
}

.menu-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.menu-item.active {
    opacity: 1;
}

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

/* IMAGE PLAT */
.dish-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.dish-image:hover {
    transform: rotateY(15deg);
}

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

.dish-3d-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dish-image:hover .dish-3d-hint {
    opacity: 1;
}

/* INFO PLAT */
.dish-info {
    padding-left: 30px;
}

.dish-name {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}

.dish-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dish-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.dish-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 500;
}

.dish-time {
    color: #888;
    font-size: 0.9rem;
}

.dish-tag {
    background: rgba(201,162,77,0.1);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* BOUTON COMMANDER */
.dish-order-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dish-order-btn:hover {
    background: var(--gold);
    color: #000;
}

/* FOOTER APP */
.app-footer {
    background: rgba(0,0,0,0.6);
    padding: 25px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.app-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

.app-note span {
    font-size: 1.2rem;
}

/* ANIMATION "PLAT QUI ARRIVE" */
.dish-arrival-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.arrival-plate {
    width: 200px;
    height: 200px;
    background: #151515;
    border-radius: 50%;
    border: 2px solid var(--gold);
    position: relative;
    transform: translateY(100vh);
}

.arrival-plate::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
}

.arrival-text {
    margin-top: 30px;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .dish-info {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .dish-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .app-content {
        padding: 20px;
    }
}


/* SECTION SOCIAL */
.social-section {
    background: #0b0b0b;
}

/* FEED CONTAINER */
.social-feed {
    background: #151515;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
}

.instagram-feed {
    border-top: 4px solid #E1306C;
}

.tiktok-feed {
    border-top: 4px solid #000000;
}

/* FEED HEADER */
.feed-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-platform {
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-icon {
    font-size: 1.5rem;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.feed-stats {
    color: #888;
    font-size: 0.8rem;
}

/* FEED CONTENT */
.feed-content {
    padding: 0;
    max-height: 600px;
    overflow-y: auto;
}

/* SCROLLBAR STYLING */
.feed-content::-webkit-scrollbar {
    width: 4px;
}

.feed-content::-webkit-scrollbar-track {
    background: transparent;
}

.feed-content::-webkit-scrollbar-thumb {
    background: rgba(201,162,77,0.3);
    border-radius: 2px;
}

/* SOCIAL POST */
.social-post {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(201,162,77,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.username {
    font-weight: 600;
    color: var(--white);
}

.post-time {
    color: #888;
    font-size: 0.8rem;
}

/* POST MEDIA */
.post-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 9/16;
    background: #000;
}

.post-media img,
.post-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-media:hover .post-play {
    opacity: 1;
}

/* POST ACTIONS */
.post-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.action-btn {
    background: transparent;
    border: none;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 5px;
    border-radius: 5px;
}

.action-btn:hover {
    color: var(--gold);
}

.like-btn.liked {
    color: #E1306C;
}

/* POST CAPTION */
.post-caption {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.post-caption strong {
    color: var(--white);
    margin-right: 5px;
}

/* FEED FOOTER */
.feed-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.btn-follow {
    display: inline-block;
    background: rgba(201,162,77,0.1);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    background: rgba(201,162,77,0.2);
}

/* HASHTAGS */
.hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hashtag {
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hashtag:hover {
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .post-media {
        aspect-ratio: 1/1;
    }
    
    .hashtags {
        gap: 10px;
    }
}


/* ============================================
   SECTION CONTACT COMPLÈTE
============================================ */

/* SECTION */
.contact-section {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,77,0.3), transparent);
}

/* TOGGLE RESTAURANTS */
.restaurant-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 5px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-btn.active {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

/* INFORMATIONS RESTAURANT */
.restaurant-info {
    margin-bottom: 30px;
}

.info-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-address p {
    color: #ccc;
    margin-bottom: 5px;
}

.info-metro {
    color: #888;
    font-size: 0.9rem;
}

/* HORAIRES */
.info-hours {
    margin: 25px 0;
}

.info-hours h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    margin-bottom: 15px;
}

.hours-day {
    color: #aaa;
}

.hours-time {
    color: #ddd;
    font-weight: 500;
}

.hours-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background: #2ecc71;
}

.status-text {
    color: #aaa;
    font-size: 0.9rem;
}

/* TÉLÉPHONE */
.info-phone h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.phone-note {
    color: #888;
    font-size: 0.8rem;
}

/* CARTES */
.maps-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.map iframe {
    display: block;
}

/* ============================================
   FORMULAIRE DE RÉSERVATION
============================================ */

/* CONTAINER */
.reservation-form-container {
    background: #151515;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
}

.form-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.form-header h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.form-header p {
    color: #aaa;
    font-size: 0.9rem;
}

/* FORMULAIRE */
.reservation-form {
    padding: 25px;
}

.reservation-form .form-control,
.reservation-form .form-select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,162,77,0.1);
}

.reservation-form .form-label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ERREURS */
.form-error {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 5px;
    min-height: 18px;
    font-style: italic;
}

/* BOUTON SUBMIT */
.form-footer {
    margin-top: 20px;
}

.form-note {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.form-note a {
    color: var(--gold);
    text-decoration: underline;
}

#submitBtn {
    position: relative;
    overflow: hidden;
    padding: 14px;
    font-size: 0.85rem;
}

#submitBtn.loading {
    pointer-events: none;
    opacity: 0.8;
}

#submitBtn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* MESSAGE SUCCÈS */
.reservation-success {
    padding: 30px 25px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reservation-success h4 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.reservation-success p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.success-code {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 10px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.success-code strong {
    color: #2ecc71;
    font-size: 1.1rem;
}


/* RESPONSIVE */
@media (max-width: 991px) {
    .toggle-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .reservation-form {
        padding: 20px;
    }
    
    .form-header {
        padding: 20px 20px 15px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .reservation-form-container {
        margin-top: 30px;
    }
}


/* ============================================
   FOOTER LUXUEUX
============================================ */

/* SECTION FOOTER */
.footer-section {
    background: #0a0a0a;
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid rgba(201,162,77,0.1);
}

/* NEWSLETTER */
.newsletter-row {
    margin-bottom: 60px;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(201,162,77,0.05) 0%, rgba(0,0,0,0.3) 100%);
    border: 1px solid rgba(201,162,77,0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.newsletter-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    color: #aaa;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* FORM NEWSLETTER */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group .form-control {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.input-group .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,162,77,0.1);
}

.btn-newsletter {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #d4b04a;
    transform: translateY(-2px);
}

.form-check {
    text-align: left;
}

.form-check-input {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    color: #aaa;
    font-size: 0.8rem;
    cursor: pointer;
}

/* SUCCESS NEWSLETTER */
.newsletter-success {
    animation: fadeIn 0.5s ease;
}

.newsletter-success .success-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-success h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.newsletter-success p {
    color: #ccc;
}

/* MAIN FOOTER */
.footer-main {
    margin-bottom: 40px;
}

/* BRAND */
.footer-brand {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.footer-philosophy {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* SOCIAL LINKS */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-link:hover .social-icon {
    color: #000;
}

.social-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

/* APPS */
.footer-apps {
    height: 100%;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-text {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge img {
    height: 45px;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.app-badge:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.qr-footer {
    display: inline-block;
    background: white;
    padding: 8px;
    border-radius: 8px;
    margin-top: 10px;
}

.qr-caption {
    color: #888;
    font-size: 0.7rem;
    margin-top: 5px;
    text-align: center;
}

/* CONTACT */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info p,
.contact-info a {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

/* FOOTER BOTTOM */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.copyright {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(201,162,77,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d4b04a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(201,162,77,0.4);
}

.arrow-up {
    display: block;
    transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-up {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .newsletter-card {
        padding: 30px 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .newsletter-icon {
        font-size: 2.5rem;
    }
    
    .newsletter-card h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .dish-info {
        padding-left: 0;
    }
    
    .maps-container {
        height: 300px;
    }
    
    .app-badges {
        max-width: 100%;
    }
}
