/* Reset de base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff; /* bg-white */
  color: #1a202c; /* text-gray-900 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #292c50;
  backdrop-filter: blur(8px);
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Contenu du header */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
  height: 45px;
}

/* Logo */
.logo-image {
  width: 68px;
  height: auto;
  object-fit: contain;
  margin-left: 50px;
}


/* Navigation desktop */
.nav-desktop {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Liens navigation */
.nav-link {
  color: #374151; /* gray-700 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6; /* bleu au hover */
}

/* Bouton menu mobile */
.mobile-menu-button {
  display: none;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Menu mobile caché par défaut */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

/* Icône du menu mobile */
.icon-menu {
  height: 1.5rem;
  width: 1.5rem;
}

/* Lien menu mobile */
.mobile-menu-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
  background-color: #dbae2a;
}
/* Utilitaire */
.hidden {
  display: none !important;
}

/* Logo responsive sur mobile */
@media (max-width: 767px) {
  .logo-image {
    width: 65px;
    margin-left: 1px;
  }
  .logo-subtitle {
    display: block;
    color: #9ca3af; /* gris clair */
}
.nav-desktop {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: flex;
  }
}


/* Section Hero (accueil)*/
.hero-section {
  background: url('../images/background4.png') no-repeat center top;
  background-size: cover;
  background-color: black;
  width: 100%;
  min-height: 100vh; /* Utilise min-height au lieu de height */
  color: white;
  padding: clamp(2rem, 5vw, 6rem) 1rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Pour éviter d'écraser le contenu */
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-wrapper {
  margin-bottom: clamp(1rem, 4vw, 2rem);
  margin-top: clamp(1rem, 6vh, 4rem);
}

.hero-circle {
  width: clamp(10rem, 25vw, 18rem);
  height: clamp(9rem, 25vw, 16rem);
  border-radius: 50%;
  background: linear-gradient(to bottom, #38bdf8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

.logo-image-rond {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  margin: 1rem 0;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 56rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-primary,
.btn-secondary {
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin: 0.5rem;
  border: 1px solid white;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #292c50;
  color: #dbae2a;
}

.btn-primary:hover {
  background-color: #f3f4f6;
  color: #292c50;
}

.btn-secondary {
  background-color: #dbae2a;
  color: #292c50;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
  color: #292c50;
}

.logo-silhouette {
  margin: clamp(1rem, 3vw, 2rem) 0;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-section {
    justify-content: center; /* centre verticalement */
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  /* Réduction des paddings pour "dézoomer" légèrement */
  .hero-section {
    padding: clamp(1.2rem, 2vw, 2rem) 0.5rem;
  }

  .header-inner {
    padding: 0 0.5rem;
    height: 42px;
  }

  .logo-image {
    width: 60px;
    margin-left: 20px;
  }

  .nav-desktop {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin: 0.2rem 0;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 50rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
  }

  .hero-circle {
    width: clamp(5rem, 20vw, 13rem);
    height: clamp(5rem, 22vw, 12rem);
  }

  .logo-image-rond {
    max-width: 230px;
  }

  .logo-silhouette {
    margin: clamp(0.75rem, 2vw, 1.5rem) 0;
  }
}


/* --- Activities Section --- */

.activities-section {
  background-color: #f9fafb;
  padding: clamp(2rem, 5vw, 6rem) 1rem;
  color: #1a202c;
}

/* Container */
.activities-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Section title */
.section-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  color: #001f3f;
}

/* Activities grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Activity card */
.activity-card {
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* Circle image container */
.activity-image {
  width: clamp(10rem, 30vw, 16rem);
  height: clamp(10rem, 30vw, 16rem);
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid;
}

/* Border colors */
.border-sky-blue {
  border-color: #38bdf8;
}

.border-gold {
  border-color: #dbae2a;
}

.border-night {
  border-color: #292c50;
}

.border-gold-special {
  border-color: #ffd700;
}

/* Gradient backgrounds inside circle */
.activity-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gradient variants */
.from-blue {
  background: linear-gradient(to bottom right, #60a5fa, #2563eb);
}

.from-orange {
  background: linear-gradient(to bottom right, #fb923c, #ea580c);
}

.from-dark {
  background: linear-gradient(to bottom right, #292c50, #1e293b);
}

/* Gold gradient for special occasions */
.from-gold {
  background: linear-gradient(to bottom right, #ffd700, #c59d00);
}

.activity-emoji {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.activity-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Activity title */
.activity-title {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 0.5rem;
}

/* Activity description */
.activity-description {
  color: #4a5568;
  font-size: clamp(0.875rem, 2vw, 1rem);
}


.info-wrapper {
  display: flex;
  flex-direction: column; /* Aligne verticalement */
  align-items: center;    /* Centre horizontalement */
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.time-slot-box {
  max-width: max-content;
  background: #e0e7ff;
  color: #1e40af;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  cursor: default;
  user-select: none;
  transition: background-color 0.3s ease;
}

.time-slot-box:hover {
  background-color: #3b82f6;
  color: white;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.mobile-break {
  display: none;
}

.map-link {
  text-decoration: underline;
  color: inherit; /* pour conserver la même couleur que le texte environnant */
}

.notice-wrapper {
  display: flex;
  gap: 1rem; /* espace entre legal-age et notice-box */
  justify-content: center;
}

.legal-age,
.notice-box {
  background-color: #facc15;
  color: #001f3f;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
  box-shadow: 0 4px 12px rgb(250 204 21 / 0.6);
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .notice-wrapper {
    flex-direction: column; /* passe en colonne sur mobile */
    gap: 0.75rem;           /* espace vertical entre les badges */
    align-items: center;    /* centre horizontalement */
  }

  .legal-age,
  .notice-box {
    display: block;
    width: 100%;            /* prend toute la largeur possible */
    max-width: 300px;       /* limite max largeur */
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.2);
  }

  .mobile-break {
    display: inline;
  }
}

/* Garde tes autres @media déjà existants */
@media (min-width: 1024px) and (max-width: 1440px) {
  .activities-section {
    padding: clamp(1.5rem, 4vw, 5rem) 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: clamp(1.5rem, 5vw, 3.5rem);
  }

  .activities-grid {
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .activity-image {
    width: clamp(8rem, 24vw, 14rem);
    height: clamp(8rem, 24vw, 14rem);
  }

  .activity-title {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
  }

  .activity-description {
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
  }

  .legal-age,
  .time-slot-box {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .notice-box {
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
  }
}


/* --- Section Inclusions --- */
.inclusions-section {
  padding: 5rem 1rem;
  background-color: white;
  color: #1a202c;
}

.inclusions-section .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

/* --- GRID CENTRÉE --- */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* --- TITRE --- */
.inclusions-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

.inclusions-sky {
  color: #38bdf8;
}

/* --- LISTE : 3 ÉLÉMENTS CENTRÉS --- */
.inclusions-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* --- ITEM --- */
.inclusion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

/* --- ICÔNE --- */
.icon {
  border-radius: 9999px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bg-sky {
  background-color: #38bdf8;
}

.text-white {
  color: white;
}

/* --- TEXTE --- */
.inclusion-item > div:last-child {
  text-align: left;
}

.inclusion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #001f3f;
  margin: 0;
  white-space: nowrap;
}

.inclusion-desc {
  margin: 0;
  color: #4a5568;
  font-size: 1rem;
   white-space: nowrap; /* Empêche le retour à la ligne */
}

/* --- MOBILE --- */
@media (max-width: 767px) {
  .inclusions-section {
    padding: 3rem 1rem;
  }

  .inclusions-title {
    font-size: 1.5rem;
  }

  .inclusions-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inclusion-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .inclusion-item > div:last-child {
    text-align: center;
  }

  .inclusion-title {
    font-size: 1rem;
    white-space: normal;
  }

  .inclusion-desc {
    font-size: 0.9375rem;
  }

  .icon {
    padding: 0.5rem;
  }

  .icon-svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* --- TABLET & DESKTOP --- */
@media (min-width: 768px) {
  .inclusions-section {
    padding: 4rem 1rem;
  }

  .inclusions-title {
    font-size: 1.75rem;
  }

  .icon {
    padding: 0.65rem;
  }

  .icon-svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .inclusion-title {
    font-size: 1.0625rem;
  }

  .inclusion-desc {
    font-size: 0.95rem;
  }
}




/* Section Prix */
/* --- Section Prix --- */
.pricing-section {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  background-color: #f9fafb;
  color: #1a202c;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Title & Subtitle */
.pricing-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: #001f3f;
  margin-bottom: 0.5rem;
}
.pricing-subtitle {
  margin-bottom: 3rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #4a5568;
}

/* Table Subtitle */
.table-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #3b82f6;
  margin: 0rem 0 0.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Pricing Table --- */
.pricing-table-wrapper {
  width: 100%;
  margin: 0 auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
  margin: 0 auto 2rem;
}

.pricing-table thead tr {
  background: #3b82f6;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pricing-table tbody tr {
  background: white;
  color: #1a202c;
  transition: background-color 0.3s ease;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f3f4f6;
}

.pricing-table tbody tr:hover {
  background: #e0e7ff;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: none;
}

/* --- Payment Row – Banners --- */
/* Conteneur parent pour centrer les banners */
.payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centre horizontalement */
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Payment & Deposit styles */
.payment-banner,
.deposit-banner {
  background: #e0e7ff;
  color: #1e40af;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* centre le contenu à l'intérieur */
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  cursor: default;
  user-select: none;
  transition: background-color 0.3s ease;
}

.payment-banner:hover,
.deposit-banner:hover {
  background-color: #3b82f6;
  color: white;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.payment-icon,
.deposit-icon {
  font-size: 1.5rem;
}

/* --- Responsive Mobile --- */
@media (max-width: 700px) {
  .pricing-table {
    width: 100%; /* prend toute la largeur écran */
    display: table; /* évite scroll horizontal */
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }

  .pricing-table th,
  .pricing-table td {
    padding: clamp(0.5rem, 2vw, 1rem);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }

  .payment-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .payment-banner,
  .deposit-banner {
    padding: clamp(0.70rem, 2.4vw, 0.85rem);
    font-size: clamp(0.70rem, 2.4vw, 0.85rem);
    gap: 0.5rem;
  }

  .payment-icon,
  .deposit-icon {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}



/* --- Section Réservation --- */
.reservation-section {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  background-color: white;
  color: #1e293b;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.reservation-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.reservation-left,
.reservation-right {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
}

.section-title {
 font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  color: #001f3f;
}

.reservation-text {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* Contact Buttons */
.reservation-contacts {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 1.5rem);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 9999px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 360px;
  justify-content: center;
}

.contact-box .icon {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* Couleurs spécifiques */
.phone-box {
  background-color: #0284c7;
  color: white;
}
.phone-box:hover {
  background-color: #0369a1;
  box-shadow: 0 12px 20px rgba(3, 105, 161, 0.5);
}

.whatsapp-box {
  background-color: #22c55e;
  color: white;
}
.whatsapp-box:hover {
  background-color: #16a34a;
  box-shadow: 0 12px 20px rgba(22, 163, 74, 0.5);
}


/* Réseaux sociaux */
.social-icons {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2rem);
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-name {
  margin-top: 0.75rem;
  color: #0f172a;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-decoration: none;
  user-select: text;
}

.social-name:hover {
  color: #dbae2a;
  text-decoration: none;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  border-radius: 9999px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: white;
  transition: background-color 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.tiktok {
  background-color: #000000;
}
.snapchat {
  background-color: #fffc00;
  color: #000;
}
.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #feda75 0%, 
    #fa7e1e 40%, 
    #d62976 60%, 
    #962fbf 80%, 
    #4f5bd5 100%);
  color: #fff;
}

.social-btn:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .reservation-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}



@media (min-width: 1024px) and (max-width: 1440px) {
  .reservation-section {
    padding: 4rem 1rem;
  }

  .reservation-grid {
    gap: 3rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 3.5rem;
  }

  .reservation-text {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .contact-box {
    padding: 1rem 1.75rem;
    font-size: 1.125rem;
    max-width: 320px;
  }

  .contact-box .icon {
    font-size: 1.35rem;
  }

  .social-icons {
    gap: 2rem;
  }

  .social-name {
    font-size: 1.05rem;
  }

  .social-btn {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}


  /* --- Footer --- */

/* Reset */
footer,
footer * {
  box-sizing: border-box;
}

.footer {
  background-color: #292c50;
  color: white;
  padding: clamp(0.5rem, 1vw, 1rem);
  font-family: system-ui, sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.footer .container {
  max-width: 1750px;
}

/* Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.footer-info {
  justify-self: start;
  text-align: left;
}

.footer-links {
  justify-self: end;
  text-align: right;
}

/* Branding */
.footer-logo {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.footer-text {
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.footer-copy {
  color: #9ca3af;
  font-size: clamp(0.7rem, 1.5vw, 0.75rem);
  margin-top: 0.5rem;
}

/* Liens */
.footer-links h3.footer-title {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #dbae2a;
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;  /* équivalent à bottom-6 */
  right: 1.5rem;   /* équivalent à right-6 */
  background-color: #dbae2a;
  color: white;
  width: 3rem;     /* 12 x 0.25rem = 3rem = 48px */
  height: 3rem;
  border-radius: 9999px; /* full rounded */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
  border: none;
  cursor: pointer;
}

.back-to-top:hover {
  background-color: #c59b22;
}

/* Classe active pour faire apparaître le bouton */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive : empilement et centrage */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-logo {
  text-align: center;
  }
  .footer-text {
  text-align: center;
  margin: 0px 15px 0px 15px;
  }
  .footer-links {
    display: none; /* Masquer section liens rapides sur mobile */
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .footer {
    padding: 0.75rem 3.5rem;
    font-size: 0.8125rem; /* légèrement plus petit mais lisible */
  }

  .footer-grid {
    gap: 4rem;
  }

  .footer-logo {
    font-size: 0.9375rem;
  }

  .footer-text {
    font-size: 0.8125rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  .footer-links h3.footer-title {
    font-size: 0.8125rem;
  }

  .footer-links ul {
    gap: 0.75rem;
  }

  .footer-links ul li a {
    font-size: 0.8125rem;
  }

  .back-to-top {
    width: 2.75rem;
    height: 2.75rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
