/* Styles de base */
body {
    background-color: #2A3945;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Styles pour les cartes */
.card {
    background-color: #ffffff;
    color: #2A3945;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #2A3945;
}

.card-text {
    color: #666666;
}

/* Styles pour la navigation */
.navbar {
    background-color: #ffffff !important;
}

.navbar-brand, .nav-link {
    color: #2A3945 !important;
}

.nav-link:hover {
    color: #F9B233 !important;
}

/* Styles pour les sections */
.hero-section {
    background-color: #ffffff;
    color: #2A3945;
}

.hero-section h1 {
    color: #2A3945;
}

.hero-section p {
    color: #666666;
}

/* Styles pour le footer */
.footer {
    background-color: #ffffff;
    color: #2A3945;
}

.footer h5 {
    color: #2A3945;
}

.footer p, .footer a {
    color: #666666;
}

.footer a:hover {
    color: #F9B233;
}

/* Styles pour les titres de section */
.section-title {
    color: #ffffff;
}

.section-description {
    color: #cccccc;
}

/* Styles pour masquer la barre de défilement */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    scrollbar-width: none; /* Pour Firefox */
    -ms-overflow-style: none; /* Pour Internet Explorer et Edge */
}

/* Pour Chrome, Safari et Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Masquer la barre de défilement pour tous les éléments */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* Styles pour les sections */
section {
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Styles pour les conteneurs */
.reviews-section-container,
.reviews-columns-container,
.review-column,
.review-track-up,
.review-track-down {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Styles pour la section des avis */
#section5 {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.reviews-section-container {
    height: 100%;
    overflow: hidden;
}

/* Styles pour la section de localisation */
#section4 {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.localisation-container {
    height: 100%;
    overflow: hidden;
}

/* Styles pour la section de la carte */
#section3 {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carte-container {
    height: 100%;
    overflow: hidden;
}

/* Styles pour la section de l'ardoise */
#section2bis {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Styles pour les boutons */
.button-74 {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.button-74:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Styles pour les images du slider */
.slide img, .slide-middle img {
    transition: transform 0.5s ease-out;
}

.slide img:hover, .slide-middle img:hover {
    transform: none !important;
    filter: none !important;
}

/* Styles pour l'ardoise */
.ardoise-container {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.ardoise-container.visible {
    transform: translateY(0);
    opacity: 1;
}

.ardoise-item {
    transition: transform 0.3s ease-out;
}

.ardoise-item:hover {
    transform: translateX(10px);
}

/* Styles pour la section localisation */
#section4 {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles pour la section ardoise du jour */
#section2bis {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles pour la section 1 */
#section1 {
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.logo_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

/* Animation pour le logo */
.content h1 {
    font-size: 4rem;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 800px;
    height: auto;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: fadeInUpLogo 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.8s;
}

.content h1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes fadeInUpLogo {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Styles pour les réseaux sociaux */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
    font-size: 1.7rem;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    text-decoration: none;
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.social-link svg {
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
}

.social-link:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: #F9B233;
}

.social-link:hover i, .social-link:hover svg {
    color: #fff;
    fill: #fff;
}

/* Media queries */
@media (max-width: 768px) {
    .content h1 {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        max-width: 400px;
    }
} 