/****** General ***********/
* {
    font-family: 'Raleway', sans-serif;
}

:root {
    --main-color: #0065FC;
    --main-bg-color: #F2F2F2;
    --filter-bg-color: #DEEBFF;
}

.fa-solid {
    color: var(--main-color);
}

body {
    display: flex;
    justify-content: center;
    max-width: 1440px;
    min-width: 1024px;
    margin: 0 auto;
}

 .main-container { 
    width: 100%;
    max-width: 1440px;
    padding: 0 50px;
    box-sizing: border-box;
}

.header {
    width: 100%; 
}

.entete {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 68px;
}

   .logo_entete {
    padding-top: 100%;
    padding-right: 50px;
    padding-bottom: 30px;
    padding-left: 15px;
    
    
} 

.nav {
    display: flex;
    gap: 68px; /* espace entre les liens */
    
}
  
.nav a {
    text-decoration: none; /* enlève le soulignement */
    color: inherit; /* couleur normale (hérite de la couleur du parent) */
    outline: none;
    border: none;
    padding-top: 30px;
}
  
.nav a:hover {
    color:#0065FC; /* couleur bleu au survol  */
    border-top: 2px solid #0065FC; /* bordure haut bleu */
}

a {
    color: inherit;
    text-decoration: none;
}
.info-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: normal;
    font-size: 14px;
}
  
  .info-icon {
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .info-icon img {
    width: 24px;
    height: 24px;
}

.section-title {
    margin: 0;
    font-size: 22px;
}

.card {
    background-color: white;
    border-radius: 20px;
    padding: 5px;
    filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
}

.card img {
    object-fit: cover;
}

.card-title {
    font-size: 16px;
}

.euro {
    font-weight: 700;
}

.neutral-star {
    color: var(--main-bg-color)
}

/****** Hebergements And Populaires ***********/
.hebergements-and-populaires {
    display: flex;
    justify-content: space-between;
}

.hebergements-and-populaires section {
    background-color: var(--main-bg-color);
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
}

/****** Hebergements ***********/
.hebergements {
    background-color: #f5f5f5;
    padding: 20px;
    width: 65%;
  }
  
  .hebergements h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .hebergements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .hebergement-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .card-content {
    padding: 10px;
  }
  
  .card-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .card-content p {
    margin: 0 0 10px;
    color: #555;
    font-size: 14px;
  }
  
  .stars {
    color: #0065FC; 
    font-size: 14px;
  }


/****** Populaires ***********/
.populaires {
    width: 32%;
}

.populaires-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.populaires-cards .card {
    display: flex;
    margin-top: 33px;
}

.populaires-cards img {
    width: 33%;
    height: 136px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.populaires-cards .card-content {
    width: 67%;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.populaires-cards .card-title {
    margin-top: 10px;
    margin-bottom: 4px;
}

.populaires-cards .card-subtitle {
    margin: 0;
}

.populaires-cards .card-rating {
    margin-bottom: 5px;
}

/* Styles de base pour le footer */
footer {
    background-color: #F2F2F2;
 
  }
  
.footer-container {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
    text-align: left;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
    padding-top:  15px;
    padding-left:  20px;
    padding-bottom: 15px;
    padding-right: 15px;
    max-width: 1440px;
    min-width: 1024px;
}
  
  /* Styles des colonnes */
  .footer-column {
    flex: 1;
    min-width: 250px;
 }
  
 .footer-column strong {
    font-size: 16px;
    margin-bottom: 10px;
}
  
 .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

 .footer-column li {
    margin: 5px 0;
}
  
.footer-column a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: color 0.3s;
}
/* Le code ci-dessous correspond à la version responsive uniquement */

/****** Media queries ***********/
/* Medium devices (tablets, less/equal than 1024px) */
@media (max-width: 1024px) {
    .hebergements-and-populaires {
        flex-direction: column;
    }

    .hebergements {
        width: 100%;
    }

    .populaires {
        width: 100%;
        margin-top: 50px;
    }

    .populaires-cards {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .populaires-cards a {
        width: 30%;
    }

    .populaires-cards .card-title {
        font-size: 14px;
    }

    .populaires-cards .card-subtitle {
        font-size: 13px;
    }
}

/* Small devices (phones, less than 768px) */
@media (max-width: 767.98px) {
    /* ... */
}