/* ============================================
   LE GOURMET - Styles Landing Page
   ============================================ */

/* ----- FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Mulish', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

/* ----- RESET ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-primary); letter-spacing: 0.5px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ----- PRELOADER ----- */
.preloader {
    position: fixed; inset: 0;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; color: #fff; }
.preloader-logo, .preloader-logo-img {
    width: 100px; height: 100px;
    background: #fff; border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 15px rgba(255,255,255,0.2);
}
.preloader-logo-img { object-fit: contain; padding: 15px; }
.preloader-text {
    font-family: var(--font-primary);
    font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 1rem;
}
.preloader-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255,255,255,0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 25px rgba(255,255,255,0.1); }
}

/* ----- TOP BAR ----- */
.top-bar { background: var(--bg-footer); color: #fff; padding: 0.5rem 0; font-size: 0.85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-info i { color: var(--accent); }
.top-bar-badge {
    background: var(--accent); color: var(--dark, #1a1a2e);
    padding: 0.3rem 1.2rem; border-radius: 30px;
    font-weight: 700; font-size: 0.8rem;
    animation: badgeGlow 2s ease-in-out infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255,186,8,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,186,8,0.6); }
}

/* ----- NAVBAR ----- */
.navbar {
    position: sticky; top: 0; width: 100%;
    background: var(--bg-navbar);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-primary); font-size: 1.6rem;
    color: var(--primary); text-decoration: none; letter-spacing: 1px;
}
.logo-icon, .logo-icon-small {
    width: 45px; height: 45px;
    background: var(--gradient-1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; transform: rotate(-5deg);
    overflow: hidden;
}
.logo-icon img, .logo-icon-small img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.logo-icon-small { width: 40px; height: 40px; font-size: 1.2rem; transform: rotate(-3deg); }
.nav-menu { display: flex; gap: 1.8rem; align-items: center; }
.nav-link {
    color: var(--text-primary); text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2.5px;
    background: var(--gradient-1); border-radius: 2px;
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.cart-btn {
    position: relative; background: none; border: none;
    font-size: 1.3rem; color: var(--text-primary);
    cursor: pointer; transition: color 0.3s; padding: 0.5rem;
}
.cart-btn:hover { color: var(--primary); }
.cart-count {
    position: absolute; top: -2px; right: -5px;
    background: var(--primary); color: #fff;
    font-size: 0.7rem; width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.hamburger { display: none; }
.promo-active-badge {
    background: var(--danger); color: #fff;
    padding: 0.2rem 0.8rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0.5; } }

/* ----- HERO ----- */
.hero {
    background: var(--bg-hero); position: relative; overflow: hidden;
    padding: 3rem 0 5rem; min-height: 85vh; display: flex; align-items: center;
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.05;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 30px 30px;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; color: var(--primary);
    box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}
.hero-badge .dot {
    width: 8px; height: 8px; background: var(--success);
    border-radius: 50%; animation: blink 1.5s infinite;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 450px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.hero-feature { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; font-size: 0.95rem; }
.hero-feature i { color: var(--success); font-size: 1.1rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrapper { display: flex; justify-content: center; align-items: center; }
.hero-image-main {
    width: 100%; max-width: 450px; border-radius: var(--radius-xl);
    animation: heroFloat 6s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.2rem; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: var(--transition); border: none; cursor: pointer;
    font-family: var(--font-secondary); letter-spacing: 0.5px;
}
.btn-primary { background: var(--gradient-1); color: #fff; box-shadow: 0 5px 20px rgba(232,93,4,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,93,4,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* ----- SECTION HEADER ----- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-subtitle {
    display: inline-block; color: var(--primary);
    font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-secondary); max-width: 550px; margin: 0 auto; }

/* ----- CATEGORIES ----- */
.categories-section { padding: 60px 0; background: var(--bg-primary); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
.category-card {
    background: var(--bg-primary); border: 2px solid #f0f0f0; border-radius: var(--radius-lg);
    padding: 2rem 1rem; text-align: center; cursor: pointer;
    transition: var(--transition); color: var(--text-primary); position: relative; overflow: hidden;
}
.category-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-1);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-icon {
    width: 70px; height: 70px; background: #fff5eb; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 2rem;
    transition: transform 0.3s;
}
.category-card:hover .category-icon { transform: scale(1.1) rotate(-10deg); background: var(--gradient-1); color: #fff; }
.category-card h3 { font-size: 1rem; font-family: var(--font-secondary); font-weight: 600; }

/* ----- MENU ----- */
.menu-section { padding: 70px 0; background: var(--bg-secondary); }
.menu-tabs { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
    padding: 0.7rem 1.8rem; background: #fff;
    border: 2px solid #e0e0e0; border-radius: 50px;
    font-weight: 600; cursor: pointer; transition: var(--transition);
    font-family: var(--font-secondary); font-size: 0.9rem; color: var(--text-primary);
}
.tab-btn.active, .tab-btn:hover { background: var(--gradient-1); color: #fff; border-color: transparent; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.menu-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card-badge {
    position: absolute; top: 15px; left: 15px; z-index: 2;
    padding: 0.3rem 1rem; border-radius: 30px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #fff;
}
.badge-bestseller { background: var(--primary); }
.badge-new { background: var(--success); }
.badge-promo { background: var(--danger); }
.menu-card-image { height: 200px; overflow: hidden; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-image img { transform: scale(1.1); }
.menu-card-info { padding: 1.3rem; }
.menu-card-info h3 { font-size: 1.2rem; margin-bottom: 0.3rem; font-family: var(--font-secondary); font-weight: 700; }
.menu-card-desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.4; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.menu-price small { font-size: 0.8rem; color: var(--text-secondary); text-decoration: line-through; margin-right: 0.3rem; font-weight: 400; }
.menu-add-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gradient-1); color: #fff; border: none;
    font-size: 1.2rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.menu-add-btn:hover { transform: scale(1.15); box-shadow: 0 5px 15px rgba(232,93,4,0.3); }

/* ----- PROMO ----- */
.promo-section { background: var(--gradient-2); }
.promo-banner { padding: 2.5rem 0; text-align: center; color: #fff; }
.promo-banner h3 { font-size: 2rem; margin-bottom: 0.3rem; }
.promo-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1rem; }
.promo-code-box {
    display: inline-block; background: rgba(255,255,255,0.2);
    border: 2px dashed #fff; padding: 0.6rem 2.5rem; border-radius: 50px;
    font-size: 1.4rem; font-weight: 700; letter-spacing: 2px;
    font-family: var(--font-primary);
}

/* ----- MAP ----- */
.map-section { padding: 70px 0; background: var(--bg-primary); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--primary); }
.map-wrapper iframe { width: 100%; height: 450px; border: none; display: block; }

/* ----- TESTIMONIALS ----- */
.testimonials-section { padding: 70px 0; background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.testimonial-card {
    background: #fff; padding: 2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.testimonial-quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 0.5rem; }
.testimonial-stars { color: var(--accent); margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient-1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
}
.testimonial-author-info h4 { font-family: var(--font-secondary); font-weight: 700; font-size: 1rem; }
.testimonial-author-info span { font-size: 0.85rem; color: var(--text-secondary); }

/* ----- ADD REVIEW ----- */
.add-review-section { text-align: center; }
.add-review-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 2rem; background: var(--gradient-1); color: #fff;
    border: none; border-radius: 50px; font-weight: 700;
    cursor: pointer; font-size: 1rem; transition: var(--transition);
    font-family: var(--font-secondary);
}
.add-review-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ----- REVIEW MODAL ----- */
.review-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 4000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.review-modal-overlay.open { opacity: 1; visibility: visible; }
.review-modal {
    background: #fff; border-radius: var(--radius-lg); padding: 2rem;
    width: 95%; max-width: 500px; text-align: center;
}
.review-modal h3 { margin-bottom: 1rem; }
.star-rating { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; flex-direction: row-reverse; }
.star-rating input { display: none; }
.star-rating label { font-size: 2rem; color: #ccc; cursor: pointer; transition: color 0.2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--accent); }
.review-modal input, .review-modal textarea {
    width: 100%; padding: 0.8rem 1rem; border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm); font-family: var(--font-secondary);
    font-size: 1rem; margin-bottom: 1rem;
}
.review-modal input:focus, .review-modal textarea:focus { border-color: var(--primary); outline: none; }

/* ----- FOOTER ----- */
.footer { background: var(--bg-footer); color: #fff; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-primary); font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.footer-about p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; transition: var(--transition); font-size: 0.95rem;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer h3 { margin-bottom: 1.2rem; font-size: 1.1rem; color: var(--accent); }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer ul li a:hover { color: #fff; padding-left: 5px; }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-contact-item i { color: var(--primary); width: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }

/* ----- TOAST ----- */
.toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-primary); color: #fff;
    padding: 1rem 2rem; border-radius: 50px;
    font-weight: 600; z-index: 5000;
    transition: transform 0.3s; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 0.5rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* ----- RESPONSIVE ----- */
@media (max-width: 968px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-image-wrapper { order: -1; }
    .hero-image-main { max-width: 320px; }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex !important; flex-direction: column; gap: 5px;
        cursor: pointer; background: none; border: none; z-index: 1600;
    }
    .hamburger span { width: 26px; height: 2.5px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
    .nav-menu {
        position: fixed; top: 0; left: -100%; width: 80%; height: 100vh;
        background: var(--bg-navbar); flex-direction: column;
        padding: 5rem 2rem 2rem; transition: left 0.3s;
        z-index: 1500; box-shadow: var(--shadow-lg);
    }
    .nav-menu.open { left: 0; }
    .hero { padding: 2rem 0 3rem; min-height: auto; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .category-card { padding: 1.2rem 0.5rem; }
    .category-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .map-wrapper iframe { height: 300px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .top-bar .container { flex-direction: column; text-align: center; }
    .top-bar-info { flex-direction: column; gap: 0.3rem; }
}

/* =====================================================================
   REDESIGN LAYER — "Premium Dining" (Le Gourmet)
   Or + charcoal + bordeaux. Cinzel + Mulish. Hero sombre, raffiné.
   ===================================================================== */
:root{
  --r-radius: 8px; --r-radius-sm: 6px;
  --r-shadow-sm: 0 12px 34px -22px rgba(20,20,15,.55);
  --r-shadow: 0 34px 70px -32px rgba(20,20,15,.5);
  --r-line: #ece4d3; --r-gold:#c2a14e; --r-gold-d:#a07f33; --r-char:#1b1a17;
  --r-grad: linear-gradient(135deg,#c2a14e 0%,#e0c781 100%);
}
body{ background:#fff; color:var(--text-primary); font-family:var(--font-secondary); }
h1,h2,h3,.hero-title,.section-header h2{ font-family:var(--font-primary); font-weight:600; letter-spacing:1px; }
.logo{ font-family:var(--font-primary); font-weight:700; text-transform:uppercase; letter-spacing:3px; }

/* Buttons */
.btn{ border-radius:4px; font-family:var(--font-secondary); text-transform:uppercase; letter-spacing:2px; font-weight:600; font-size:.78rem; padding:1rem 2.1rem; transition:background .25s,color .25s,border-color .25s,transform .25s; }
.btn-primary{ background:var(--r-grad); color:#1b1a17; border:1px solid transparent; box-shadow:0 12px 26px -12px var(--r-gold); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -14px var(--r-gold); color:#1b1a17; }
.btn-outline{ background:transparent; border:1px solid var(--r-gold); color:var(--r-gold-d); }
.btn-outline:hover{ background:var(--r-gold); color:#1b1a17; transform:translateY(-2px); }
.btn-block{ width:100%; justify-content:center; }

/* Top bar / navbar */
.top-bar{ background:#16150f; }
.top-bar-info, .top-bar-info span{ color:#cdbf9d; letter-spacing:.4px; }
.top-bar-badge{ background:transparent; color:var(--r-gold); border:1px solid rgba(194,161,78,.55); border-radius:3px; text-transform:uppercase; letter-spacing:1.5px; font-size:.68rem; font-weight:600; padding:4px 13px; }
.navbar{ border-bottom:1px solid var(--r-line); }
.navbar.scrolled{ background:rgba(255,255,255,.96); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); box-shadow:0 1px 0 var(--r-line); }
.nav-link{ text-transform:uppercase; letter-spacing:1.5px; font-size:.76rem; font-weight:600; }
.nav-link::after{ background:var(--r-grad); height:2px; }
.cart-btn{ background:var(--r-char); color:var(--r-gold); border-radius:4px; }

/* HERO — sombre & doré */
.hero{ position:relative; overflow:hidden; color:#f3ecda;
  background:
    radial-gradient(45% 60% at 85% 8%, rgba(194,161,78,.22), transparent 65%),
    radial-gradient(40% 50% at 5% 95%, rgba(140,47,57,.30), transparent 60%),
    linear-gradient(160deg,#23211b 0%, #1b1a17 55%, #141310 100%); }
.hero-badge{ background:rgba(255,255,255,.05); border:1px solid rgba(194,161,78,.45); color:var(--r-gold); border-radius:3px; text-transform:uppercase; letter-spacing:2.5px; font-size:.66rem; font-weight:600; font-family:var(--font-secondary); }
.hero-badge .dot{ background:var(--r-gold); box-shadow:0 0 0 4px rgba(194,161,78,.2); }
.hero-title{ font-family:var(--font-primary); font-weight:700; line-height:1.08; color:#fbf6ea; font-size:3.6rem; }
.hero-title span{ color:var(--r-gold); font-style:normal; }
.hero-subtitle{ color:rgba(243,236,218,.78); }
.hero-feature{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:3px; padding:9px 16px; text-transform:uppercase; letter-spacing:1px; font-size:.7rem; color:#e8dfc8; box-shadow:none; }
.hero-feature i{ color:var(--r-gold); }
.hero-image-main{ border-radius:8px; box-shadow:var(--r-shadow); border:1px solid rgba(194,161,78,.25); }
.hero-image-wrapper{ position:relative; }
.hero-image-wrapper::after{ content:""; position:absolute; inset:14px; border:1px solid rgba(194,161,78,.35); border-radius:6px; pointer-events:none; }
@keyframes rFadeUp{ from{opacity:0; transform:translateY(22px);} to{opacity:1; transform:translateY(0);} }
.hero-badge,.hero-title,.hero-subtitle,.hero-features,.hero-buttons{ animation:rFadeUp .9s both; }
.hero-title{ animation-delay:.08s; } .hero-subtitle{ animation-delay:.16s; } .hero-features{ animation-delay:.24s; } .hero-buttons{ animation-delay:.32s; }
.hero-image-wrapper{ animation:rFadeUp 1.1s .2s both; }

/* Section headers */
.section-header h2{ font-weight:600; font-size:2.5rem; }
.section-subtitle, .section-header .section-subtitle{ display:inline-block; text-transform:uppercase; letter-spacing:5px; font-size:.68rem; font-weight:600; color:var(--r-gold-d); background:none; padding:0; font-family:var(--font-secondary); }
.section-header h2 span{ color:var(--r-gold-d); font-style:normal; }
.section-header h2::after{ content:"❖"; display:block; font-size:.9rem; color:var(--r-gold); margin:14px auto 0; }

/* Category cards */
.categories-section{ background:#fff; }
.category-card{ border:1px solid var(--r-line); border-radius:8px; background:#fffdf8; box-shadow:none; transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; }
.category-card:hover{ transform:translateY(-6px); box-shadow:var(--r-shadow-sm); border-color:var(--r-gold); }
.category-icon{ width:72px;height:72px;border-radius:50%; display:flex;align-items:center;justify-content:center; background:linear-gradient(135deg,#f6efdd,#efe2c2); font-size:1.8rem; margin:0 auto 1rem; transition:background .3s; }
.category-card:hover .category-icon{ background:var(--r-grad); }
.category-card h3{ font-family:var(--font-secondary); text-transform:uppercase; letter-spacing:1.5px; font-size:.82rem; font-weight:600; }

/* Menu cards */
.menu-section{ background:var(--bg-secondary); }
.tab-btn{ border-radius:3px; border:1px solid var(--r-line); background:#fff; text-transform:uppercase; letter-spacing:1.5px; font-size:.72rem; font-weight:600; transition:all .2s; }
.tab-btn.active, .tab-btn:hover{ background:var(--r-char); color:var(--r-gold); border-color:var(--r-char); box-shadow:none; }
.menu-card{ border:1px solid var(--r-line); border-radius:8px; background:#fff; box-shadow:none; overflow:hidden; transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; }
.menu-card:hover{ transform:translateY(-6px); box-shadow:var(--r-shadow-sm); border-color:var(--r-gold); }
.menu-card-image{ background:#1b1a17; }
.menu-card:hover .menu-card-image img{ transform:scale(1.05); }
.menu-card-info h3{ font-family:var(--font-primary); letter-spacing:.5px; font-size:1.2rem; font-weight:600; }
.menu-card-badge{ border-radius:3px; text-transform:uppercase; letter-spacing:1px; font-size:.6rem; font-weight:700; box-shadow:none; }
.badge-bestseller{ background:var(--r-grad); color:#1b1a17; }
.badge-new{ background:var(--r-char); color:var(--r-gold); }
.badge-promo{ background:var(--accent); color:#fff; }
.menu-price{ color:var(--r-gold-d); font-weight:700; font-family:var(--font-primary); font-size:1.35rem; letter-spacing:.5px; }
.menu-add-btn{ background:var(--r-char); border:none; color:var(--r-gold); width:44px;height:44px;border-radius:4px; box-shadow:none; transition:background .2s,transform .2s; }
.menu-add-btn:hover{ background:var(--r-gold); color:#1b1a17; transform:translateY(-2px); }

/* ===== RÉSERVATION DE TABLE ===== */
.reservation-section{ padding:5rem 0; background:linear-gradient(160deg,#1b1a17,#141310); color:#f3ecda; }
.reservation-section .section-subtitle{ color:var(--r-gold); }
.reservation-section .section-header h2{ color:#fbf6ea; }
.reservation-section .section-header h2 span{ color:var(--r-gold); }
.reservation-section .section-header p{ color:rgba(243,236,218,.7); }
.reservation-layout{ display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; margin-top:2.5rem; align-items:start; }
.tables-title, .reservation-form-title{ font-family:var(--font-primary); color:var(--r-gold); letter-spacing:1px; margin-bottom:1.2rem; font-size:1.2rem; text-transform:uppercase; }
.tables-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.table-card{ background:rgba(255,255,255,.04); border:1px solid rgba(194,161,78,.28); border-radius:8px; padding:1.2rem .8rem; text-align:center; cursor:pointer; transition:all .25s; }
.table-card:hover{ border-color:var(--r-gold); transform:translateY(-4px); background:rgba(194,161,78,.08); }
.table-card.selected{ border-color:var(--r-gold); background:rgba(194,161,78,.16); box-shadow:0 0 0 1px var(--r-gold) inset; }
.table-card-icon{ font-size:1.5rem; color:var(--r-gold); margin-bottom:.5rem; }
.table-card-name{ font-family:var(--font-primary); font-size:1.05rem; color:#fbf6ea; letter-spacing:.5px; }
.table-card-meta{ font-size:.8rem; color:#d8cda8; margin-top:.3rem; }
.table-card-zone{ display:inline-block; margin-top:.5rem; font-size:.66rem; text-transform:uppercase; letter-spacing:1px; color:var(--r-gold); border:1px solid rgba(194,161,78,.4); border-radius:20px; padding:2px 10px; }
.reservation-form-card{ background:rgba(255,255,255,.04); border:1px solid rgba(194,161,78,.28); border-radius:10px; padding:2rem; }
.rform-group{ margin-bottom:1rem; } .rform-group:last-of-type{ margin-bottom:1.4rem; }
.rform-group label{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:1.5px; color:#cdbf9d; margin-bottom:.4rem; }
.rform-group input, .rform-group select{ width:100%; padding:.85rem 1rem; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:5px; color:#fbf6ea; font-family:var(--font-secondary); font-size:.95rem; }
.rform-group input:focus, .rform-group select:focus{ outline:none; border-color:var(--r-gold); box-shadow:0 0 0 3px rgba(194,161,78,.18); }
.rform-group select option{ background:#1b1a17; color:#fbf6ea; }
.rform-row{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:.8rem; }
@media (max-width:768px){ .reservation-layout{ grid-template-columns:1fr; } .tables-grid{ grid-template-columns:repeat(2,1fr); } }

/* Promo / testimonials / map / footer */
.promo-banner{ background:var(--r-char); border:1px solid var(--r-gold); border-radius:8px; box-shadow:var(--r-shadow); }
.promo-banner h3, .promo-banner p{ color:#fbf6ea; }
.promo-code-box{ border:1px dashed var(--r-gold); border-radius:4px; background:transparent; color:var(--r-gold); }
.testimonials-section{ background:#fff; }
.testimonial-card{ border:1px solid var(--r-line); border-radius:8px; background:#fffdf8; box-shadow:none; transition:transform .3s, border-color .3s; }
.testimonial-card:hover{ transform:translateY(-5px); border-color:var(--r-gold); }
.testimonial-quote-icon{ color:var(--r-gold); opacity:.5; }
.testimonial-stars{ color:var(--r-gold); }
.testimonial-text{ font-family:var(--font-primary); font-style:italic; font-size:1.12rem; color:#33302b; }
.testimonial-avatar{ background:var(--r-char); color:var(--r-gold); font-weight:600; }
.testimonial-author h4{ font-family:var(--font-secondary); text-transform:uppercase; letter-spacing:1px; font-size:.82rem; }
.map-wrapper{ border-radius:8px; overflow:hidden; box-shadow:none; border:1px solid var(--r-line); }
.add-review-btn{ border-radius:4px; background:var(--r-char); color:var(--r-gold); border:none; text-transform:uppercase; letter-spacing:1.5px; font-size:.74rem; }
.review-modal{ border-radius:8px; box-shadow:var(--r-shadow); }
.footer{ background:var(--bg-footer); position:relative; }
.footer::before{ content:""; position:absolute; inset:0 0 auto 0; height:2px; background:var(--r-grad); }
.footer-logo{ font-family:var(--font-primary); text-transform:uppercase; letter-spacing:3px; color:var(--r-gold); }
.footer-social a:hover{ background:var(--r-gold); color:#1b1a17; transform:translateY(-3px); }
.footer-contact-item i{ color:var(--r-gold); }
.toast{ border-radius:5px; box-shadow:var(--r-shadow); }
.cart-fab, .floating-cart{ background:var(--r-char) !important; color:var(--r-gold) !important; box-shadow:var(--r-shadow-sm); }
