/* Corps général */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* En-tête et navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Section Hero */
.hero {
    background-image: url('image/sapin.jpg'), linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Section Hôtels et Restaurants */
section h2 {
    text-align: center;
    margin: 50px 0 20px;
    font-size: 2.5rem;
}

.hotel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.hotel-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hotel-info {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.hotel-info h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.hotel-info .btn {
    display: inline-block;
    margin-top: 10px;
}

.hotel-carousel {
    width: 50%;
    margin-left: auto;
}

.hotel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Bouton principal */
.btn-primary {
    background-color: #ff6347;
    border-color: #ff6347;
}

.btn-primary:hover {
    background-color: #ff4500;
    border-color: #ff4500;
}

/* Section Événements */
.events {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.event-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-item p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.event-item .btn {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.event-item .btn:hover {
    background-color: #ff4500;
}

/* Responsivité pour les sections en grille */
@media (max-width: 768px) {
    .hotel-grid, .restaurant-grid, .event-grid {
        grid-template-columns: 1fr;
    }

    .hotel {
        flex-direction: column;
        text-align: center;
    }

    .hotel-carousel {
        width: 100%;
    }
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: #ff6347;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4500;
}

header .logo img {
    max-width: 50px;
    height: auto;
}
/* Style pour la section titre */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.section-title p {
    font-size: 1.2rem;
    color: #777;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #ff6347;
    margin: 10px auto;
}

/* Amélioration du style des cartes d'hôtels */
.hotel {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.hotel:hover {
    transform: translateY(-10px);
}

/* Bouton amélioré */
.btn-primary {
    background-color: #ff6347;
    border-color: #ff6347;
}

.btn-primary:hover {
    background-color: #ff4500;
    border-color: #ff4500;
}

/* Ombres douces sur les éléments */
.shadow-lg {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* Réduction de la taille des images du carrousel */
.carousel-inner img {
    max-width: 80%; /* Ajuste cette valeur pour réduire la largeur de l'image */
    height: auto;
    margin: 0 auto; /* Centre les images */
}
/* Carrousel - redimensionnement des images */
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Centrage des sections de contenu */
.container .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Encadrement pour les sections */
.p-3 {
    background-color: #f8f9fa;
}

/* Avis des clients */
.avis-clients .border {
    padding: 15px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
}
