body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
.smooth-scroll {
    scroll-behavior: smooth;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
}

/* Animation pour ABECUR */
.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInBounce 0.5s ease forwards;
}
@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation pour le cœur (bien-être) */
.heart-icon {
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Animation pour le curseur de typing */
.cursor {
    display: inline-block;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Styles pour les carrousels */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-portrait-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-portrait-slide.active {
    opacity: 1;
}
.portrait-image {
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1.2);
    margin: 0 -10%;
}
.carousel-portrait-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50%;
    gap: 1rem;
}

/* Style pour le texte du héros */
.hero-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Styles pour les logos */
nav img, footer img {
    max-height: 100%;
    width: auto;
}
.hero-text img {
    max-width: 200px;
    height: auto;
}

/* Styles pour la galerie */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery-item img, .gallery-item video {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.05);
}
.gallery-item .bg-black {
    transition: opacity 0.3s ease;
}
.gallery-item:hover .bg-black {
    opacity: 0.8;
}
.gallery-item p {
    margin: 0;
    font-size: 0.875rem;
}

/* Footer styles */
footer a {
    transition: color 0.3s ease;
}
footer .container {
    max-width: 1280px;
}

/* Styles pour la responsivité */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2rem;
    }
    .text-4xl {
        font-size: 1.8rem;
    }
    .text-2xl {
        font-size: 1.3rem;
    }
    .text-xl {
        font-size: 1rem;
    }
    .text-lg {
        font-size: 0.9rem;
    }
    .hero-text {
        padding: 1rem;
        height: auto;
    }
    .hero-text img {
        max-width: 150px;
    }
    .carousel-landscape, .carousel-portrait-1, .carousel-portrait-2 {
        height: 200px;
    }
    .carousel-portrait-container {
        flex-direction: column;
        height: auto;
    }
    .carousel-portrait-1, .carousel-portrait-2 {
        width: 100%;
        height: 200px;
    }
    .carousel-portrait-slide {
        flex-direction: column;
    }
    .portrait-image {
        width: 100%;
        height: 50%;
        transform: scale(1);
        margin: 0;
    }
    .gallery-item img, .gallery-item video {
        height: 200px;
    }
    nav img {
        height: 2.5rem;
    }
    footer img {
        height: 2.5rem;
    }
    footer .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-3, .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .carousel-landscape {
        height: 300px;
    }
    .hero-text {
        height: auto;
        min-height: 200px;
    }
}

/* Navigation responsive */
.nav-links {
    display: flex;
}
@media (max-width: 640px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }
}



.logo-rotate {
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


select,select::picker(select){
    appearance: base-select;
}

select::picker-icon{
    color: green;
    transition: 0.4s rotate;

}

select:open::picker-icon {
    rotate: 180deg;
}