/* Variables */
:root {
    /* Couleurs */
    --primary: #D92A2A;  /* Nouveau rouge vif */
    --primary-light: #FF6B6B;
    --gold: #C4A484;
    --gold-light: #E8D9C5;
    --gold: #c2a878;
    --dark: #1E1E1E;
    --light: #F5F0E6;
    --white: #FFFFFF;
    --gray: #6D6D6D;
    --gray-light: #E5E5E5;
    --gray: #555;
    --red: #c70015;
    --dark-red: #8a0000;
    
    /* Typographie */
    --font-title: 'Cinzel', serif;
    --font-subtitle: 'Playfair Display', serif;
    --font-text: 'Lora', serif;
    
    /* Effets */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-text);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Boutons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.btn-reserve {
   background: #D92A2A;         /* ou background-color: #D92A2A; */
   background-image: none;
   animation: none;
}

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.6);
    color: var(--dark);
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-reserve:hover::before {
    left: 100%;
}

.btn-menu {
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    position: relative;
}

.btn-menu:hover {
    color: var(--white);
    border-color: var(--primary-light);
}

.filter-btn {
    position: relative;
    z-index: 1;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
}

.filter-btn:hover::after, 
.filter-btn.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: rgba(217, 42, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 1rem 5%;
    background: rgba(122, 0, 25, 0.95);
}

.logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-text);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    padding: 0.5rem 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger .line {
    width: 30px;
    height: 2px;
    background: var(--white);
    margin: 6px;
    transition: var(--transition);
}

/* HERO SECTION COMPLÈTEMENT REFONDUE POUR LE CENTRAGE */

 .hero {
     position: relative;
     height: 100vh;
     min-height: 700px;
     display: flex;
     align-items: center;
     justify-content: center;
     /* Conteneur plein écran, centré verticalement et horizontalement */
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100vh;
     min-height: 700px;
     color: var(--white);
     overflow: hidden;
     background: linear-gradient(
         135deg, 
         var(--primary) 0%, 
         #8B0000 25%, 
         var(--dark) 50%, 
         #2C0000 75%, 
         var(--primary) 100%
     );
     background-size: 400% 400%;
     animation: gradientShift 8s ease infinite;
   /* Assurer un padding-top pour éviter le chevauchement avec la nav */
    padding-top: 0;
 }

