* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

.lien {
    color: #D2D97B ;
    text-align: center;
    text-decoration: none;
    height: 2rem;
    padding: 7px;
    background-color: #FF964F;
    border-radius: 10%;
  }
  
   a {
    color: #D2D97B ;
    text-decoration: none;
  }
  
    h1 {
    padding-bottom: 10px;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    background-color: #4A1710;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  #only-mobile {
    display: none;
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
  }
  
  #map {
    height: 82%;
    width: 100vw;
    top: 0;
    position: absolute;
    outline-style: none;
}
  
  
  #info-panel {
    height: 20vh;
    background: #f4f4f4;
    padding: 1rem;
    overflow-y: auto;
    font-size: 0.95rem;
    display: none;
  }
  
  /* Cacher sur desktop */
  @media screen and (min-width: 768px) {
    #map, #info-panel {
      display: none;
    }
    #only-mobile {
      display: block;
    }
  }
  
  
  .overlay {
    width: 200%;
    height: 100%;
    padding: 20px 16px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .logo {
    width: 200px;
    margin-top: 10px;
  }
  
  .title {
    font-family: "fagun", sans-serif;
    font-weight: bolder;
    font-style: normal;
    font-size: 60px;
    color: #3a0a26;
    margin: 12px 0 4px;
    filter: drop-shadow(1px 1px 1px #4A1710);
  }
  
  .subtitle {
    font-size: 25px;
    font-weight: 700;
    color: #3a0a26;
    margin-bottom: 20px;
    font-family: 'fagun', cursive;
    filter: drop-shadow(1px 1px 1px #4A1710);
  }
  
  .cta {
    background-color: #fba857;
    color: #3a0a26;
    border: 8px solid#4A1710;
    border-radius: 35px;
    padding: 25px 35px;
    font-weight: bolder;
    font-size: 25px;
    margin-top: auto;
    font-family: "fagun", sans-serif;
    font-weight: 900;
    margin-bottom: 60px;
    cursor: pointer;
  }
  
  .cta:hover {
    background-color: #fdbb74;
  }
  
  .nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    color: #efef99;
    font-family: 'fagun', sans-serif;
    font-weight: 700;
  }
  
  .icon-circle {
    background-color: #efef99;
    border: 5px solid #4d1a1a;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
  
    .icon-circle-actuelle {
      background-color: #ff964f;
    border: 5px solid #4d1a1a;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;

  }
  .icon-circle img {
    width: 40px;
    height: 40px;
  }
  
  button {
    text-shadow: 1px 1px 1px #4A1710;
  }
  
  .leaflet-popup-content {
    font-family: 'fagun', sans-serif;
    font-size: 1rem;
    color: #4A1710;
    text-align: center;
}

.leaflet-popup-content h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FF964F;
}

.leaflet-popup-content .lien {
    display: inline-block;
    background: #D2D97B;
    color: #4A1710;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s ease;
}

.leaflet-popup-content .lien:hover {
    background: #FF964F;
    color: white;
}

.leaflet-popup-tip {
    background: #D2D97B;
}

.leaflet-popup-content-wrapper {
    background: #fff8ea;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: 2px solid #4A1710;
}

@media screen and (min-width: 768px) {
  #map, #info-panel, .nav, .overlay {
    display: none !important;
  }

  #only-mobile {
    display: block !important;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* ----------------------------- */
/*        Tablette paysage       */
/* ----------------------------- */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .title {
    font-size: 45px;
  }

  .subtitle {
    font-size: 20px;
  }

  .cta {
    font-size: 22px;
    padding: 18px 30px;
  }

  .icon-circle,
  .icon-circle-actuelle {
    width: 60px;
    height: 60px;
  }

  .icon-circle img {
    width: 32px;
    height: 32px;
  }

  .nav-item {
    font-size: 14px;
  }
}

/* ----------------------------- */
/*    Petits écrans < 375px      */
/* ----------------------------- */
@media screen and (max-width: 374px) {
  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 17px;
  }

  .cta {
    font-size: 17px;
    padding: 14px 22px;
  }

  .icon-circle,
  .icon-circle-actuelle {
    width: 50px;
    height: 50px;
  }

  .icon-circle img {
    width: 26px;
    height: 26px;
  }

  .nav-item {
    font-size: 12px;
  }
}

