/* 
 * Thème de couleurs : Bien-être & Campagne
 * 
 * Palette principale :
 * - Vert sauge (#87A96B) : Couleur dominante, évoque la nature et la sérénité
 * - Rose pâle (#F8C8DC) : Apporte douceur et chaleur, contraste doux avec le vert
 * - Beige clair (#F5F5DC) : Couleur neutre pour les fonds, évoque le naturel et le calme
 * - Rouge terre cuite (#CC6B5B) : Accent chaud pour les éléments importants
 * 
 * Couleurs secondaires :
 * - Vert foncé (#5A7247) : Pour les textes et éléments plus sombres
 * - Rose poudré (#F2D4D7) : Alternative plus douce pour les arrière-plans
 * - Blanc cassé (#FFF9F0) : Pour les fonds clairs
 */
:root {
    /* Couleurs principales */
    --sage-green: #48b58c;
    --pale-pink: #F8C8DC;
    --light-beige: #F5F5DC;
    --terracotta: #d35400;
    --blue: #3F51B5;

    /* Nuances supplémentaires pour une meilleure harmonie */
    --dark-green: #5A7247;
    --dusty-pink: #F2D4D7;
    --off-white: #FFF9F0;

    /* Application des couleurs */
    --primary-color: var(--sage-green);
    --secondary-color: var(--terracotta);
    --pink-color: var(--pale-pink);
    --light-color: var(--off-white);
    --dark-color: var(--dark-green);
    --neutral-color: var(--light-beige);

    /* Couleurs de texte */
    --text-dark: #333333;
    --text-light: #FFFFFF;

    /* Espacements */
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

.background-primary {
    background-color: var(--primary-color);
}

.background-secondary {
    background-color: var(--secondary-color);
}

.background-pink {
    background-color: var(--pink-color);
}

.background-light {
    background-color: var(--light-color);
}

.background-dark {
    background-color: var(--dark-color);
}

.background-light-transparent {
    background-color: rgba(255, 255, 255, 0.8);
}

.background-light-transparent-2 {
    background-color: rgba(255, 255, 255, 0.4);
}

.background-pink-transparent {
    background-color: rgba(248, 200, 220, 0.8);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-beige);
    /* Fond plus doux pour la lecture */
    transition: var(--transition);
}

/* Styles pour les cartes avec images de fond */
.theme-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 300px;
    color: white;
    background-size: cover;
    background-position: center;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.theme-card .card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.theme-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.theme-card h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.theme-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.theme-card .btn {
    margin-top: auto;
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-green);
    border: none;
    transition: all 0.3s ease;
}

.theme-card .btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

/* Effet parallaxe */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

/* En-tête avec vidéo */
.hero {
    height: 100vh;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    background-color: var(--dark-green);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(90, 114, 71, 0.6), rgba(90, 114, 71, 0.8));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Bouton mute */
#muteButton {
    transition: all 0.3s ease;
    z-index: 4;
}

#muteButton:hover {
    transform: scale(1.1);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    padding: 1rem 0;
    transition: var(--transition);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 0;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: var(--dark-green) !important;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(135, 169, 107, 0.08);
    border-radius: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: black !important;
}

.navbar-toggler {
    border-color: var(--sage-green);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto;
}

/* Cartes de présentation */
.feature-card {
    border: none;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(135, 169, 107, 0.07);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--terracotta);
    transform: scale(1.1);
}

/* Styles pour les sections */
.section {
    padding: 4rem 0;
    position: relative;
}

@media (max-width: 767px) {
    .section {
        padding: 2rem 0;
    }
}

.section-title {
    color: var(--dark-green);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1.5rem auto;
    border-radius: 2px;
    position: relative;
}

.divider:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--sage-green);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
}

/* Page d'accueil */
.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Assurer que la vidéo couvre tout l'espace sur tous les appareils */
@media (min-aspect-ratio: 16/9) {
    .video-background video {
        height: 100%;
        width: auto;
    }
}

#video2-container {
    position: fixed;
    top: 0;
    z-index: -2;
}

/* Cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#thematiques .card-hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--sage-green);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.card-hover:hover .feature-icon {
    background-color: var(--sage-green);
    color: white;
    transform: rotateY(180deg);
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--sage-green);
    border-color: var(--sage-green);
}

.btn-primary:hover {
    background-color: #3a6348;
    border-color: #3a6348;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.btn-outline-primary {
    color: var(--sage-green);
    border-color: var(--sage-green);
    background-color: var(--light-beige);
}

.btn-outline-primary:hover {
    background-color: var(--sage-green);
    border-color: var(--sage-green);
    color: white;
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-primary {
    background-color: var(--sage-green) !important;
}

/* Text Colors */
.text-primary {
    color: var(--sage-green) !important;
}

/* Utilities */
.rounded-3 {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #87A96B;
}

.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenities-list li:before {
    content: "✓";
    color: #87A96B;
    position: absolute;
    left: 0;
}

.card-hover {
    transition: transform 0.3s ease;
    height: 100%;
}

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

.divider {
    height: 4px;
    width: 80px;
    background: var(--primary-color);
    margin: 20px auto;
    position: relative;
}

.divider:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
}

/* Page à proximité */
#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.poi-category {
    margin-bottom: 3rem;
}

.poi-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.poi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.poi-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.poi-card .card-body {
    padding: 1.5rem;
}

.poi-card .card-title {
    color: #2a5d45;
    margin-bottom: 0.75rem;
}

.poi-card .card-text {
    color: #666;
    margin-bottom: 1rem;
}

