/* Header styles */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo img {
    width: 260px;
    height: auto;
}
.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.nav-links a {
    color: #000;
    text-decoration: none;
    padding: 0 16px;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.current {
    color: #ff5300;
}

/* Main content styles */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/europe/plage-europe.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,174,239,0.2) 0%, rgba(255,83,0,0.2) 100%);
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}
.beach-card {
    transition: transform 0.3s;
    margin-bottom: 30px;
}
.beach-card:hover {
    transform: translateY(-5px);
}
.beach-card img {
    height: 200px;
    object-fit: cover;
}

/* Footer styles */
footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
}
footer a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}
footer a:hover {
    color: #ddd;
}

/* Button styles */
.section-btn {
    display: block;
    width: fit-content;
    margin: 15px auto 0;
    background-color: #ff5300;
    color: white;
    border: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
}

.section-btn:hover {
    background-color: #ff6416;
    color: white;
}

.btn-mmt-country {
    font-size: 16px;
    background-color: #000;
    color: white;
    border: none;
}

.btn-mmt-country:hover {
    background-color: #333333;
    color: white;
}
.section-country {
    position: relative;
    z-index: 10;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Nouveaux styles pour les boutons de filtres */
.filter-btn {
    background-color: #000;
    color: white;
    margin: 0;
}

.filter-btn:hover {
    background-color: #333;
}

.filter-btn.active {
    background-color: #ff5300;
    color: white;
}

.filter-btn i {
    font-size: 1.2rem;
}

/* Styles personnalisés pour les dropdowns */
.dropdown-menu {
    background-color: #000;
    color: white;
    border: 1px solid #333;
    padding: 10px 0;
}

.dropdown-menu .form-check-label {
    color: white;
}

.dropdown-menu .form-check-input {
    background-color: #333;
    border-color: #555;
}

.dropdown-menu .form-check-input:checked {
    background-color: #ff5300;
    border-color: #ff5300;
}

.dropdown-menu .form-check {
    padding: 8px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-left: 0;
}

.dropdown-menu .form-check:hover {
    background-color: #333;
}

/* Ajustement pour les checkboxes */
.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu .form-check {
    width: 100%;
    margin: 0;
    padding-left: 30px;
}

.dropdown-menu .form-check-input {
    margin-left: -20px;
}

.plages-proches {
    margin: 0 -15px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    .plages-proches {
        margin: 0;
        width: 100%;
        position: relative;
        left: 0;
        transform: translateX(0);
    }
}