/* Éléments décoratifs flottants */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(196, 164, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(196, 164, 132, 0.06) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Particules décoratives CSS */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(196,164,132,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(196,164,132,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Contenu hero parfaitement centré avec espacements fixes */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20vh 0; /* Ajustement vertical */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    /* <- assure le centrage vertical local */
    gap: 2rem;                   /* <- espace régulier entre les éléments */
}


/* Badge en haut avec marge fixe */
.hero-label {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(196, 164, 132, 0.3);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 2.5rem; /* Espacement fixe */
    display: inline-block;
}

/* Titre principal avec marge contrôlée */
.giant-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(196, 164, 132, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.title-line {
    display: inline-block;
    white-space: nowrap;
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .giant-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        line-height: 1.2;
    }
}

/* Conservez vos styles existants pour ::before et ::after */
.giant-title::before, 
.giant-title::after {
    content: '✧';
    position: absolute;
    color: var(--gold);
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite alternate;
    top: 50%;
    transform: translateY(-50%);
}

.giant-title::before {
    left: -2rem;
    animation-delay: 0s;
}

.giant-title::after {
    right: -2rem;
    animation-delay: 1s;
}

@keyframes twinkle {
    0% { opacity: 0.5; transform: translateY(-50%) scale(0.8); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* Sous-titre avec espacement contrôlé */
.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    position: relative;
    padding: 0 3rem;
    margin-bottom: 1rem; /* Espacement fixe */
    display: block;
    width: 100%;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-subtitle::before { left: 0; }
.hero-subtitle::after  { right: 0; }

/* Description avec espacement */
.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem; /* Espacement fixe */
    display: block;
    width: 100%;
}


/* Boutons parfaitement centrés */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 4rem; /* Espacement avant l'indicateur de scroll */
}

.btn-reserve, .btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-reserve {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
}

.btn-menu {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reserve:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(217, 42, 42, 0.4);
}

.btn-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Indicateur de scroll repositionné */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator p {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.scroller {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Suppression de toutes les animations problématiques */
.hero-label,
.giant-title,
.hero-subtitle,
.hero-description,
.hero-stats,
.hero-buttons,
.scroll-indicator {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Sections communes */


.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-subtitle);
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: italic;
}

/* Section Premium */
.description-section {
    padding: 7rem 0 8rem;
    background: var(--white);
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(194,168,120,0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(194,168,120,0.03) 0%, transparent 20%);
}

.gold-band {
    height: 8px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    margin-bottom: 4rem;
}

.premium-card {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/textures/parchment.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

/* Encadrements */
.arch-divider {
    width: 60px;
    opacity: 0.8;
}

.arch-divider img {
    width: 100%;
    height: auto;
}

.decorated-quote {
    position: relative;
    padding: 0 3rem;
    margin-bottom: 3rem;
}

.basil-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('assets/icons/basil-leaf.svg') center/contain no-repeat;
    opacity: 0.7;
}

.basil-icon.left {
    left: 0;
    top: 0;
}

.basil-icon.right {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.gold-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2.5rem auto;
    width: 80%;
}

/* Colonnes */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-block {
    text-align: left;
    padding-right: 2rem;
}

.illustration-block {
    border-left: 1px solid rgba(194,168,120,0.3);
    padding-left: 2rem;
}

.roman-illustration {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Accents de couleur */
.gold-highlight {
    color: var(--gold-dark);
    font-weight: 600;
}

.red-highlight {
    color: var(--dark-red);
    font-weight: 500;
}

.section-title {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.section-title::before,
.section-title::after {
    content: "•";
    color: var(--gold);
    margin: 0 0.5rem;
    font-size: 1.5rem;
    vertical-align: middle;
}

/* Animation subtile */
.description-section {
    transition: all 0.5s ease;
}

.description-section:hover .italian-motif {
    transform: rotate(5deg);
    opacity: 0.25;
}

/* Ambiance Section */
.ambiance-section {
    padding: 6rem 0;
    background: var(--light);
}

.ambiance-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ambiance-item.reverse {
    flex-direction: row-reverse;
}

.ambiance-img {
    flex: 1;
}

.ambiance-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.ambiance-item:hover .ambiance-img img {
    transform: scale(1.05);
}

.ambiance-content {
    flex: 1;
    padding: 3rem;
}

.ambiance-content h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.ambiance-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.ambiance-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ambiance-details {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.detail-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.detail-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Nouveau design du menu */
/* Bannière Fait Maison */


.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

#btn-full-menu {
  /* Structure */
  display: inline-block; /* Meilleur pour le centrage qu'un block */
  margin: 2rem auto; /* Haut/bas | gauche/droite auto */
  
  /* Style */
  background-color: #c70015;
  color: #ffffff;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  min-width: 220px;
  
  /* Forme */
  border: none;
  border-radius: 50px;
  cursor: pointer;
  
  /* Texte */
  text-align: center;
  text-decoration: none;
  
  /* Animation */
  transition: transform 0.3s ease;
  
  /* Important pour le centrage parfait */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#btn-full-menu:hover {
  transform: translateX(-50%) translateY(-2px); /* Modifié pour conserver le centrage */
}

.decoration-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 1.5rem;
}

.decoration-icon {
    width: 40px;
    opacity: 0.7;
}

/* Filtres améliorés */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold-light);
    color: var(--gold);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(196, 164, 132, 0.3);
    transform: translateY(-2px);
}

/* Cartes de menu */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(196, 164, 132, 0.2);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 164, 132, 0.4);
}

.card-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.2rem;
}

.card-items {
    padding: 1.5rem;
    list-style: none;
}

.card-items li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--gold-light);
}

.card-items li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.item-name h4 {
    font-family: var(--font-subtitle);
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-light);
    margin: 0 0.8rem;
    transform: translateY(-3px);
}

.item-price {
    font-family: var(--font-title);
    color: var(--gold);
    font-weight: 700;
}

.item-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.menu-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    font-style: italic;
    color: var(--gray);
}

.menu-note i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Fournisseurs */
.suppliers-section {
    padding: 6rem 0;
    background: var(--light);
}

