/* Custom CSS pour Villa Dakota avec multilingue */

/* Navigation fixe en haut */
.navigation {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #b9d05c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Ajouter padding au body pour compenser la nav fixe */
body {
    padding-top: 70px;
}

/* Forcer l'affichage des liens de navigation */
.navigation__list {
    opacity: 1 !important;
    visibility: visible !important;
}

.navigation__item {
    opacity: 1 !important;
    visibility: visible !important;
}

.navigation__item a {
    color: #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 600;
}

.navigation__item a:hover {
    color: #fff !important;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lang-btn {
    background: #f4f4f4;
    border: none;
    padding: 8px 16px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.lang-btn:hover {
    background: #b9d05c;
    color: white;
}

.lang-btn.active {
    background: #b9d05c;
    color: white;
}

/* Gallery Slider - CSS pour Slick avec 4 images visibles */
.gallery-slider {
    padding: 40px 0;
}

.gallery-slider__item {
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-slider__item a {
    display: block;
}

.gallery-slider__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-slider__item img:hover {
    transform: scale(1.05);
}

/* Slick arrows customization */
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    z-index: 1;
}

.gallery-slider .slick-prev {
    left: 25px;
}

.gallery-slider .slick-next {
    right: 25px;
}
