/* Styles du menu gooey */
:root {
  --borderRadius: 10px;
  --spacer: 1rem;
  --primary: #406ff3;
  --text: #6a778e;
  --linkHeight: calc(1rem * 3.5);
  --timing: 250ms;
  --transition: 250ms ease all;
}
/* Styles communs */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  background: #eaeef6;
  color: #333;
}

/* Barre de navigation - version simplifiée pour la page info */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  height: 110px;
  min-width: 442px;
  max-width: 80%;
  background: #fff;
  border-radius: 50px;
  padding: 0 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 99, 203, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.navbar__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.navbar__home a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6a778e;
  text-decoration: none;
  font-size: 16px;
  transition: 250ms ease all;
}

.navbar__home a:hover {
  color: #406ff3;
}

.navbar__item {
  text-align: center;
  margin: 0;
}


.navbar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 90px;
  color: var(--text);
  transition: var(--transition);
  font-size: 14px;
  background: none;
  border: none;
  padding: 0 0.75rem;
  border-radius: 20px; /* Bords légèrement arrondis pour les liens */
  position: relative;
  white-space: nowrap;
}

.navbar__link i {
  font-size: 50px;
  margin-bottom: 4px;
}

.navbar__link span {
    font-size: 18px;
    color: var(--primary);
    background: none;
    padding: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.navbar__link:hover {
  background: rgba(64, 111, 243, 0.1);
  color: var(--primary);
}

/* Styles spécifiques à la page info */
.info-page {
  padding: 120px 20px 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 200px;
  padding: 2rem;
}

.info-page h1 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #406ff3;
  padding-bottom: 0.5rem;
}

.info-page h2 {
  color: #3498db;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #406ff3;
}

.info-page p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.info-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.info-page li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.info-page strong {
  color: #2c3e50;
  font-weight: 600;
}





/* Styles pour les sections */
.info-page section {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 700px) {
  .navbar {
    max-width: 90%;
    padding: 0 1rem;
  }
  .navbar__menu {
    gap: 0.5rem;
  }
  .navbar__link span {
    display: none; /* Cache le texte sur mobile */
  }
}



.info-page a::after, .navbar__home a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #406ff3;
}


/* Animation légère au survol */
.info-page section {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-page section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style pour les listes imbriquées */
.info-page ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Style pour le pied de page implicite */
.info-page footer {
  margin-top: 3rem;
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
}










/* Zillow-style dropdown */
.zillow-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fa;
  border: 2px solid #406ff3;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 20px;
  color: #406ff3;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(64,111,243,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.zillow-dropdown .dropdown-toggle:hover {
  background: #eaf0ff;
  border-color: #335dd0;
}

.zillow-dropdown .chevron {
  margin-left: auto;
  font-size: 18px;
  color: #406ff3;
}

.zillow-dropdown .dropdown-menu {
  margin-top: 8px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(64,111,243,0.12);
  border: 2px solid #e0e0e0;
  padding: 18px 22px;
  width: 260px;
}

.zillow-dropdown .dropdown-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid #f3f3f3;
}

.zillow-dropdown .dropdown-row:last-child {
  border-bottom: none;
}

.zillow-dropdown input[type="radio"] {
  accent-color: #406ff3;
  width: 22px;
  height: 22px;
}

.zillow-dropdown label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  color: #2c3e50;
}





* Zillow-style liens navbar */
.zillow-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  border: 2px solid #406ff3;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 20px;
  color: #406ff3;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(64,111,243,0.08);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.zillow-link:hover {
  background: #eaf0ff;
  border-color: #335dd0;
  color: #335dd0;
}

.zillow-link i {
  font-size: 22px;
  color: #406ff3;
}

