/* ==========================
   BASE
========================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

p {
  margin: 10px 0px;
}

.copy {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}
/* ==========================
   NAVBAR
========================== */
.top-nav {
  width: 100%;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: none;
}

.top-nav .nav-inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 1.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  font-size: 20px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.nav-links a {
  padding: 1.3rem 0.8rem;
  border-radius: 6px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.08);
}

/* Dropdown menu styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  margin-top: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav-links .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links .dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.nav-links .dropdown-content a:hover {
  background: rgba(255,255,255,0.15);
}

.nav-links .dropdown-content a:first-child {
  border-radius: 6px 6px 0 0;
}

.nav-links .dropdown-content a:last-child {
  border-radius: 0 0 6px 6px;
}

.nav-links .dropdown > a::after {
  font-size: 0.7em;
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  margin-left: auto;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

.hamburger svg {
  display: block;
  color: #fff; /* currentColor in SVG rects will pick this */
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.hamburger:hover svg { transform: scale(1.06); }

.hamburger svg rect {
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: center;
}

.hamburger.open svg rect:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.open svg rect:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open svg rect:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* hide brand text when menu opens for a cleaner animation */
.top-nav.menu-open .nav-brand {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-brand {
  transition: opacity 180ms ease, transform 180ms ease;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================
   HEADER / HERO
========================== */
header {
  background: #4a90e2;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-icon {
  width: 160px;
  height: 160px;
}

.hero-header {
  position: relative;
  min-height: 340px;
  background: url('../assets/general/20260418_113230.jpg') center/cover no-repeat;
  background-attachment: fixed; /* fixe l'image lors du scroll sur desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home .hero-header { height: 600px; }


.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 60, 90, 0.45);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fade-in-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
  font-size: 2.8rem;
  letter-spacing: 2px;
}

.hero-header p {
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

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

/* ==========================
   MAIN LAYOUT
========================== */
.main-container {
  max-width: 1100px; /* plus grand que 80vw pour les cartes */
  margin: 0 auto;
  padding: 2rem 1rem;
  justify-content: center;
}

.centered-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.centered-section img {
  width: 400px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  object-fit: cover;
  flex-shrink: 0;
}

/* ==========================
   ROOMS / CARDS
========================== */
#room-list h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.room-card-container {
  display: flex;
  flex-wrap: wrap;          /* passe à la ligne si trop de cartes */
  gap: 2rem;
  justify-content: center;  /* centre les cartes horizontalement */
  width: 100%;
}

.room-card {
  flex: 1 1 320px;          /* cartes flexibles : min-width 320px */
  max-width: 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s;
  display: block;           /* Si .room-card est un lien, assurer l'affichage en bloc */
}

.room-card:hover {
  transform: translateY(-4px) scale(1.03);
}

.room-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.room-card .image-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.room-card .image-front,
.room-card .image-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.room-card .image-back {
  opacity: 0;
}

/* Galerie simple pour les pages de chambre */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem 0;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.room-card .info {
  padding: 1rem;
}

.room-card .info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.room-card .info p {
  margin-bottom: 1rem;
  color: #666;
}

/* ==========================
   Chambres / Activités
========================== */

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.text {
  width: 60%;
  line-height: 1.4em;
}

.img img {
  width: 100%;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.reverse {
  flex-direction: row-reverse;
}

/* ==========================
   ÉQUIPEMENTS / AMENITIES
========================== */
.amenities-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
}

.amenities-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.8rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.amenity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo-container {
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-container img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.amenity-item span {
  font-weight: 500;
  color: #333;
}

/* ==========================
   ACTIVITIES CARDS
========================== */
.activity-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.activity-card {
  flex: 1 1 320px;
  max-width: 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
  display: block;
}

.activity-card:hover { transform: translateY(-4px) scale(1.02); }

.activity-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.activity-card .info { padding: 0.9rem; }

.activity-card .info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

.activity-card .info p { color: #666; font-size: 0.95rem; }

/* ==========================
   BUTTONS
========================== */
.reserve-btn {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.reserve-btn:hover {
  background: #357abd;
}

/* ==========================
   GÎTE BUTTON
========================== */
.gite-container {
  position: relative;
}

.gite-button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.gite-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #91a9b9;
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  width: 190px;
  height: 45px;
  font-size: 15px;
  text-decoration: none;
}

.gite-btn:hover {
  filter: brightness(0.7);
  transition: 0.2s;
}

/* ==========================
   GALERIE
========================== */
.gallery-section {
  margin: 3rem 0;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.gallery-img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ==========================
   LIGHTBOX
========================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 85%;
  }
  
  .lightbox-close {
    font-size: 30px;
    right: 20px;
    top: 15px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    padding: 12px 16px;
    font-size: 20px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* ==========================
   CONTACT PAGE
========================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

/* Section informations de contact */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
  background: #34495e;
  color: white;
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.contact-text p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.contact-text a {
  color: #4a90e2;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Section formulaire */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #4a90e2;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
}

#form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

#form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

#form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Animation de loading */
.spinning {
  animation: spin 1s linear infinite;
}

 @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.submit-btn.loading { 
  position: relative; 
  color: transparent !important;
  pointer-events: none;
}

.submit-btn.loading::after { 
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px; 
  height: 18px; 
  border: 2px solid #fff; 
  border-top-color: transparent; 
  border-radius: 50%; 
  transform: translate(-50%, -50%); 
  animation: spin 0.7s linear infinite; 
}

/* Styles améliorés pour les messages de statut */
.form-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  animation: slideIn 0.3s ease-out;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-status svg {
  flex-shrink: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bouton désactivé */
.submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.submit-btn:disabled:hover {
  background: #6c757d;
  transform: none;
}

/* Responsive pour contact */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
  }
}

/* ==========================
   FOOTER
========================== */
footer {
  text-align: center;
  margin-top: auto;
  padding: 1rem 0;
}

/* ==========================
   SECTION DIVIDER
========================== */
.section-divider {
  width: 100%;
  height: 2px;
  margin: 2rem 0;
  background: linear-gradient(to right, transparent, #bbb 20%, #bbb 80%, transparent);
  opacity: 0.7;
  border-radius: 1px;
}

/* ==========================
   MEDIA QUERIES
========================== */
@media (max-width: 1170px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    flex-direction: column;
    width: 240px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transform-origin: top right;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a { padding: 0.8rem 0.6rem; }

  /* Affichage direct des chambres sans dropdown */
  .nav-links .dropdown > a::after {
    display: none;
  }

  .nav-links .dropdown-content {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    margin-left: 1.5rem;
    transform: translateY(0);
    transition: none;
    overflow: visible;
    pointer-events: inherit;
  }

  .nav-links .dropdown-content a {
    padding: 0.6rem 0.6rem;
    font-size: 0.9em;
    opacity: 0.9;
  }

  .hero-header {
    background-attachment: scroll;
  }

  .fade-in-title {
    margin: 0 2rem;
  }

  .centered-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .centered-section img {
    display: block;
    margin: 0 0 1rem 0;
    width: 100%;
    max-width: 320px;
  }

  /* Chambres / activités en colonnes sur mobile */
  .room-card-container {
    flex-direction: column;
    align-items: center;
  }

  .room-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }

  .activity-card-container {
    flex-direction: column;
    align-items: center;
  }
  .activity-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Sections alternantes des pages chambres */
  .row {
    flex-direction: column !important;
    text-align: center;
  }

  .text {
    width: 100%;
    margin-bottom: 1rem;
  }

  .img {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .img img {
    max-width: 100%;
    width: auto;
  }
}

/* ==========================
   POPUP ANNOUNCEMENT
========================== */
.announcement-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.announcement-popup.hidden {
    display: none;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #333;
}

.popup-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #4a90e2;
}

.popup-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.popup-message {
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.popup-date {
    color: #4a90e2;
    font-weight: bold;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .popup-content {
        padding: 20px;
        margin: 20px;
    }
    
    .popup-title {
        font-size: 20px;
    }
}

/* ==========================
   INFORMATIONS PRATIQUES
========================== */
.practical-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    stroke: white;
}

.info-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.info-content {
    padding: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border-left: 4px solid #3498db;
    padding-left: 1rem;
}

.info-item p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-item li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.info-item li strong {
    color: #2c3e50;
    font-weight: 600;
}


.info-item em {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .info-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-header h2 {
        font-size: 1.2rem;
    }
    
    .info-content {
        padding: 1rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .practical-info {
        padding: 0 0.5rem;
    }
}

/* ==========================
   STYLES COMPLÉMENTAIRES MAP
========================== */

.navigation-buttons {
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nav-btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.waze-btn {
    background: #2c3e50;
    color: white;
}

.waze-btn:hover {
    background:#3b546b;
    transform: translateY(-2px);
}

.maps-btn {
    background: #2c3e50;
    color: white;
}

.maps-btn:hover {
    background:#3b546b;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .navigation-buttons {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   GALERIE DÉFILANTE
========================== */
.scrolling-gallery {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #f8f9fa;
    border-top: 2px solid #e1e5e9;
    border-bottom: 2px solid #e1e5e9;
    opacity: 0;
    transition: opacity 0.5s ease;
    white-space: nowrap;
}

.scrolling-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: max-content;
    min-width: fit-content;
    will-change: transform;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
}

.scrolling-track img {
    width: 300px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    flex-grow: 0;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-right: 2px solid #fff;
    display: block;
    float: none;
}

.scrolling-track img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    z-index: 10;
    position: relative;
}

@media (max-width: 768px) {
    .scrolling-gallery {
        height: 120px;
    }
    
    .scrolling-track {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .scrolling-track img {
        width: 200px;
        height: 120px;
        flex-shrink: 0;
        flex-grow: 0;
    }
}

