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

html {
  scroll-behavior: smooth;
}

body { 
  font-family: 'Inter', sans-serif; 
  background-color: #f9f7f2;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  color: #1a1a1a; 
  line-height: 1.6; 
  padding-top: 50px; 
}

/* Alignement côté*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* --- Header --- */
.main-header {
  background: #ffffff;
  min-height: 80px; 
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0; 
}

.header-hidden {
  transform: translateY(-100%);
}
        
.logo { 
  font-family: 'Playfair Display', serif; 
  font-size: 22px; 
  font-weight: bold; 
  color: #1a1a1a; 
  text-decoration: none; 
  letter-spacing: 2px; 
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #1a1a1a;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #c5a059;
}

.btn-call-header {
  background: #8B0000;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
footer {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #eeeeee;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #888888;
}



/* --- Accueil --- */

/* Hero Section (image + textes) */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('https://images.unsplash.com/photo-1552611052-33e04de081de?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center center; /* Assure que le centre de l'image reste visible */
  background-attachment: scroll; /* Important pour le mobile car 'fixed' bug souvent */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px; /* Évite que le texte touche les bords sur mobile */
}

.hero h1 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-style: italic; 
  font-weight: 400; 
  margin-bottom: 10px; 
}

.hero h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin: 0 0 1rem 0; 
  letter-spacing: 2px; 
  line-height: 1.1;
}

.hero p { 
  font-size: clamp(0.9rem, 3vw, 1.1rem); 
  max-width: 600px; 
  margin: 0 auto 30px auto; 
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #c5a059; 
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 600;
    border: none;
}
.btn-primary:hover { background-color: #b08e48; }

/* Intro  */
.intro {
  padding: 80px 0;
  background-color: #ffffff;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-family: 'Playfair Display',
  serif; font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 15px;
}

.intro-image-container {
  flex: 0 0 40%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

/* Cadre noir */
.reassurance {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

.container-reassurance {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.reassurance-item {
  flex: 1; text-align:
  left; padding: 0 20px;
}

.reassurance-item:first-child {
  padding-left: 0;
}

.reassurance-item:last-child {
  padding-right: 0;
}

.reassure-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #c5a059;
}

.reassure-title {
  font-family: 'Playfair Display',
  serif; font-size: 1.4rem;
  margin-bottom: 15px;
}

.reassure-text {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 300;
}

.divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}

/* Services */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 50px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: 0.3s;
}

.service-card:hover {
  border-color: #c5a059;
  transform: translateY(-5px);
}

.service-card h3 {
  font-family: 'Playfair Display',
  serif; font-size: 1.8rem;
  margin-bottom: 15px;
}

.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  color: #c5a059;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #c5a059;
  padding-bottom: 5px;
}


/* --- Responsive --- */
.checkbtn {
  font-size: 24px;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 858px) {
    .checkbtn {
      display: block;
    }

    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        top: 70px;
        left: -100%;
        flex-direction: column; 
        text-align: center;
        padding-top: 50px;
        transition: 0.5s;
    }

    #check:checked ~ .nav-links {
      left: 0;
    }

    .btn-call-header {
      display: none;
    }

    .intro-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .container-reassurance {
      flex-direction: column;
      gap: 40px;
    }

    .divider {
      display: none;
    }

    .hero h2 {
      font-size: 2.5rem;
    }

    .reassurance-item {
      padding: 0;
      text-align: center;
    }
}



/* --- A Propos --- */

.about-hero {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
    background-image: url('pattern.jpg');
    background-size: cover;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* --- Specialites Cards --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    background: #ffffff;
    padding: 40px;
    border-bottom: 4px solid #c5a059;
    transition: 0.3s;
}

.spec-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #1a1a1a;
}


/* --- Responsive --- */
@media (max-width: 858px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 2.2rem; }
    .btn-call-header { display: none; }
}






