/* ══════════════════════════════════════════
   MI ARCADA — ULTRA PREMIUM DESIGN
   ═══════════════════════════════════════════ */

:root {
    /* Palette Luxe */
    --c-bg: #faf9f7;
    --c-surface: #ffffff;
    --c-ink: #0a0a0a;
    --c-ink-soft: #6b6b6b;
    --c-gold: #c9a961;
    --c-gold-light: #e0c98a;
    --c-gold-dark: #a88b4a;
    --c-hero-overlay: rgba(10, 10, 10, 0.7);
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    
    /* Rayons */
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 36px;
    
    /* Ombres Premium */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.2);
    
    /* Animations */
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typographie */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── RESET PREMIUM ── */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}

/* ─ HERO PREMIUM ── */
.hero-premium {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: 
        linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(45,45,45,0.75) 100%),
        url('assets/front-restaurant.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl) var(--space-md);
    max-width: 600px;
    animation: fadeInUp 1.2s var(--ease-luxury);
}

.hero__logo-wrapper {
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero__logo {
    max-height: 120px;
    width: 100%;margin:auto;
    object-fit: contain;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gold-light);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(8px);
}

.badge__dot {
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #fff 0%, var(--c-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: var(--space-md) 0;
}

.divider__line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.divider__icon {
    color: var(--c-gold);
    font-size: 1rem;
}

.hero__hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    font-weight: 400;
}

.hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--c-bg), transparent);
}

/* ── NAVIGATION PREMIUM ── */
.nav-premium {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-sm) 0;
    transition: all 0.4s var(--ease-luxury);
}

.nav-premium.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--c-surface);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.nav__track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav__track::-webkit-scrollbar { display: none; }

.nav__item {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-ink-soft);
    background: var(--c-surface);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease-luxury);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-luxury);
}

.nav__item.active::before {
    opacity: 1;
}

.nav__item.active {
    color: #fff;
    border-color: var(--c-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.nav__item:active {
    transform: scale(0.96);
}

.nav__icon {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.nav__text {
    position: relative;
    z-index: 1;
}

/* ── MENU PREMIUM ── */
.menu-premium {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-sm) var(--space-xl);
}

.menu-section {
    margin-bottom: var(--space-xl);
    scroll-margin-top: 100px;
}

/* Section Header */
.section-header-premium {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.section__icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-gold);
}

.section__info {
    flex: 1;
}

.section__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.2;
}

.section__count {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--c-ink-soft);
    margin-top: 0.25rem;
}

.subsection-title-premium {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-gold-dark);
    margin: var(--space-lg) 0 var(--space-sm);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--c-gold);
}

/* Grille Produits */
.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

/* Carte Produit Premium */
.product-card-premium {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-luxury);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.product-card-premium.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d5 100%);
    overflow: hidden;
}

.product-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ebe4 0%, #e5ddd4 100%);
}

.product-card__media--empty::after {
    content: '☕';
    font-size: 3rem;
    opacity: 0.2;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

.product-card-premium:hover .product-card__img {
    transform: scale(1.08);
}

.product-card__price-tag {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: var(--r-sm);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.price__amount {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.price__currency {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.product-card__content {
    padding: var(--space-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card__name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--c-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__unit {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.product-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 169, 97, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card-premium:hover .product-card__glow {
    opacity: 1;
}

/* ── FOOTER PREMIUM ── */
.footer-premium {
    background: var(--c-surface);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    margin-top: var(--space-xl);
}

.footer__content {
    max-width: 400px;
    margin: 0 auto;
}

.footer__logo {
    max-height: 80px;
    width: auto;
    margin: 0 auto var(--space-md);
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--c-gold);
    margin-bottom: var(--space-md);
}

.footer__divider {
    width: 40px;
    height: 2px;
    background: var(--c-gold);
    margin: 0 auto var(--space-md);
}

.footer__copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ── FAB PREMIUM ─ */
.fab-premium {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
    z-index: 200;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s var(--ease-bounce);
}

.fab-premium.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-premium:active {
    transform: scale(0.9);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
    .products-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .hero__logo {
        max-height: 150px;
    }
}

@media (min-width: 1024px) {
    .products-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-premium {
        min-height: 85vh;
    }
}

/* ── DARK MODE ── */
@media (prefers-color-scheme: dark) {
    :root {
        --c-bg: #0f0f0f;
        --c-surface: #1a1a1a;
        --c-ink: #faf9f7;
        --c-ink-soft: #9a9a9a;
    }
    
    .nav-premium {
        background: rgba(15, 15, 15, 0.85);
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav__item {
        background: var(--c-surface);
        color: var(--c-ink-soft);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .product-card__media {
        background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .product-card-premium {
        opacity: 1;
        transform: none;
    }
}
/* ══════════════════════════════════════════
   SECTION INFOS & LOCALISATION
   ═══════════════════════════════════════════ */

.info-section {
    background: var(--c-bg);
    padding: var(--space-xl) var(--space-sm);
    position: relative;
}

.info-section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 900px) {
    .info-section__container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-xl);
    }
}

/* ── HEADER COMMUN ── */
.info-block__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-block__ornament {
    color: var(--c-gold);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.info-block__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold-dark);
}

.info-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.info-block__title-accent {
    color: var(--c-gold);
    font-style: normal;
    font-weight: 700;
}

.info-block__subtitle {
    font-size: 0.9rem;
    color: var(--c-ink-soft);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* ── CARTE HORAIRES (Style sombre premium) ── */
.hours-card {
    background: linear-gradient(145deg, #1f1a15 0%, #2a231c 100%);
    border-radius: var(--r-lg);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 26, 21, 0.25);
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.hours-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.hours-card__icon {
    color: var(--c-gold);
}

.hours-card__label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-gold-light);
    letter-spacing: 0.02em;
}

.hours-card__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-luxury);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    padding-left: 0.5rem;
}

.hours-row__label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-row__emoji {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.hours-row__text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hours-row__time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-gold-light);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ── CARTES LOCALISATION ── */
.location-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.location-card {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--c-surface);
    border-radius: var(--r-md);
    border-left: 3px solid var(--c-gold);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-luxury);
}

.location-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.location-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.location-card__content {
    flex: 1;
    min-width: 0;
}

.location-card__title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-gold-dark);
    margin-bottom: 0.25rem;
}

.location-card__text {
    font-size: 0.88rem;
    color: var(--c-ink);
    line-height: 1.5;
}

.location-card__phone {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-ink);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.location-card__phone:hover {
    color: var(--c-gold-dark);
}

/* ── BOUTON GOOGLE MAPS ── */
.maps-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    border-radius: var(--r-md);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s var(--ease-luxury);
}

.maps-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.maps-button:active {
    transform: translateY(0);
}

/* ── CARTE GOOGLE MAPS ─ */
.map-wrapper {
    max-width: 1200px;
    margin: var(--space-xl) auto 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
}

.map-wrapper__frame {
    position: relative;
    width: 100%;
    height: 380px;
    background: #e8e0d5;
}

.map-wrapper__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: var(--r-lg);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.1);
}

@media (min-width: 768px) {
    .map-wrapper__frame {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .map-wrapper__frame {
        height: 500px;
    }
}

/* ── ANIMATION D'ENTRÉE ── */
.info-block,
.map-wrapper {
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.info-block.visible,
.map-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 900px) {
    .info-block--hours {
        transition-delay: 0s;
    }
    .info-block--location {
        transition-delay: 0.15s;
    }
    .map-wrapper {
        transition-delay: 0.3s;
    }
}