/* Variables */
:root {
  /* Palette de couleurs moderne */
  --primary-color: #f27059; /* Orange-rouge chaleureux */
  --secondary-color: #2b2d42; /* Bleu-noir profond */
  --accent-color: #ffd166; /* Jaune doré */
  --text-color: #2b2d42; /* Bleu foncé pour le texte principal */
  --text-light: #6c757d; /* Gris pour texte secondaire */
  --light-color: #f8f9fa; /* Blanc cassé */
  --light-accent: #f5f5f5; /* Gris très clair */
  --dark-color: #1a1b26; /* Presque noir */
  
  /* Typographie */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Effets */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  
  /* Arrondis */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Espacement */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.7;
  background-color: #fff;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typographie améliorée */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-color);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Header Moderne */
header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 45px;
  margin-right: 1rem;
  transition: var(--transition);
}

.logo h1 {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 700;
  color: #5D3A1A; /* Beau marron riche */
  text-transform: none;
  letter-spacing: -0.2px;
  margin-right: 30px;
  position: relative;
}

/* Style du logo en marron uni */
.logo h1 a {
  color: #5D3A1A !important; /* S'assurer que la couleur s'applique au lien */
  -webkit-text-fill-color: #5D3A1A; /* Pour remplacer l'ancienne propriété */
  position: relative;
  display: inline-block;
  padding: 0 5px;
  transition: transform 0.3s ease;
}

.logo h1 a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B5A2B, transparent); /* Marron plus clair pour contraste */
  transform: scaleX(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.logo h1 a:hover {
  transform: translateY(-2px);
}

.logo h1 a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
  z-index: 1001;
  transition: var(--transition);
}

.nav-toggle:hover {
  color: var(--primary-color);
}

/* Navigation Moderne */
nav {
  transition: var(--transition);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  bottom: 0;
  left: 0;
  transition: width 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
  transform-origin: left;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
  font-weight: 700;
}

/* Hero Section Moderne */
.hero {
  height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  margin-top: 0; /* Enlever la marge car nous utiliserons padding */
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Hauteur du header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  animation: fadeInUp 1s ease-out forwards;
}

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

.hero h1 {
  font-family: var(--font-primary);
  font-size: 4.2rem;
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Bouton Moderne */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(242, 112, 89, 0.4);
  font-size: 1rem;
  text-transform: uppercase;
}

.btn::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.5s;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
  left: 100%;
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Sections Modernes */
.features {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.features.alternate-bg {
  background-color: #fff;
}

/* Décoration de fond subtile */
.features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 112, 89, 0.05) 0%, rgba(242, 112, 89, 0) 70%);
  z-index: 0;
}

.features::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 45, 66, 0.05) 0%, rgba(43, 45, 66, 0) 70%);
  z-index: 0;
}

/* Titre de section élégant */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  bottom: -10px;
  left: 50%;
  transform: translateX(-180%);
  border-radius: 2px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  bottom: -10px;
  left: 50%;
  transform: translateX(80%);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  margin-top: var(--spacing-sm);
}

/* Grille de fonctionnalités moderne */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Carte de fonctionnalité élégante */
.feature-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.feature-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover .feature-img::after {
  opacity: 1;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-img img {
  transform: scale(1.05);
}

.feature-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-content h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}

.feature-content h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.feature-content p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
  line-height: 1.7;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-top: auto;
  padding-top: var(--spacing-sm);
  position: relative;
  overflow: hidden;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* Bloc de contenu élégant */
.content-block {
  margin: 0 auto;
  max-width: 1100px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.content-block p {
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
  color: var(--text-light);
}

.featured-image {
  margin: var(--spacing-lg) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.featured-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.featured-image:hover::before {
  opacity: 1;
}

.featured-image img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-image:hover img {
  transform: scale(1.03);
}

/* Grille de valeurs moderne */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  margin: 0 auto;
  max-width: 1300px;
}

.value-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.8rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(242, 112, 89, 0.1), rgba(242, 112, 89, 0.05));
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: rotateY(180deg);
  color: var(--secondary-color);
}

.value-content h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
}

.value-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Mise en page à deux colonnes */
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: var(--spacing-lg);
  align-items: start;
}

.column h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 12px;
}

.column h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.column img {
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.column img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.margin-top {
  margin-top: var(--spacing-md);
}

/* Grille de cuisines */
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: var(--spacing-lg);
}

.cuisine-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.cuisine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  transition: height 0.4s ease;
}

.cuisine-card:hover::before {
  height: 100%;
}

.cuisine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cuisine-card h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary-color);
  transition: var(--transition);
}

.cuisine-card:hover h3 {
  transform: translateX(8px);
  color: var(--primary-color);
}

.cuisine-card p {
  color: var(--text-light);
  line-height: 1.7;
  transition: var(--transition);
}

.cuisine-card:hover p {
  transform: translateX(8px);
}

.read-more:hover i {
  transform: translateX(5px);
}



/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.contact-info h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.social-links {
  display: flex;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-form h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-col p {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article Page */
.article {
  padding: 80px 0;
  margin-top: 90px;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-header h1 {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-size: 0.9rem;
}

.article-meta span {
  margin: 0 10px;
}

.article-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.article-featured-img {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 40px 0 20px;
}

.article-content h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.article-content ul, .article-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
  font-style: italic;
}

.article-content img {
  border-radius: 5px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.article-tags span {
  margin-right: 10px;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: #f1f1f1;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.article-share {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.article-share span {
  margin-right: 15px;
  font-weight: 600;
}

.share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f1f1f1;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.share-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Legal Page */
.legal {
  padding: 80px 0;
  margin-top: 90px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.legal-content h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 40px 0 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 0;
  }
  
  .logo h1 {
    font-size: 2rem;
    margin-right: 0;
    color: #5D3A1A; /* Assurer que la couleur marron est conservée sur mobile */
  }
  
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero {
    height: 70vh;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .content-block p {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  .value-card {
    padding: 20px 15px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .column h3, .cuisine-card h3 {
    font-size: 1.5rem;
  }
  
  .article-header h1 {
    font-size: 2.2rem;
  }
}