.poi-distance {
    display: flex;
    align-items: center;
    color: #87A96B;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.poi-distance i {
    margin-right: 0.5rem;
}

.poi-tag {
    display: inline-block;
    background-color: #f0f7e9;
    color: #4a7c59;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #87A96B;
}

.nav-pills .nav-link {
    color: #4a7c59;
    border: 1px solid #dee2e6;
    margin: 0.25rem;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #87A96B;
    border-color: #87A96B;
    color: white;
}

.nav-pills .nav-link:not(.active):hover {
    background-color: #f8f9fa;
}

.accueil .hero-section,
.bouinotte-47 .hero-section,
.bouinotte-49 .hero-section,
.proximite .hero-section,
.contact .hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouinotte-47 .hero-section .hero-content,
.bouinotte-49 .hero-section .hero-content,
.proximite .hero-section .hero-content,
.contact .hero-section .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

/* .bouinotte-47 .hero-section {
    background: url('../../assets/images/47/terrasse.jpg') center/cover no-repeat;
} */

.bouinotte-49 .hero-section {
    background: url('../../assets/images/47/terrasse.jpg') center/cover no-repeat;
}

.proximite .hero-section {
    background: url('../../assets/images/47/terrasse.jpg') center/cover no-repeat;
}

.contact .hero-section {
    background: url('../../assets/images/47/terrasse.jpg') center/cover no-repeat;
}

.backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Style pour les icônes des caractéristiques */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #87A96B;
}

/* Style pour les cartes de chambre */
.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Style pour les listes d'équipements */
.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenities-list li:before {
    content: "✓";
    color: #87A96B;
    position: absolute;
    left: 0;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    border-radius: 2px;
}

/* Boutons */
.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(204, 107, 91, 0.08);
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--dark-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 169, 107, 0.12);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-color: white;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pied de page */
.footer {
    background-color: var(--dark-green);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Effets de survol pour les liens du footer */
footer a.hover-text-white {
    transition: color 0.3s ease;
}

footer a.hover-text-white:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Animation de transition fluide */
.transition {
    transition: all 0.3s ease;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.footer .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

/* Formulaire de contact */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--sage-green);
    box-shadow: 0 0 0 0.25rem rgba(135, 169, 107, 0.25);
}

/* Cartes de témoignages */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Styles pour les icônes dans les cartes */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.icon-circle i {
    font-size: 2rem;
}

/* Divider personnalisé */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--sage-green);
    position: relative;
    margin: 1.5rem auto;
}

.divider i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--off-white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Styles pour les cartes de services */
.feature-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .card-body {
    position: relative;
    z-index: 2;
}

/* Pied de page */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

/* Boutons */
.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 767px) {
    .room-features {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* Cartes d'information de contact */
.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4a7c59;
    font-size: 1.5rem;
}

/* Formulaire de contact */
.form-control:focus,
.form-select:focus {
    border-color: #87A96B;
    box-shadow: 0 0 0 0.25rem rgba(135, 169, 107, 0.25);
}

.form-floating>label {
    color: var(--dark-green);
    font-weight: 500;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--secondary-color);
    font-weight: 700;
}

.is-invalid~.invalid-feedback {
    display: block;
}

.form-check-input:checked {
    background-color: #4a7c59;
    border-color: #4a7c59;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(74, 124, 89, 0.25);
}

.class-001 {
    color: black;
    border-radius: 0.75rem;
    padding: 1rem;
    opacity: 0.9;
}

.class-002 .card-body i {
    width: 20px;
    text-align: center;
}

/* Style pour les cards du carousel points d'intérêt */
#attractions-carousel .owl-stage {
    display: flex;
}

#attractions-carousel .owl-item {
    display: flex;
    height: auto !important;
}

#attractions-carousel .item {
    display: flex;
    height: 100%;
    width: 100%;
}

#attractions-carousel .card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
}

#attractions-carousel .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-bottom: 1.5rem;
}

/* Assurer que les éléments à l'intérieur des cards s'étendent correctement */
#attractions-carousel .card-body>p {
    flex-grow: 1;
    margin-bottom: 0;
}

#attractions-carousel .mt-auto {
    margin-top: 1rem !important;
}

/* Styles pour la galerie photo */
#photo-carousel .owl-stage {
    display: flex;
    padding-bottom: 10px;
}

#photo-carousel .owl-item {
    display: flex;
    height: auto !important;
}

#photo-carousel .item {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 5px;
}

.photo-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-thumbnail .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-thumbnail .overlay i {
    color: white;
    font-size: 2rem;
}

.photo-thumbnail:hover {
    transform: translateY(-5px);
}

.photo-thumbnail:hover img {
    transform: scale(1.05);
}

.photo-thumbnail:hover .overlay {
    opacity: 1;
}

#backToTop {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    position: fixed;
}

#backToTop i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#toBerry i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-editable:hover {
    background-color: rgba(0, 123, 255, 0.05);
    cursor: pointer;
}

.editor-buttons {
    position: relative;
    z-index: 1000;
}

#toast-container {
    z-index: 9999;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--sage-green);
    color: white;
}

#about {
    background-image: url('../images/5226644.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* #contact_us {
    background-image: url('../images/2025-06-19-230723.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
} */

/* #reservation_infos_47 {
    background-image: url('../images/47/exterieur-champ.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
} */

.clignotant {
    animation: clignotement 2s infinite;
}

@keyframes clignotement {

    0%,
    100% {
        background-color: rgb(104, 104, 104);
    }

    50% {
        opacity: 0.5;
    }
}