/* --- Navigation Secondaire (Sticky) --- */
.sub-nav-carte {
  background: #ffffff;
  position: sticky;
  top: 80px;
  z-index: 999;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-nav-carte ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  padding: 0 20px;
}

.sub-nav-carte a {
  text-decoration: none;
  color: #666;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.sub-nav-carte a:hover {
  color: #8B0000;
}

/* --- Titres --- */
.menu-page-title {
  text-align: center;
  padding: 60px 0 30px;
  font-family: 'Playfair Display',
  serif; font-size: 2.5rem;
}

.category-title {
  font-family: 'Playfair Display',
  serif; font-size: 2rem;
  color: #8B0000;
  text-align: center;
  margin: 40px 0 30px;
  border-bottom: 2px solid #8B0000;
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
}

/* --- SOUS-PARTIES --- */
.sub-category-block {
  margin-bottom: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.sub-category-title {
  font-family: 'Playfair Display',
  serif; font-size: 1.4rem;
  color: #c5a059;
  margin-bottom: 20px;
  border-left: 4px solid #c5a059;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Grille des Plats --- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 5px;
}

.item-name {
  font-weight: 500;
  font-size: 0.95rem;
  flex: 1;
}

.item-price {
  font-weight: 600;
  color: #8B0000;
  margin-left: 10px;
}

.item-description {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  font-weight: 400;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .menu-grid {
      grid-template-columns: 1fr;
    }

    .btn-call-header {
      display: none;
    }

    .sub-nav-carte ul { 
      justify-content: flex-start;
    }
}





/* --- Contact --- */
.contact-section { 
    padding: 60px 0; 
}

.contact-section h1 { 
    text-align: center; 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 50px; 
}

/* Grille Responsive */
.grid-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

/* Cartes */
.card { 
    flex: 1; 
    padding: 40px; 
    border-radius: 2px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.card-red {
  background: #8B0000;
  color: #ffffff;
}

.card-white {
  background: #ffffff;
  border: 1px solid #eeeeee;
}

.card h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.2); 
    padding-bottom: 10px; 
}

.card-white h3 { color: #8B0000; border-bottom-color: #eeeeee; }
.card-red h3 { color: #c5a059; }

address {
  font-style: normal;
}

address p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

address a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

address a:hover {
  color: #c5a059;
}

.hours-detail {
  margin-left: 25px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.greeting-text { 
    margin-top: 20px; 
    font-style: italic; 
    font-weight: 600; 
    color: #8B0000; 
    text-align: center; 
}

/* Map */
.contact-map { 
    border-radius: 2px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    line-height: 0; 
}

/* --- Footer --- */
footer { 
    background: #ffffff; 
    padding: 60px 0 20px; 
    border-top: 1px solid #eeeeee; 
}
.footer-content { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 40px; 
}
.footer-info h3, .footer-links h3 { 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 15px; 
    color: #8B0000; 
}
.footer-links a { 
    display: block; 
    color: #888888; 
    text-decoration: none; 
    margin-bottom: 8px; 
    font-size: 0.9rem; 
}
.footer-bottom { 
    text-align: center; 
    margin-top: 40px; 
    padding-top: 20px; 
    border-top: 1px solid #eeeeee; 
    font-size: 0.8rem; 
    color: #888888; 
}

/* --- Media Queries --- */
.checkbtn {
  font-size: 24px;
  cursor: pointer; display: none; }
#check { display: none; }

@media (max-width: 858px) {
    .checkbtn { display: block; }
    .nav-links {
        position: fixed; width: 100%; height: 100vh; background: #ffffff;
        top: 80px; left: -100%; flex-direction: column; 
        text-align: center; padding-top: 50px; transition: 0.5s;
    }
    #check:checked ~ .nav-links {
      left: 0;
    }

    .btn-call-header {
      display: none;
    }

    .grid-container {
      flex-direction: column;
    }

    .contact-section h1 {
      font-size: 2rem;
    }
    
    .card {
      padding: 30px; }
}









.category-image img {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-image img:hover {
    transform: scale(1.02);
}