.suppliers-grid {
    display: grid;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.supplier-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.supplier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.supplier-img {
    height: 200px;
    overflow: hidden;
}

.supplier-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.supplier-card:hover .supplier-img img {
    transform: scale(1.1);
}

.supplier-info {
    padding: 1.5rem;
}

.supplier-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.supplier-location {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.supplier-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.supplier-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.supplier-since {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Section Avis */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(196, 164, 132, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(196, 164, 132, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
    margin-right: 1.2rem;
}

.client-info h4 {
    margin: 0 0 0.3rem 0;
    font-family: var(--font-text);
    color: var(--dark);
}

.client-rating {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(196, 164, 132, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-date {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 0.85rem;
    gap: 0.5rem;
}

.testimonial-date i {
    color: var(--gold);
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-testimonials:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(122, 0, 25, 0.2);
}

/* Chef Section */
.chef-section {
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat fixed;
    position: relative;
}

.chef-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 0, 25, 0.85);
}

.chef-content {
    position: relative;
    z-index: 2;
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chef-image {
    flex: 1;
    position: relative;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-experience {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1.5rem;
}

.exp-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-years {
    display: block;
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.exp-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chef-text {
    flex: 1;
    padding: 3rem;
}

.chef-text h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.chef-text h3 {
    font-family: var(--font-text);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.chef-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

blockquote {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    color: var(--dark);
    font-style: italic;
    padding: 2rem;
    border-left: 3px solid var(--gold);
    margin: 2rem 0;
    position: relative;
    background: var(--light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(196, 164, 132, 0.2);
    position: absolute;
    left: 1rem;
    top: -1rem;
    line-height: 1;
}

cite {
    display: block;
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--gray);
    font-style: normal;
    margin-top: 1rem;
    text-align: right;
}

.chef-signature {
    margin-top: 2rem;
}

.chef-signature img {
    height: 60px;
}

/* Galerie améliorée */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img,
.thumb img {
  display: block;           /* supprime l’espacement inline par défaut */
  width: 100%;              /* remplit tout en largeur */
  height: 100%;             /* remplit tout en hauteur */
  object-fit: cover;        /* recadre et remplit le conteneur */
  object-position: center;  /* centre l’image dans son cadre */
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Reservation Section */
.reservation-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

/* Zen Chef Integration */
.zenchef-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.btn-zenchef {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #2a5f8a, #3a7cb1);
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 1.5rem 0;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-zenchef:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 95, 138, 0.3);
    background: linear-gradient(135deg, #3a7cb1, #2a5f8a);
    color: var(--white) !important;
}

.zenchef-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.zenchef-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.95rem;
    background: var(--light);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
}

.feature i {
    color: var(--gold);
}

.reservation-note {
    text-align: center;
    color: var(--gray);
    margin-top: 2rem;
    font-size: 0.95rem;
}

.reservation-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.reservation-note i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Bouton flottant */
.floating-reservation {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none; /* Caché par défaut */
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(122, 0, 25, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.floating-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 0, 25, 0.4);
    color: var(--white) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .zenchef-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-reservation {
        display: block; /* Visible seulement sur mobile */
    }
    
    .btn-zenchef {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-info p {
    color: var(--gold-light);
    margin-bottom: 3rem;
    max-width: 500px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-text);
}

.info-item p {
    color: var(--white);
    margin-bottom: 0;
}

.social-links h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-text);
}

.links {
    display: flex;
    gap: 1.5rem;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.links a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-map {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;   /* donne le ratio */
  position: relative;
  width: 100%;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-logo p {
    color: var(--gold-light);
    font-style: italic;
}

.footer-hours h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-text);
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-hours li {
    display: flex;
}

.footer-hours span {
    min-width: 120px;
    color: var(--gold-light);
}

.footer-newsletter h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-text);
}

.footer-newsletter p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--font-text);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Responsive */
@media (max-width: 1200px) {
    .chef-content {
        flex-direction: column;
    }
    
    .chef-image img {
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-logo, .footer-hours, .footer-newsletter {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.8s ease-out;
    }
    
    .nav-links.active {
        clip-path: circle(1500px at 90% -10%);
    }
    
    .burger {
        display: block;
    }
    
    .burger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 7px);
    }
    
    .burger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .ambiance-item, .ambiance-item.reverse {
        flex-direction: column;
    }
    
    .ambiance-img img {
        height: 300px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo, .footer-hours, .footer-newsletter {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 2rem 1.5rem;
    }
}
@media (max-width: 768px) {
  /* transforme les deux colonnes en une seule */
  .two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* décale un peu le bloc image sous le texte */
  .illustration-block {
    padding-left: 0; 
    border-left: none;
  }

  /* s’assure que l’image prenne toute la largeur */
  .roman-illustration {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Forcer l’espacement sous le sous-titre */
.hero-subtitle {
  display: block !important;
  margin-bottom: 4rem !important; /* Augmenté de 3rem à 4rem pour plus d'espace */
}

/* Forcer l’écart au-dessus du titre principal */
.giant-title {
  display: block !important;
  margin-top: 2rem !important; /* Augmenté de 1.5rem à 2rem pour plus d'espace */
}

/* Masquer tous les supplier-card sauf le premier */
.suppliers-grid .supplier-card:not(:first-child) {
  display: none !important;
}





