<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #F2CEA2;
    color: #333333;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    background-color: #fae5d1;
    padding: 1rem 2rem;
    position: relative;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}

.logo-image {
    max-height: 250px;
    width: auto;
}

/* Navigation Links */
.nav-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    font-size: 1.25rem;
}

.nav-links li a {
    color: #6B4226;
    text-decoration: none;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 1rem;
    z-index: 20;
}

.burger .line {
    width: 30px;
    height: 4px;
    background-color: #6B4226;
    margin: 5px;
    transition: all 0.3s ease;
}

.burger.toggle .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.toggle .line:nth-child(2) {
    opacity: 0;
}

.burger.toggle .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #FFF7EB;
    padding: 4rem 2rem;
    flex-direction: column;
}

.hero-content {
    max-width: 600px;
}

/* Buttons Section */
.buttons-section {
    padding: 2rem 0;
    background-color: #FFF7EB;
    text-align: center;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.custom-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f08c00;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    max-width: 100%; /* EmpÃªche le dÃ©bordement */
    word-wrap: break-word; /* Permet le retour Ã&nbsp; la ligne pour le texte long */
}

.custom-button:hover {
    background-color: #d97300;
}

@media (max-width: 600px) {
    .custom-button {
        font-size: 0.9em; /* Taille rÃ©duite pour les petits Ã©crans */
        padding: 8px 16px; /* Padding rÃ©duit */
        line-height: 1.4;
    }
}


/* Footer */
footer {
    background-color: #FFF7EB;
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Carrousel */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80vh;
}

.carousel-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.carousel-inner .slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.carousel-inner .slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.carousel-inner .slide:first-child {
    display: block;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #FFF7EB;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .buttons-container {
        flex-direction: column;
    }

    .custom-button {
        width: 80%;
        margin-bottom: 1rem;
    }

    .carousel {
        height: 60vh;
    }

    .carousel-inner .slide img {
        height: 100%;
        object-fit: cover;
    }

    .carousel-controls button {
        padding: 8px 16px;
    }
}

.lien {
    
    color: #3498db; /* Couleur du lien */
    text-decoration: none; /* Pas de soulignement */
}
    
.lien:hover {
    color: #2c3e50; /* Changement de couleur au survol */
    
</pre></body></html>