/* ========================================
   VARIABLES COULEURS - FLEURS VAGABONDES
   ======================================== */

:root {
  /* Couleurs principales du thème */
  --color-primary: #92cfc0;      /* Vert menthe principal */
  --color-primary-light: #a8d9cc; /* Vert menthe clair */
  --color-primary-dark: #7bb8a8;  /* Vert menthe foncé */
  --color-secondary: #eef2e7;    /* Vert très clair */
  --color-accent: #525945;       /* Vert foncé */
  
  /* Palette de verts */
  --color-green-light: #99a18f;  /* Vert clair */
  --color-green-medium: #a4ab97; /* Vert moyen */
  --color-green-dark: #626a5d;   /* Vert sombre */
  --color-green-muted: #b2bba5;  /* Vert atténué */
  --color-green-olive: #6c6c5d;  /* Vert olive */
  --color-green-sage: #c0c7b8;   /* Vert sauge */
  --color-green-sage-dark: #73944d;   /* Vert sauge foncé */
  --color-green-forest: #6c7253; /* Vert forêt */
  
  /* Nuances de gris (noir/blanc) */
  --color-black: #1a1a1a;        /* Noir profond */
  --color-dark: #2d2d2d;         /* Gris très foncé */
  --color-gray-dark: #404040;    /* Gris foncé */
  --color-gray: #666666;         /* Gris moyen */
  --color-gray-light: #c7c4c4;   /* Gris clair */
  --color-light: #e6e6e6;        /* Gris très clair */
  --color-white: #ffffff;        /* Blanc pur */
  --color-off-white: #fafafa;    /* Blanc cassé */
  
  /* Couleurs sémantiques */
  --color-success: #4a7c59;      /* Vert succès */
  --color-warning: #d4a574;      /* Orange attention */
  --color-error: #c44569;        /* Rouge erreur */
  --color-info: #5d8aa8;         /* Bleu info */
  
  /* Couleurs de fond */
  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-off-white);
  --bg-accent: var(--color-secondary);
  --bg-gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
  --bg-gradient-subtle: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
  
  /* Couleurs de texte */
  --text-primary: var(--color-black);
  --text-secondary: var(--color-gray-dark);
  --text-muted: var(--color-gray);
  --text-light: var(--color-white);
  
  /* Couleurs de bordure */
  --border-light: var(--color-light);
  --border-medium: var(--color-gray-light);
  --border-dark: var(--color-gray);
}

/* ========================================
   STYLES GLOBAUX
   ======================================== */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-gradient-subtle);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Style global pour tous les liens */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}


a:focus {
  outline: none;
}

/* ========================================
   UTILITAIRES DE COULEURS
   ======================================== */

