/* 
    L'Entre Deux - Design System
    Dominant Color: #bb3b17
*/

@font-face {
    font-family: 'South Australia';
    src: url('../assets/fonts/South-Australia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Code Pro';
    src: url('../assets/fonts/Code-Pro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Code Pro LC';
    src: url('../assets/fonts/Code Pro Light LC.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #bb3b17;
    --primary-dark: #9a2f12;
    --primary-light: #d64a25;
    --bg-cream: #141110;
    --bg-dark: #080706;
    --text-main: #f0eae6;
    --text-muted: #a39791;
    --white: #ffffff;
    --card-bg: #1d1917;
    --font-heading: 'South Australia', 'Playfair Display', serif;
    --font-body: 'Code Pro LC', 'Code Pro', 'Outfit', sans-serif;
    --container-width: 1200px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 50px;
    --shadow-soft: 0 12px 40px rgba(0,0,0,0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --topbar-height: 42px;
    --header-height: 72px;
    --header-offset: calc(var(--topbar-height) + var(--header-height));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-main);
    background-color: var(--bg-cream);
    background: #0f0b09;
    position: relative;
    line-height: 1.8;
    letter-spacing: 0.03em;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}


h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Global safety for aspect ratio changes */
}

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

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* === TOPBAR === */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--topbar-height);
    z-index: 1001;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.topbar .container,
header .container {
    max-width: 100%;
    padding: 0 2.5rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.topbar-info,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.topbar-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary);
    fill: none;
    flex-shrink: 0;
}

.topbar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #27ae60;
    box-shadow: 0 0 6px rgba(39,174,96,0.6);
    animation: topbarPulse 2.5s ease-in-out infinite;
}

@keyframes topbarPulse {
    0%, 100% { box-shadow: 0 0 5px currentColor; opacity: 0.8; }
    50% { box-shadow: 0 0 12px currentColor; opacity: 1; }
}

.topbar-dot.green { background: #27ae60; color: #27ae60; }
.topbar-dot.orange { background: #f39c12; color: #f39c12; }
.topbar-dot.red { background: #e74c3c; color: #e74c3c; }

.topbar-social {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.topbar-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    fill: none;
    transition: stroke 0.3s;
}
.topbar-social:hover svg { stroke: var(--primary); }

.topbar-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.32rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}
.topbar-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    position: relative;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 1002;
    padding: 2px 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.lang-current:hover {
    background: rgba(255,255,255,0.1);
}

.lang-current svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s;
}

.lang-switcher:hover .lang-current svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 160px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(187, 59, 23, 0.1);
    color: var(--text-main);
}

.lang-option.active {
    color: var(--primary);
    background: rgba(187, 59, 23, 0.05);
}

.lang-flag {
    font-style: normal;
    font-size: 1.1rem;
}

/* Fix Topbar Overflow */
.topbar-actions {
    gap: 1.2rem;
}

/* === MAIN HEADER === */
header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    background: rgba(12, 10, 9, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: top 0.4s ease, background 0.3s ease;
}

header.scrolled {
    top: 0;
    background: rgba(8, 7, 6, 0.97);
    border-bottom-color: rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 2.5rem;
    min-height: 85px;
    transition: min-height 0.4s ease;
}

header.scrolled .header-inner {
    min-height: 70px;
}

.header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
}

.header-left { 
    flex: 1;
}

.header-center { 
    flex: 2; 
    justify-content: center;
    gap: 2rem;
}

.header-right { 
    flex: 1; 
    justify-content: flex-end;
}

.header-enseigne {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .header-enseigne {
    height: 45px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.header-nav a {
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    color: var(--text-muted);
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--primary);
    background-color: rgba(187, 59, 23, 0.08);
}

/* --- Enriched Google Rating Badge in Header --- */
.header-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.35rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 1.5rem;
    color: var(--text-main);
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.2;
    min-width: 140px;
}

.header-rating:hover {
    background: rgba(187, 59, 23, 0.08);
    border-color: rgba(187, 59, 23, 0.3);
    color: var(--text-main);
    transform: translateY(-1px);
}

.header-rating .rating-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-rating .rating-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.header-rating .score {
    font-weight: 700;
    font-size: 0.95rem;
}

.header-rating .stars {
    color: #f1c40f;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.header-rating .rating-bottom {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    opacity: 0.7;
    white-space: nowrap;
}

.header-rating .comment {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    font-size: 0.72rem;
}

