body {
    background-image: url("../images/john-mcarthur-8KLLgqHMAv4-unsplash.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Bannière */
.banner {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.banner h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
    font-size: 1.2rem;
}

/* Filtres */
.filtres {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.filtres h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.filtre-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filtre-options select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    min-width: 200px;
}

/* Carte */
.carte {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.carte h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5rem;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

/* Destinations */
.destinations {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 150px;
    background: linear-gradient(45deg, #ff9a8b, #ff6b6b, #ffd166);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.destination-info {
    padding: 15px;
}

.destination-info h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.destination-info p {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-info p i {
    color: var(--primary-color);
}

.prix {
    font-weight: bold;
    color: #28a745;
    font-size: 1.4rem;
    margin: 10px 0;
}

.prix span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.reserver-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s;
}

.reserver-btn:hover {
    background-color: #0a1423;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    margin-top: 40px;
}
.disabled {
    background-color: grey;
    cursor: not-allowed;
    pointer-events: none;
    text-align: center;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .filtre-options {
        flex-direction: column;
        gap: 15px;
    }

    .filtre-options select {
        width: 100%;
    }

    #map {
        height: 300px;
    }
}