:root {
  --primary: #4E5B28;
  --primary-dark: #3a4420;
  --secondary: #EFEBDD;
  --accent: #4E5B28;
  --success: #4E5B28;
  --danger: #2D2D2D;
  --dark: #2D2D2D;
  --light: #EFEBDD;
  --gradient-primary: linear-gradient(135deg, #4E5B28 0%, #3a4420 100%);
  --gradient-secondary: linear-gradient(135deg, #EFEBDD 0%, #d9d5c3 100%);
  --gradient-accent: linear-gradient(135deg, #4E5B28 0%, #3a4420 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*Palette de couleurs
#EFEBDD
#4E5B28
#2D2D2D

POLICE
Titres - Impact
Sous-titres - Afacad Bold
Contenus - Afacad regular
*/

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #EFEBDD;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 70px;
  box-sizing: border-box;
}

.navbar {
  background-color: #4E5B28 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(45, 45, 45, 0.98) !important;
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  height: 100px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  max-height: 300px; 
  width: auto;
}

.navbar-nav {
  align-items: center;
}

@media (max-width: 992px) {
  .navbar {
    height: 120px; 
    padding: 0 1rem;
    flex-direction: column;
    justify-content: center;
  }

  .navbar-brand img {
    max-height: 80px;
  }

  .navbar-nav {
    margin-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 100px;
  }

  .navbar-brand img {
    max-height: 60px;
  }
}


.brand-icon {
  font-size: 1.8rem;
  margin-right: 0.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  font-family: 'Anton';
  text-transform: uppercase;
  font-size: 1.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.hero-section {
  position: relative;
  min-height:80vh;
  display: flex;
  align-items: center;
  background-color: #2D2D2D;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(239,235,221,0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, #EFEBDD, transparent),
    radial-gradient(2px 2px at 60% 70%, #EFEBDD, transparent),
    radial-gradient(1px 1px at 50% 50%, #EFEBDD, transparent),
    radial-gradient(1px 1px at 80% 10%, #EFEBDD, transparent);
  background-size: 200% 200%, 150% 150%, 250% 250%, 180% 180%;
  animation: particles 20s linear infinite;
  opacity: 0.4;
}

@keyframes particles {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  100% { background-position: 100% 100%, -100% -100%, 100% -100%, -100% 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  background: rgba(239,235,221,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239,235,221,0.3);
  color: #EFEBDD;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #EFEBDD;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  font-family: 'Anton';
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #EFEBDD 0%, #d9d5c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(239,235,221,0.95);
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-family: 'Afacad';
}

.search-container {
  max-width: 1000px;
  margin: 0 auto;
}

.search-box {
  background: rgba(239,235,221,0.98);
  backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 12px;
  display: flex;         /* ligne horizontale */
  flex-wrap: nowrap;     /* pas de retour à la ligne */
  align-items: center;   /* centre verticalement */
  gap: 12px;             /* espace entre éléments */
  transition: var(--transition);
}

.search-box:hover {
  transform: translateY(-2px);
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.input-icon {
  font-size: 1.3rem;
  color: #4E5B28;
  filter: grayscale(0);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  padding: 12px 0;
  color: #2D2D2D;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #4E5B28, transparent);
}

.radius-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radius-wrapper input {
  width: 70px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn-search {
  background: var(--gradient-primary);
  color: #EFEBDD;
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(78, 91, 40, 0.4);
  font-family: 'Anton';
  text-transform: uppercase;
}

.py-5{
  background-color: #EFEBDD ;
}

.result-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.result-card h5 {
  color: #2D2D2D;
  font-weight: 700;
  font-family: 'Afacad';
}

.result-card a {
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.result-card a:hover {
  background-color: #4E5B28;
  color: #EFEBDD !important;
}


.hero-mascotte {
    position: absolute;
    bottom: 0;
    right: 150px;
    width: 150px;
    max-width: 20%;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-mascotte {
        width: 100px;
        max-width: 30%;
    }
}


.btn-search:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(78, 91, 40, 0.6);
}

.btn-icon {
  font-size: 1.3rem;
  transition: var(--transition);
}

.btn-search:hover .btn-icon {
  transform: translateX(5px);
}

.search-suggestions {
  margin-top: 20px;
  text-align: center;
}

.suggestion-label {
  color: rgba(239,235,221,0.8);
  font-size: 0.9rem;
  margin-right: 10px;
}

.suggestion-chip {
  display: inline-block;
  background: rgba(239,235,221,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239,235,221,0.2);
  color: #EFEBDD;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.suggestion-chip:hover {
  background: rgba(239,235,221,0.25);
  transform: translateY(-2px);
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(239,235,221,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239,235,221,0.2);
  border-radius: 20px;
  padding: 25px 30px;
  text-align: center;
  min-width: 180px;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(239,235,221,0.15);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #EFEBDD;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(239,235,221,0.9);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  fill: #e9ecef;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #EFEBDD;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2D2D2D;
  margin-bottom: 15px;
  font-family: 'Anton';
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.6rem;
  color: #2D2D2D;
  font-family: 'Afacad';
}

.advantages-section {
  background: #EFEBDD;
  padding: 100px 0;
}

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.advantage-icon.eco {
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.advantage-icon.comfort {
  background: linear-gradient(135deg, #EFEBDD 0%, #d9d5c3 100%);
}

.advantage-icon.speed {
  background: linear-gradient(135deg, #b8c9a0 0%, #9db88a 100%);
}

.advantage-icon.safe {
  background: linear-gradient(135deg, #4E5B28 0%, #3a4420 100%);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.advantage-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.advantage-detail {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin-top: auto;
}

.detail-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.detail-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-section {
  background: #f8f9fa;
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.comparison-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.comparison-chart {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.comparison-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bar-icon {
  font-size: 2rem;
  width: 50px;
  text-align: center;
}

.bar-label {
  width: 100px;
  font-weight: 600;
  color: var(--dark);
}

.bar-fill {
  flex: 1;
  max-width: 600px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.comparison-bar.train .bar-fill {
  background: linear-gradient(90deg, #4E5B28 0%, #3a4420 100%);
}

.comparison-bar.car .bar-fill {
  background: linear-gradient(90deg, #2D2D2D 0%, #1a1a1a 100%);
}

.comparison-bar.plane .bar-fill {
  background: linear-gradient(90deg, #5a6b32 0%, #4E5B28 100%);
}

.bar-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,235,221,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}

.bar-value {
  font-weight: 700;
  color: #EFEBDD;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.accessibility-section {
  background: linear-gradient(135deg, #EFEBDD 0%, #e0dac8 100%);
  padding: 100px 0;
}

.accessibility-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #EFEBDD;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(78, 91, 40, 0.3);
}

.feature-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.accessibility-stats-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.accessibility-stats-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-progress {
  margin-bottom: 25px;
}

.stat-progress:last-child {
  margin-bottom: 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
}

.progress-value {
  color: var(--primary);
  font-size: 1.2rem;
}

.progress-bar-custom {
  height: 12px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 1s ease-out;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,235,221,0.3), transparent);
  animation: shimmer 2s infinite;
}

.stats-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(78, 91, 40, 0.2) 0%, transparent 50%);
}

.stats-section .section-badge {
  background: rgba(239,235,221,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239,235,221,0.2);
}

.stats-section .section-title {
  color: #EFEBDD;
}

.stats-section .section-subtitle {
  color: rgba(239,235,221,0.8);
}

.stats-card {
  background: rgba(239,235,221,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239,235,221,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}


.stats-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239,235,221,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.stats-card:hover::before {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stats-card:hover {
  background: rgba(239,235,221,0.1);
  transform: translateY(-10px);
  border-color: var(--primary);
}

.stats-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #EFEBDD;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stats-unit {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 5px;
}

.stats-label {
  font-size: 1rem;
  color: rgba(239,235,221,0.8);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modern-footer {
  background-color: #2b2b2b;
  color: #EFEBDD;
  position: relative;
  padding-top: 80px;
  font-family: 'Afacad';
  text-transform: uppercase;
}

.footer-wave {
  position: relative;
  top: 1px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 150px;
  background-color: #EFEBDD;
}

.footer-content {
  padding: 80px 0 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(239,235,221,0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(239,235,221,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #EFEBDD;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #EFEBDD;
}

.footer-links {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: rgba(239,235,221,0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #EFEBDD;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(239,235,221,0.7);
}

.contact-icon {
  font-size: 1.2rem;
  color: #4E5B28;
}

.footer-bottom {
  border-top: 1px solid rgba(239,235,221,0.1);
  padding: 25px 0;
}

.footer-bottom p {
  color: rgba(239,235,221,0.6);
  margin: 0;
}

.footer-link-small {
  color: rgba(239,235,221,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link-small:hover {
  color: #EFEBDD;
}

header {
  background: linear-gradient(135deg, #4E5B28 0%, #3a4420 100%);
  color: #EFEBDD;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1000;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
  font-size: 1.1rem;
  opacity: 0.95;
}


#map {
  height: calc(100vh - 100px);
  width: 100%;
  background-color: #2D2D2D;
}

.leaflet-popup-content-wrapper {
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  min-width: 280px;
  max-width: 320px;
  border: none;
}

.leaflet-popup-content {
  margin: 0;
  width: 100% !important;
}

.leaflet-popup-tip {
  display: none;
}

.popup-header {
  padding: 20px;
  color: #EFEBDD;
  position: relative;
  overflow: hidden;
}

.popup-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239,235,221,0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}

.popup-restaurant .popup-header {
  background: linear-gradient(135deg, #4E5B28 0%, #3a4420 100%);
}

.popup-cafe .popup-header {
  background: linear-gradient(135deg, #5a6b32 0%, #4E5B28 100%);
}

.popup-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.popup-type {
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.popup-body {
  padding: 20px;
  background: white;
}

.popup-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.popup-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.popup-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #EFEBDD 0%, #d9d5c3 100%);
}


/* PAGE ACCESSIBILITE */

.accessibilite{
  background-color: #EFEBDD;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  
}

.txt_accessibilite{
  color: #2D2D2D;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: auto;
  width: 80%;
}

#footer_accessibilite {
  background-color: #2b2b2b ;
  color: #EFEBDD ;
  display: flex ;
  flex-direction: column ;
  justify-content: center ;
  align-items: center ;
  padding: 60px 20px ;
  box-sizing: border-box ;
  width: 100% ;
  height: auto ;
}

#section-title-footer {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: #EFEBDD ;
  margin-bottom: 15px ;
  font-family: 'Anton' ;
  text-transform: uppercase ;
}
.section-subtitle-footer {
  font-size: 1.1rem ;
  color: #EFEBDD ;
  font-family: 'Afacad' ;
  text-align: center ;
  max-width: 1100px ;
}
/* empêcher le débordement du texte du footer */
#footer_accessibilite h1,
#footer_accessibilite p {
  max-width: 1100px ;
  text-align: center ;
  word-break: break-word ;
  overflow-wrap: break-word ;
}

.hero-logo {
  width: 400px;
}


/* forcer la liste à s'afficher en texte normal (pas de scroll) */
#access-list {
  overflow-x: hidden;
  overflow-y: visible;
  max-height: none;
  width: 100%;
  box-sizing: border-box;
}

/* présentation simple pour la liste */
#access-list .list-group {
  background: transparent ;
  border: none ;
  padding: 0 ;
  margin: 0 ;
}
#access-list .list-group-item {
  background: transparent ;
  border: none ;
  padding: 6px 0 ;
  color: #2D2D2D ;
}
#access-list h6 {
  margin-bottom: 6px ;
  font-family: 'Afacad';
  text-transform: uppercase;
  font-size: 1.8rem;
}
#access-list p {
  margin: 0 0 12px 0 ;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* FOOTER - s'assurer qu'il ne recouvre pas le contenu */
.modern-footer,
#footer_accessibilite,
.footer-wave {
  position: relative !important;
  z-index: 50 !important;
}
.section-subtitle-footer {
  font-size: 1.1rem ;
  color: #EFEBDD ;
  font-family: 'Afacad' ;
  text-align: center ;
  max-width: 1100px ;
}

/* -- H1 SPACING -- */
.h-200{
  padding-top: 15%;
  margin-bottom: 10%;
}

.title{
  background-color: #2D2D2D;

}

/* -- DOUGHNUT CHART -- */
.donut1{
  margin: 0 auto;
  margin-top: 5%;
  margin-bottom: 5%;
  width: 40%;

}

/* -- CLASS MARGINS -- */

.margin-100{
  padding: 5%;
}

#frequentationChart {
  background-color: #EFEBDD;
  border-radius: 10px;
  padding: 20px;
}

.bg-black{
  background-color: #2B2B2B !important;
}

.accordion-collapse {
  font-size: 1.2rem;
  }

.text-white{
  color: white;
}

