/* font-family: 'Cinzel Decorative', serif; (BOLD)*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap");

/* font-family: 'Cinzel Decorative', serif; (REGULARE)*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap");

/* font-family: 'Crimson Text', serif; (ITALIC)*/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital@1&display=swap");

/* font-family: 'Inter', sans-serif;  (LIGHT)*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap");

/* font-family: 'Merriweather', serif; (BOLD) */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap");

/* font-family: 'Neuton', serif; (LIGHT) */
@import url("https://fonts.googleapis.com/css2?family=Neuton:wght@300&display=swap");

body {
  max-width: 1300px;
  margin: 20px auto;
  background: rgba(37, 37, 37, 0.873);
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body {
    max-width: 710px;
    margin: 20px 20px;
    background: rgba(37, 37, 37, 0.873);
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  body {
    max-width: 430px;
    margin: 20px 20px;
    background: rgba(37, 37, 37, 0.873);
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 30px;
  background-image: url("../assets/img/LOGO_FRUSANETCOM_v2_30pourcent.png"); /* Chemin vers l'image */
  background-repeat: no-repeat; /* Pour éviter la répétition de l'image */
  background-position: center; /* Centrer l'image dans le header */
  background-size: contain; /* Adapte la taille de l'image à son conteneur */
  height: 150px; /* Hauteur du header, ajustez selon vos besoins */
  width: 100%; /* Largeur du header */
}

nav {
  display: flex;
  text-align: center;
  justify-content: space-around;
  width: 100%;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  margin: 0;
}

nav li {
  list-style-type: none;
}

nav a {
  color: rgba(253, 253, 253, 0.965); /* Couleur du lien */
  text-decoration: none;
}

nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
  color: rgba(253, 253, 253, 0.965);
  text-decoration: none;
}

/* Cacher les sous-menus par défaut */
nav .subnav-content {
  display: none;
}

/* Optionnel: Styles pour les sous-menus affichés, activé par JavaScript */
nav .subnav.active .subnav-content {
  display: block;
}

.usa1 {
  display: grid;
  grid-template-columns: auto 500px auto; /* 3 colonnes: boutons, usaph, boutons */
  justify-content: center;
  align-items: center;
  gap: 20px; /* Espace entre les colonnes */
}

.usaph-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Pour gérer les débordements d'images */
}

.usaph {
  width: 500px; /* Largeur */
  height: 500px; /* Hauteur */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flecheg,
.fleched {
  font-size: 2rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* Ajustements supplémentaires pour les images de fond */
.austin-texas {
  background-image: url("../assets/img/austin-texas.png");
}
.bannack-montana-house {
  background-image: url("../assets/img/bannack-montana-house.png");
}
.chicago {
  background-image: url("../assets/img/chicago.png");
}
.miami-beach {
  background-image: url("../assets/img/Miami-beach.png");
}
.statue-of-liberty {
  background-image: url("../assets/img/statue-of-liberty.png");
}
.road {
  background-image: url("../assets/img/road.png");
}
.old-city {
  background-image: url("../assets/img/old-city.png");
}

@media screen and (max-width: 768px) {
  .austin-texas {
    background-image: url("../assets/img/austin-texas.png");
    width: 200px;
    height: auto;
  }
  .bannack-montana-house {
    background-image: url("../assets/img/bannack-montana-house.png");
    width: 200px;
    height: auto;
  }
  .chicago {
    background-image: url("../assets/img/chicago.png");
    width: 200px;
    height: auto;
  }
  .miami-beach {
    background-image: url("../assets/img/Miami-beach.png");
    width: 200px;
    height: auto;
  }
  .statue-of-liberty {
    background-image: url("../assets/img/statue-of-liberty.png");
    width: 200px;
    height: auto;
  }
  .road {
    background-image: url("../assets/img/road.png");
    width: 200px;
    height: auto;
  }
  .old-city {
    background-image: url("../assets/img/old-city.png");
    width: 200px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .austin-texas {
    background-image: url("../assets/img/austin-texas.png");
    width: 150px;
    height: auto;
  }
  .bannack-montana-house {
    background-image: url("../assets/img/bannack-montana-house.png");
    width: 150px;
    height: auto;
  }
  .chicago {
    background-image: url("../assets/img/chicago.png");
    width: 150px;
    height: auto;
  }
  .miami-beach {
    background-image: url("../assets/img/Miami-beach.png");
    width: 150px;
    height: auto;
  }
  .statue-of-liberty {
    background-image: url("../assets/img/statue-of-liberty.png");
    width: 150px;
    height: auto;
  }
  .road {
    background-image: url("../assets/img/road.png");
    width: 150px;
    height: auto;
  }
  .old-city {
    background-image: url("../assets/img/old-city.png");
    width: 150px;
    height: auto;
  }
}


.grilleaccueilfr {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Trois colonnes de taille égale */
  gap: 30px; /* Espace entre les colonnes */
}

@media screen and (max-width: 768px) {
  .grilleaccueilfr {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Trois colonnes de taille égale */
    gap: 30px; /* Espace entre les colonnes */
  }
}

@media screen and (max-width: 480px) {
  .grilleaccueilfr {
    grid-template-columns: repeat(2, 1fr); /* Deux colonnes de taille égale */
  }
}

@media screen and (max-width: 270px) {
  .grilleaccueilfr {
    grid-template-columns: 1fr; /* Une seule colonne */
  }
}

.accueilfr h1 {
  text-align: center; /* Centrer le texte des titres h1 */
  font-family: "Merriweather", serif;
  font-size: 1.8rem;
  color: rgba(3, 3, 220, 0.847);
}

.accueilfr p {
  text-align: justify;
  font-family: "Crimson Text", serif;
  font-size: 1.2rem;
  color: rgba(246, 246, 170, 0.939);
}

a {
  color: rgba(243, 243, 243, 0.932); /* Couleur du lien */
  text-decoration: none; /* Supprime le soulignement */

  /* Appliquer les mêmes styles pour les différents états du lien */
  &:link,
  &:visited,
  &:hover,
  &:active {
    color: rgba(243, 243, 243, 0.932);
    text-decoration: none;
  }
}

.grillefooter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgb(253, 253, 253, 0.965);
  padding: 20px;
  text-align: center;
}

.footerImg {
  background-image: url("../assets/img/LOGO_HLG_LLC_v2_5.png");
  background-repeat: no-repeat;
  background-size: contain; /* ou 'cover' selon le besoin */
  background-position: center;
  height: 100px; /* Hauteur de la div, ajustez selon vos besoins */
  width: 100%; /* Largeur de la div */
}

.footer {
  padding: 5px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: calc(0.6rem + 0.5vw);
  font-family: "Inter", sans-serif;
}

.footer p {
  margin-bottom: 15px;
  font-size: calc(0.6rem + 0.5vw);
  font-family: "Neuton", serif;
}

@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  nav ul {
    flex-direction: column;
  }
}

@media screen and (max-width: 270px) {
  nav ul {
    flex-direction: column;
  }
}