.header-rating .sep {
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .header-rating .comment,
    .header-rating .sep {
        display: none;
    }
}

@media (max-width: 1024px) {
    .header-center {
        display: none;
    }
    .header-rating {
        margin-right: 1rem;
    }
}

@media (max-width: 900px) {
    .header-rating .rating-bottom {
        display: none;
    }
    .header-rating {
        padding: 0.4rem 0.8rem;
        min-width: auto;
    }
}

/* Specific swap for mobile: Hide logo, show rating on the left */
@media (max-width: 600px) {
    .header-left {
        display: none;
    }
    
    .header-right {
        flex: 1;
        justify-content: space-between;
        flex-direction: row;
    }

    .header-rating {
        display: flex !important;
        margin-right: 0;
        background: transparent;
        border: none;
        padding: 0;
        min-width: auto;
        align-items: flex-start;
    }
    
    .header-rating .rating-top {
        justify-content: flex-start;
        gap: 0.6rem;
    }

    .header-rating .rating-bottom {
        display: flex !important;
        gap: 0.4rem;
    }
    
    .header-rating .score {
        font-size: 1.1rem;
    }
    
    .header-rating .stars {
        font-size: 0.8rem;
    }

    .header-rating .count,
    .header-rating .comment,
    .header-rating .sep {
        display: inline !important;
        font-size: 0.75rem;
    }
}

@media (max-width: 450px) {
    .header-rating .sep,
    .header-rating .comment {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-rating {
        display: none;
    }
}

/* =========================================
   Hero Section — Mosaïque plein écran + bulle
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* Voile sombre sur la mosaïque */
.hero-veil {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 1, 0.08);
    z-index: 2;
    pointer-events: none;
}

/* Voile plus marqué pour les héros sans bulle (pages secondaires) */
.hero-veil--dark {
    background: rgba(5, 2, 1, 0.45);
}

/* Overflow caché sur toutes les sections héro pour contenir la mosaïque */
.hero-section,
.cafe-hero,
.cuisine-hero {
    overflow: hidden;
}

/* Swiper insta (hors hero) */
.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    transition: var(--transition);
}
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}
.swiper-pagination { bottom: 30px !important; }
.insta-swiper .swiper-wrapper { transition-timing-function: linear !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-main);
    transform: translateY(-3px);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Grid helper */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-style: italic;
    border: 1px dashed #ccc;
}

.image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 300px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.about-text .leadText {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.link-more:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.value-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(187, 59, 23, 0.08); /* --primary with opacity */
    border-radius: 50%;
    color: var(--primary);
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.02), 0 10px 20px rgba(187, 59, 23, 0.1);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: rgba(187, 59, 23, 0.15);
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: #e5e5e5;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
}