.bg-primary { background-color: var(--color-primary); }
.bg-primary-light { background-color: var(--color-primary-light); }
.bg-primary-dark { background-color: var(--color-primary-dark); }
.bg-gradient-primary { background: var(--bg-gradient-primary); }
.bg-gradient-subtle { background: var(--bg-gradient-subtle); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-green-light { background-color: var(--color-green-light); }
.bg-green-medium { background-color: var(--color-green-medium); }
.bg-green-dark { background-color: var(--color-green-dark); }
.bg-green-muted { background-color: var(--color-green-muted); }
.bg-green-olive { background-color: var(--color-green-olive); }
.bg-green-sage { background-color: var(--color-green-sage); }
.bg-green-forest { background-color: var(--color-green-forest); }

.text-primary { color: var(--color-primary); }
.text-primary-light { color: var(--color-primary-light); }
.text-primary-dark { color: var(--color-primary-dark); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-green-light { color: var(--color-green-light); }
.text-green-medium { color: var(--color-green-medium); }
.text-green-dark { color: var(--color-green-dark); }
.text-green-muted { color: var(--color-green-muted); }
.text-green-olive { color: var(--color-green-olive); }
.text-green-sage { color: var(--color-green-sage); }
.text-green-forest { color: var(--color-green-forest); }
.text-white { color: var(--color-white); }
.text-light-white { color: var(--color-light); }
.text-black { color: var(--color-black); }

.border-primary { border-color: var(--color-primary); }
.border-primary-light { border-color: var(--color-primary-light); }
.border-primary-dark { border-color: var(--color-primary-dark); }
.border-secondary { border-color: var(--color-secondary); }
.border-accent { border-color: var(--color-accent); }
.border-light { border-color: var(--border-light); }
.border-medium { border-color: var(--border-medium); }
.border-dark { border-color: var(--border-dark); }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

/* Styles communs pour header et footer */
.header-container,
.footer-container {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
}

.footer-container .icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-container .icon-with-text {
  color: var(--color-off-white);
}

.footer-container .icon-with-text img.icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.header-container {
  justify-content: flex-end;
  background-color: var(--color-green-sage-dark);
  position: relative;
}

.header-brand h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-off-white);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.header-links {
  display: flex;
  gap: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-links a {
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.header-links a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}

.header-links a.active {
  opacity: 1;
  text-decoration: underline;
}

.header-language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

.language-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.language-flag:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.language-flag.active {
  opacity: 1;
  background-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(146, 207, 192, 0.4);
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: contain;
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-container {
  justify-content: space-between;
  background-color: var(--color-black);
  min-height: 60px;
  margin-top: auto;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--color-off-white);
}

/* .contact-info partage display: flex et align-items: center avec .icon-with-text et .legal-links mais gap et color sont différents */

/* Styles communs pour les éléments flex avec icônes et liens */
.icon-with-text,
.legal-links {
  display: flex;
  align-items: center;
  color: var(--color-off-white);
  font-weight: 600;
  text-decoration: none;
}

.icon-with-text {
  gap: 0.7rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.icon-with-text img {
  opacity: 0.5;
  width: 16px;
  height: 16px;
}

.icon-with-text p {
  margin: 0;
  white-space: nowrap;
}

.legal-links {
  font-size: 0.9rem;
  gap: 1.3rem;
}

.legal-links:hover {
  cursor: pointer;
}

.discrete-link {
  color: var(--color-off-white);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.discrete-link:hover {
  opacity: 1;
  color: var(--color-green-light);
}

.separator {
  color: var(--color-off-white);
  opacity: 0.6;
}

/* ========================================
   PAGE D'ACCUEIL
   ======================================== */

.home-container {
  min-height: 100vh;
  background-color: var(--color-off-white);
  padding: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('/static/images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 0 1rem;
  position: relative;
  z-index: 1;
  min-height: 40vh;
  margin: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

/* Styles communs pour les titres du site */
.site-title,
.site-title-mobile {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  color: var(--color-off-white);
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.10);
  margin: 0 0 1rem 0;
}

.site-title-mobile {
  font-size: 2.5rem;
}

.site-title {
  display: none;
}

.site-title span,
.site-title-mobile span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.site-subtitle {
  font-size: 1.2rem;
  color: var(--color-light);
  margin: 0 0 2rem 0;
  font-weight: 400;
  line-height: 1.4;
}

.tagline {
  max-width: 37.5rem;
  margin: 0 auto;
}

.tagline p {
  font-size: 1rem;
  color: var(--color-off-white);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Styles communs pour tous les boutons */
.contact-button,
.view-all-button,
.about-button {
  border: none;
  color: var(--color-off-white);
  padding: 1rem 2rem;
  border-radius: 0.3125rem;
  margin-top: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-button {
  background-color: var(--color-off-white);
  color: var(--color-black);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.contact-button:hover {
  background-color: var(--color-accent);
  color: var(--color-off-white);
}

.home-section {
  padding: 2rem 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Styles communs pour les sections */
.infos-section,
.gallery-section {
  padding: 2rem 1rem;
  width: 100%;
  margin: 0 auto;
}

.infos-section {
  background-color: var(--color-off-white);
  margin: 2rem auto;
}

.infos-content {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--color-green-dark);
  gap: 2rem;
}

.infos-section-content {
  min-width: 0;
  flex: 1 1 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Styles communs pour les titres et textes de la section infos */
.infos-title,
.infos-text-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--color-green-dark);
}

.infos-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.infos-text-content {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  white-space: normal;
}

.infos-content .icon-with-text {
  color: var(--color-green-dark);
  flex-wrap: wrap;
  min-width: 0;
}

.infos-content .icon-with-text p {
  color: var(--color-green-dark);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

.gallery-section {
  background-color: var(--color-green-sage-dark);
  color: var(--color-off-white);
}

/* Styles communs pour les titres et descriptions */
.gallery-title,
.about-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.gallery-description,
.about-text {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.view-all-button {
  background-color: var(--color-off-white);
  color: var(--color-green-dark);
  font-size: 1rem;
}

.view-all-button:hover {
  background-color: var(--color-green-dark);
  color: var(--color-off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 20vh);
  gap: 1rem;
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Styles communs pour les images */
.gallery-item img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}


.gallery-item-1 { grid-area: 1 / 1 / 2 / 2; }
.gallery-item-2 { grid-area: 2 / 1 / 3 / 2; }
.gallery-item-3 { grid-area: 1 / 2 / 3 / 3; }
.gallery-item-4 { grid-area: 1 / 3 / 2 / 4; }
.gallery-item-5 { grid-area: 2 / 3 / 3 / 4; }

.about-section {
  background-color: var(--color-off-white);
  padding: 2rem 1rem;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 30%;
}

/* Styles déjà définis avec .gallery-item img */

.about-text-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

/* Styles déjà définis avec .gallery-title et .gallery-description */

.about-button {
  background-color: var(--color-accent);
  color: var(--color-off-white);
  font-size: 0.9rem;
}

.about-button:hover {
  background-color: var(--color-off-white);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* ========================================
   PAGE GALERIE (nouvelle)
   ======================================== */

.gallery-page {
  min-height: 100vh;
  background-color: var(--color-off-white);
  padding: 2rem 1rem;
}

.gallery-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Styles communs pour les grands titres de page */
.gallery-page-title,
/* Styles communs pour les grands titres de page */
.gallery-page-title,
.about-main-title {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.gallery-page-title {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-main-title {
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-page-description {
  font-size: 1.2rem;
  color: var(--color-green-dark);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.gallery-back-link {
  margin-bottom: 2rem;
}

.gallery-back-button {
  display: inline-flex;
  align-items: center;
  color: var(--color-green-dark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.gallery-back-button:hover {
  color: var(--color-accent);
}

.gallery-group-section {
  margin-bottom: 4rem;
}

.gallery-group-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-green-sage-dark);
}

.gallery-group-cover {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-group-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-group-title {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 0;
}

/* Liste des groupes */
.gallery-groups-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.gallery-group-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-group-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-group-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-group-card:hover .gallery-group-card-image img {
  transform: scale(1.1);
}

.gallery-group-card-content {
  padding: 1.5rem;
}

.gallery-group-card-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem 0;
}

.gallery-group-card-count {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-page-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--color-white);
  cursor: pointer;
}

.gallery-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-page-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

.gallery-page-item-caption {
  padding: 1rem;
  background: var(--color-white);
}

/* Vue détaillée de l'image */
.gallery-detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
  box-sizing: border-box;
}

.gallery-detail-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-detail-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
  align-items: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.gallery-detail-overlay.active .gallery-detail-content {
  transform: scale(1);
}

.gallery-detail-image-container {
  flex: 1;
  max-width: 60%;
}

.gallery-detail-image-container img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-detail-info {
  flex: 1;
  max-width: 40%;
  color: var(--color-off-white);
}

.gallery-detail-info h3 {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: var(--color-off-white);
}

.gallery-detail-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Édition inline pour les images de galerie */
.gallery-detail-info .cms-editable-gallery {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  padding: 5px;
  margin: -5px;
  border-radius: 4px;
}

.gallery-detail-info .cms-editable-gallery:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.gallery-detail-info .cms-editable-gallery.editing {
  padding: 0;
  margin: 0;
}

.gallery-detail-info .cms-editable-gallery.editing textarea {
  width: 100%;
  min-height: 60px;
  padding: 10px;
  font-size: inherit;
  font-family: inherit;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-green-dark);
  resize: vertical;
}

.gallery-detail-info .cms-editable-gallery.editing textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(146, 207, 192, 0.3);
}

.gallery-detail-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-off-white);
  font-size: 3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 10000;
  line-height: 1;
  padding: 0;
}

.gallery-detail-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Styles communs pour les paragraphes de description */
.gallery-page-item-caption p,
.about-section-description p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-page-item-caption p {
  color: var(--color-green-dark);
  font-size: 0.9rem;
}

.about-section-description p {
  font-weight: 400;
}

/* Styles spécifiques pour les articles (sans uppercase) */
.article-content {
  text-transform: none !important;
  letter-spacing: normal;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--color-green-dark);
}

.article-content p {
  margin-bottom: 1.5rem;
  text-transform: none !important;
  letter-spacing: normal;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: none !important;
  letter-spacing: normal;
}

.article-content h2 {
  font-size: 2rem;
}

.article-content h3 {
  font-size: 1.5rem;
}

.article-content h4 {
  font-size: 1.25rem;
}

.article-content strong,
.article-content b {
  font-weight: 700;
  color: var(--color-green-dark);
}

.article-content em,
.article-content i {
  font-style: italic;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--color-green-dark);
}

/* Styles pour la liste des articles */
.article-list-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-list-item h2 a {
  color: var(--color-green-dark);
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: normal;
}

.article-list-item h2 a:hover {
  color: var(--color-accent);
}

.article-meta {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: none !important;
  letter-spacing: normal;
}

.article-excerpt {
  color: var(--color-green-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-transform: none !important;
  letter-spacing: normal;
}

.article-featured-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.article-list {
  max-width: 900px;
  margin: 0 auto;
}

.article-title {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 0 0 0.5rem 0;
  text-transform: none !important;
  letter-spacing: normal;
}

/* Styles pour les blocs d'images dans les articles */
.article-image-block {
  margin: 2.5rem 0;
}

.article-image-block-vertical {
  display: flex;
  flex-direction: column;
}

.article-image-block-left,
.article-image-block-right {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2.5rem 0;
}

.article-image-block-right {
  flex-direction: row-reverse;
}

.article-image-block-image {
  flex-shrink: 0;
}

.article-image-block-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-image-block-left .article-image-block-image,
.article-image-block-right .article-image-block-image {
  width: 40%;
  max-width: 400px;
}

.article-image-block-content {
  flex: 1;
}

.article-image-block-text {
  margin-bottom: 1rem;
}

.article-image-block-text p {
  margin-bottom: 1rem;
}

.article-image-block-caption {
  font-style: italic;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* ========================================
   PAGE ABOUT
   ======================================== */

.about-container {
  min-height: calc(100vh - 120px);
  flex: 1;
  background: var(--color-secondary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
}

.about-header {
  background: var(--color-accent);
  color: var(--text-light);
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 100px 100px;
  animation: float 20s ease-in-out infinite;
}

/* Styles communs pour les conteneurs de contenu about */
.about-header-content,
.about-sections,
.about-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-header-content {
  position: relative;
  z-index: 2;
}

/* Styles déjà définis avec .gallery-page-title */

.about-subtitle {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-top: 0.5rem;
  font-style: italic;
}

.about-content {
  padding: 4rem 2rem;
  background: var(--color-secondary);
}

.about-section {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-section:nth-child(1) { animation-delay: 0.1s; }
.about-section:nth-child(2) { animation-delay: 0.2s; }
.about-section:nth-child(3) { animation-delay: 0.3s; }
.about-section:nth-child(4) { animation-delay: 0.4s; }
.about-section:nth-child(5) { animation-delay: 0.5s; }

.about-section-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section-content {
  padding: 3rem;
  background: var(--bg-primary);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(146, 207, 192, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}

.about-section-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gray);
}

.about-section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-section-divider {
  width: 80px;
  height: 3px;
  background: var(--color-gray);
  border-radius: 2px;
  margin: 1rem auto 0;
}

.about-section-description {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
}

/* .about-section-description p déjà défini plus haut */

.about-footer {
  background: var(--color-secondary);
  padding: 4rem 2rem;
  text-align: center;
}

.about-footer-content {
  position: relative;
}

.about-footer-text {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-footer-text p {
  margin: 0;
}

/* ========================================
   PAGE CONTACT
   ======================================== */

/* Contact container utilise maintenant about-container pour le même background */
.contact-content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content-wrapper .contact-image {
  width: 50%;
  flex-shrink: 0;
}

.contact-content-wrapper .contact-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-content-wrapper .infos-section {
  flex: 1;
  min-width: 0;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

.contact-content-wrapper .infos-section h1 {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 0 0 1rem 0;
  text-transform: none !important;
  letter-spacing: normal;
}

.contact-content-wrapper .contact-text p {
  text-transform: none !important;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.contact-text p {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(146, 207, 192, 0.2);
  transition: all 0.3s ease;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }

  .contact-button {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
  }

  .site-title {
    display: block;
    font-size: 6.5rem;
  }

  .site-title-mobile {
    display: none;
  }

  .site-subtitle {
    font-size: 1.4rem;
  }

  .tagline p {
    font-size: 1.1rem;
  }
}

@media (min-width: 1400px) {
  .site-title {
    font-size: 8.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .header-brand h1 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-green-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .header-links.active {
    right: 0;
  }
  
  .header-language-switcher {
    margin-left: 0.5rem;
    gap: 0.25rem;
  }
  
  .language-flag {
    width: 30px;
    height: 30px;
  }
  
  .flag-icon {
    width: 18px;
    height: 12px;
  }

  .header-links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
  }

  .header-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .header-links a.active {
    background-color: rgba(255, 255, 255, 0.25);
  }
  
  .header-language-switcher {
    margin-left: 1rem;
    gap: 0.3rem;
  }
  
  .language-flag {
    width: 35px;
    height: 35px;
  }
  
  .flag-icon {
    width: 20px;
    height: 13px;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .icon-with-text {
    justify-content: center;
    font-size: 0.85rem;
  }

  .icon-with-text p {
    white-space: normal;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    font-size: 0.85rem;
    gap: 1rem;
  }

  .infos-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .infos-section-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2rem;
  }

  .infos-content .icon-with-text {
    width: 100%;
    flex-wrap: wrap;
  }

  .infos-content .icon-with-text p {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-image {
    display: none;
  }

  .about-text-container {
    width: 100%;
    padding: 0 0.2rem;
  }

  .about-main-title {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .about-section {
    margin-bottom: 3rem;
  }

  .about-section-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .about-section-title {
    font-size: 1.8rem;
  }

  .about-section-description {
    font-size: 1rem;
  }
  
  .article-list-item {
    padding: 1.5rem;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-content h3 {
    font-size: 1.25rem;
  }
  
  .article-image-block-left,
  .article-image-block-right {
    flex-direction: column;
    gap: 1rem;
  }
  
  .article-image-block-left .article-image-block-image,
  .article-image-block-right .article-image-block-image {
    width: 100%;
    max-width: 100%;
  }

  .about-footer {
    padding: 2rem 1rem;
  }

  .about-footer-text {
    font-size: 1rem;
  }

  .contact-content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-content-wrapper .contact-image {
    width: 100%;
  }
  
  .contact-content-wrapper .infos-section h1 {
    font-size: 2rem;
  }

  .gallery-group-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-groups-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-detail-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .gallery-detail-image-container {
    max-width: 100%;
  }
  
  .gallery-detail-info {
    max-width: 100%;
  }
  
  .gallery-detail-info h3 {
    font-size: 2rem;
  }

  .gallery-page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.75rem;
  }

  .header-brand h1 {
    font-size: 1rem;
  }

  .header-links {
    width: 100%;
    right: -100%;
  }

  .header-links.active {
    right: 0;
  }

  .footer-container {
    padding: 1rem 0.75rem;
    gap: 1.5rem;
  }

  .contact-info {
    gap: 0.75rem;
  }

  .icon-with-text {
    font-size: 0.8rem;
    gap: 0.5rem;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .icon-with-text img {
    width: 14px;
    height: 14px;
  }

  .legal-links {
    font-size: 0.8rem;
    gap: 0.5rem;
    flex-direction: column;
  }

  .separator {
    display: none;
  }

  .about-main-title {
    font-size: 2rem;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .about-section-description {
    font-size: 0.95rem;
  }

  .gallery-page-title {
    font-size: 2rem;
  }

  .gallery-group-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-groups-list {
    grid-template-columns: 1fr;
  }
  
  .gallery-group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .gallery-group-title {
    font-size: 2rem;
  }
  
  .gallery-group-card-title {
    font-size: 1.5rem;
  }
  
  .gallery-detail-overlay {
    padding: 1rem;
  }
  
  .gallery-detail-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }
  
  .gallery-detail-info h3 {
    font-size: 1.5rem;
  }
}

