/* Header styles */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    font-size: 40px;
    font-weight: bold;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
    font-weight: bold;
}

.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-plage {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section-plage::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-plage .container {
    position: relative;
    z-index: 2;
}

.hero-section-plage h1 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.hero-section-plage .lead {
    font-size: 24px;
    color: white;
}

.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);
}

.rounded-big {
    border-radius: 25px;
}

.bg-orange {
    background-color: #ff5300;
}
.bg-orange:hover {
    background-color: #ff7632;
}

/* Styles pour le breadcrumb */
.breadcrumb {
    font-size: 16px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #000;
}

.breadcrumb-item a:hover {
    color: #ff5300;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    color: #ff5300;
}

/* Style pour le curseur loupe sur les images de la galerie */
.gallery-container .gallery-item {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ff5300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E"), auto !important;
}


.plage-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.plage-main-content p {
    font-size: 24px;
    text-align: justify;
}

.plage-description-section {
    padding-bottom: 50px;
}

.plage-description-section h2 {
    text-align: center;
    padding-bottom: 30px;
}

.highlight {
    color: #ff5300;
}

.plage-description-section-content {
    text-align: justify;
    font-size: 22px;
}

.plage-description-section-content p {
    padding-bottom: 20px;
}

.plage-main-content-video p {
    font-size: 24px;
    text-align: justify;
}

.plage-main-content-novideo p {
    font-size: 24px;
    text-align: justify;
}

.avis-section {
    padding-bottom: 50px;
}

@media screen and (min-width: 1240px) {
    .plage-main-content {
        padding-left: 60px;
    }

    .plage-description-section-content {
        padding-right: 60px;
    }

    .plage-main-content-video {
        padding-left: 60px;
    }
    
    .plage-main-content-novideo {
        padding-left: 60px;
    }

    .plage-avis-section-content {
        padding-left: 60px;
    }
}

@media screen and (max-width: 960px) {
    .plage-main-content {
        margin-bottom: 50px;
    }
}