.team-card h4 {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.team-card span {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: stretch;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(187, 59, 23, 0.15);
}

.blog-thumb {
    width: 40%;
    min-width: 300px;
    height: auto;
    background: var(--bg-cream);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card h2, .blog-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Reviews Slider & Badge */
.reviews-swiper {
    padding: 2rem 1rem 4rem;
    overflow: hidden;
    position: relative;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.google-rating-badge .stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin: 0;
}

.google-rating-badge .score {
    font-weight: 700;
    color: var(--white);
}

.review-card {
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-source svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.2;
}

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

/* Specials Section */
.specials {
    background-color: var(--white);
    color: var(--text-main);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-item {
    padding: 2rem;
    background: var(--bg-cream);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.special-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.special-item .price {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-top: 1rem;
    display: block;
}

.link-more {
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
    display: inline-block;
}

/* Menu Section */
.menu-highlights {
    background-color: #f7f3ed;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu-category h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(187, 59, 23, 0.2);
    padding-bottom: 0.5rem;
}

.menu-list li {
    margin-bottom: 2rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.item-header .price {
    color: var(--primary);
}

.menu-list .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item .image-placeholder {
    min-height: 100%;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.contact-form-container h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-info h3 {
    font-size: 3.5rem;
}

.contact-hero-title {
    font-size: 6.5rem;
}

.contact-address {
    font-size: 1.5rem;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-row .form-group {
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

textarea {
    border-radius: var(--radius-md);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(187, 59, 23, 0.1);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer-col h4 {
    font-size: 2.4rem;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 2rem;
}

/* Signature Drinks Grid */
.sig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sig-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sig-card-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.sig-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.25rem;
}

.sig-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(187, 59, 23, 0.35);
    border-radius: var(--radius-pill);
    padding: 0.2rem 0.65rem;
    font-family: var(--font-body);
}

.sig-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}


.sig-ingredients {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sig-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
}

.sig-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.sig-note {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 992px) {
    .sig-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .sig-grid { grid-template-columns: 1fr; }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

.social-links a {
    margin-left: 2rem;
}

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

/* Mobile Adjustments */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Interactive Tabs */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: #eee;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--white);
    background-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Instagram Wall */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(187, 59, 23, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

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

.insta-item .image-placeholder {
    min-height: 100%;
}

@media (max-width: 992px) {
    .topbar { display: none; }

    header { top: 0; }

    .header-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .grid-2, .menu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

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

    .contact-hero-title {
        font-size: 4rem;
    }

    .contact-info h3 {
        font-size: 2.5rem;
    }

    .footer-col h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tabs-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ticker-wrap {
        margin-top: 70px;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-address {
        font-size: 1.2rem;
    }

    .contact-form-container h3 {
        font-size: 2rem;
    }

    .footer-col h4 {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2.4rem;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

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

    .footer-col h4 {
        font-size: 1.3rem;
    }
}

/* Base animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }
    .blog-thumb {
        width: 100%;
        min-width: 0;
        height: 250px;
    }
    .blog-content {
        padding: 2rem;
    }
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Blog Layout & Widgets */
.blog-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: flex-start;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.widget-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(187, 59, 23, 0.2);
    padding-bottom: 0.5rem;
}

/* Weather Widget */
.weather-widget {
    text-align: center;
}
.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}
.weather-temp {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
}
.weather-icon {
    font-size: 2.5rem;
}
.weather-city {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Calendar Widget */
.calendar-widget table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.calendar-widget th {
    padding: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}
.calendar-widget td {
    padding: 0.5rem;
    text-align: center;
    color: var(--text-muted);
    border-radius: 8px;
}
.calendar-widget td.today {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

/* Search Widget */
.search-widget form {
    display: flex;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
}
.search-widget input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.5rem;
    width: 100%;
}
.search-widget button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Newsletter Widget */
.newsletter-section {
    background: var(--bg-dark);
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187,59,23,0.15) 0%, rgba(26,26,26,0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.newsletter-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.6);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(187,59,23,0.3);
}

.nl-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.nl-status.show {
    opacity: 1;
}
.nl-status.success { color: #6fcf97; }
.nl-status.error { color: #e87a5a; }

@media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-box { padding: 3rem 1.5rem; }
    .newsletter-box h3 { font-size: 2rem; }
}


@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(187,59,23,0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(187, 59, 23, 0.3);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 2.8rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 7, 6, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(187, 59, 23, 0.2);
    padding: 2rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(187, 59, 23, 0.2);
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(187, 59, 23, 0.3);
}

.cookie-refuse {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.cookie-refuse:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

@media (max-width: 900px) {
    .cookie-banner {
        padding: 2.5rem 0;
    }
    .cookie-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
        padding: 1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(20, 18, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    bottom: 30px;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-accept {
    background: var(--primary);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .btn-cookie {
        flex: 1;
    }
}

/* --- Mobile Sticky Action Bar --- */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
    }
    
    /* Offset body padding to avoid content being hidden behind the bar */
    body {
        padding-bottom: 70px;
    }
}

.m-bar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-bar-weather {
    flex: 0 0 auto;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 60px;
}

.m-weather-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.m-bar-info {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.m-info-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 2px;
}

.m-info-status span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.m-date-time {
    font-size: 0.65rem;
    opacity: 0.5;
    font-weight: 500;
}

.m-bar-action {
    flex: 0 0 auto;
}

.m-btn-trajet {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(187, 59, 23, 0.3);
}

.m-btn-trajet:active {
    transform: scale(0.95);
    background: #a33214;
}

.m-btn-trajet svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Color types for status */
.m-status-dot.green { color: #2ecc71; background-color: #2ecc71; }
.m-status-dot.orange { color: #f39c12; background-color: #f39c12; }
.m-status-dot.red { color: #e74c3c; background-color: #e74c3c; }

@media (max-width: 400px) {
    .mobile-action-bar {
        padding: 0 1rem;
    }
    .m-bar-weather {
        font-size: 0.75rem;
        min-width: 50px;
    }
    .m-btn-trajet {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}
