<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
   VARIABLES &amp; RESET
   ========================================================================== */
:root {
    --dark-gray: #292828;
    --purple: #B384A7;
    --dark-purple: #81657C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    text-decoration: none;
}

/* ==========================================================================
   BASE ELEMENTS
   ========================================================================== */
body {
    background-color: #f6f6f6;
}

a {
    color: var(--dark-purple);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--purple);
    text-decoration: underline;
}

hr {
    border: 1px solid var(--purple);
    width: 100%;
    max-width: 50px;
    margin: 10px auto;
}

h3 {
    color: var(--purple);
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* ==========================================================================
   ANIMATION
   ========================================================================== */
.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   LAYOUT &amp; CONTAINERS
   ========================================================================== */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--dark-gray);
}

.btn {
    background-color: var(--purple);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    transition: background-color 0.2s ease-in-out;
}

.btn-opposite {
    border: 1px solid var(--purple);
    color: var(--purple);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    transition: background-color 0.2s ease-in-out;
}

.btn:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--dark-purple);
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   HEADER &amp; NAVIGATION
   ========================================================================== */
#banniÃ¨re {
    text-align: center;
    background-color: #eccde3;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
}

/* ===== HEADER &amp; NAVIGATION ===== */

/* Version Desktop : le header est en colonne avec le logo centrÃ© en haut et la navigation en dessous */
.container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    background-color: #ffffff;
    margin-top: 20px;
    position: relative;
}

/* Le logo centrÃ© en haut (avec un espace sous le logo pour sÃ©parer du menu) */
#logoHeader {
    margin-bottom: 10px;
}

.menu {
    display: flex;
    gap: 30px;
    justify-content: center;
}


/* Le bouton toggle est masquÃ© en desktop */
#menu-toggle {
    display: none;
}

/* ===== Mobile (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
    /* RÃ©organisation du header en ligne */
    .container-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* Le logo se place Ã&nbsp; gauche sans marge infÃ©rieure */
    #logoHeader {
        order: 1;
        margin-bottom: 0;
    }

    /* Le toggle apparaÃ®t Ã&nbsp; droite */
    #menu-toggle {
        display: block;
        order: 2;
        background: none;
        border: none;
        font-size: 3em;
        color: var(--purple);
        cursor: pointer;
    }

    /* Le menu est masquÃ© par dÃ©faut et positionnÃ© en absolu sous le header */
    .menu {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        text-align: center;
        background-color: #ffffff;
        position: absolute;
        top: 40px; /* ajuster si nÃ©cessaire en fonction de la hauteur du header */
        left: 0;
        right: 0;
        padding: 5px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 20;
    }

    /* Affichage du menu quand il est actif */
    .menu.active {
        display: flex;
    }
}


/* Logo */
#logoGITE {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Desktop */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    margin: 0 10px;
    text-decoration: none;
    position: relative;
}

.menu a::after {
    text-decoration: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease-in-out;
}

.menu a:hover::after {
    text-decoration: none;
    width: 100%;
}

/* SÃ©lecteur de langue */
#language-selector {
    text-align: right;
    border: none;
    font-size: 16px;
    padding: 5px;
    background-color: transparent;
}

/* Toggle Button (Mobile) */
#menu-toggle {
    display: none;
}

/* ==========================================================================
   SECTIONS GENERALES (Les 3 Marmots, Quoi Faire, Contacts)
   ========================================================================== */
#les3gites,
#quoifaire,
#contacts {
    padding: 20px;
}

.titreLG,
.titreQF,
.titreContact {
    text-align: center;
    margin-bottom: 20px;
}

.txtLG,
.txtQF,
.texteContact {
    text-align: center;
    font-size: 1em;
    margin-bottom: 4em;
}

/* ==========================================================================
   SLIDESHOW &amp; GÃ®te CONTAINER
   ========================================================================== */
/* GÃ®te Container */
.gite-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: flex-start;
}

/* Slideshow */
.slideshow-overlay {
    position: relative;
    width: 50%;
    height: 400px;
    overflow: hidden;
    background-color: #f7f7f7;
    z-index: 1;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
}

/* Navigation pour slideshow */
.prevSlide,
.nextSlide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 2;
}

.prevSlide {
    left: 10px;
}

.nextSlide {
    right: 10px;
}

/* Colonne pour informations gÃ®te */
.colonne3G {
    width: 50%;
    padding: 10px;
    text-align: center;
}

.colonne3G .titreLG,
.colonne3G .txtLG {
    width: 100%;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .gite-container {
        flex-direction: column;
        width: 100%;
    }
    .slideshow-overlay,
    .colonne3G {
        width: 100%;
    }
}

.marge-haut {
    margin-top: 20px;
}

/* ==========================================================================
   ACCUEIL ET Banderolle
   ========================================================================== */
#accueil {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.banderolle {
    text-align: center;
    justify-content: center;
    padding: 2em;
    background-image: url("../images/fond.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.banderolle .titreAccueil {
    padding: 3em;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.75);
}

.titreAccueil {
    text-align: center;
    margin: 30px 0 10px;
}

.titreAccueil h3 {
    font-size: 1.8em;
    color: var(--purple);
    line-height: 1.2;
}

.titreAccueil hr {
    width: 50px;
    margin: 0 auto;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slides {
    display: flex;
    transition: transform 1s ease;
}

.slides img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgba(255, 255, 255, 1);
}

/* ==========================================================================
   TEXTES ET SECTION
   ========================================================================== */
.texteAccueil,
.textContainer {
    margin: 5em 2em;
    text-align: center;
}

/* RÃ¨gles par dÃ©faut pour le desktop */
.txtEtImgQuiSommesNous {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 4em;
}

/* Pour le desktop, on donne Ã&nbsp; l'image une largeur de 50% (vous pouvez ajuster selon vos prÃ©fÃ©rences) */
#imgQuiSommesNous {
    width: 50%;
    height: auto;
    align-self: flex-start;
    border-radius: 10px;
}

/* La zone texte peut occuper l'autre moitiÃ© */
.txtEtImgQuiSommesNous .textContainer {
    width: 50%;
    padding-right: 2em;
    margin-top: 0;
}

/* ==========================================================================
   MEDIA QUERIES POUR MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .txtEtImgQuiSommesNous {
        flex-direction: column;
        align-items: center;
    }
    #imgQuiSommesNous {
        width: 100%;
        margin-top: 1em;
    }
    .txtEtImgQuiSommesNous .textContainer {
        width: 100%;
        padding-right: 0;
    }
}



/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery img.wide {
    grid-column: span 2;
}

.gallery img.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* ==========================================================================
   MEDIA QUERIES POUR MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .banderolle {
        height: auto;
        padding: 1em;
        flex-direction: column;
    }
    .titreAccueil {
        padding: 1em;
        font-size: 1.4em;
    }
    .texteAccueil,
    .textContainer {
        margin: 2em 1em;
        font-size: 1em;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

@media (max-width: 480px) {
    .titreAccueil h3 {
        font-size: 1.2em;
    }
    a.btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* ==========================================================================
   SECTION "QUOI FAIRE"
   ========================================================================== */
.txtQF ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 15px;
}

#meteoWidget {
    text-align: center;
    margin-top: 20px;
}

/* ==========================================================================
   SECTION CONTACT
   ========================================================================== */
#map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

#contacts center {
    display: block;
    text-align: center;
}

.texteContact ul {
    list-style: disc inside;
    padding-left: 20px;
}

.texteContact img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

/* ==========================================================================
   FORMULAIRES &amp; OPTIONS DE CONTACT
   ========================================================================== */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

button[type="submit"] {
    padding: 10px;
    border: none;
    background-color: var(--purple);
    color: #fff;
    font-size: 1em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: var(--dark-purple);
}

/* Options de contact */
.choiceBtns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.choiceBtn {
    padding: 8px 16px;
    border: 2px solid var(--purple);
    background-color: transparent;
    border-radius: 20px;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.choiceBtn:hover {
    background: var(--purple);
    color: #fff;
}

/* Notification */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--purple);
    padding: 15px 30px;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.notification.show {
    bottom: 20px;
    opacity: 1;
}

/* ==========================================================================
   LIENS &amp; AUTRES
   ========================================================================== */
#telephone, #email {
    text-align: center;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
}

#logoFooter {
    flex: 1 1 200px;
}

#logoFooter img {
    max-width: 150px;
    height: auto;
}

#logoGroup {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#logoGroup img {
    max-width: 100px;
    height: auto;
}

#infoFooter {
    flex: 2 1 300px;
    text-align: right;
}

#infoFooter a {
    color: #ddd;
}

#infoFooter a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   MEDIA QUERIES â€“ RESPONSIVE
   ========================================================================== */

/* Global mobile adjustments (max-width: 600px) */
@media (max-width: 600px) {
    .container {
        max-width: 90%;
        margin: 20px auto;
        padding: 10px;
    }
    h2 {
        font-size: 1.8em;
        padding: 1.5em 0 1em;
    }
    .contact-section p {
        font-size: 1em;
    }
    form {
        max-width: 90%;
        padding: 0 10px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.9em;
    }
    button[type="submit"] {
        font-size: 0.9em;
        padding: 8px;
    }
    .choiceBtns {
        padding: 0 2em;
        flex-direction: column;
        gap: 10px;
    }
    .choiceBtn {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    #telephone img {
        width: 100%;
        max-width: 12em;
    }
    .notification {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Header &amp; menu mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* RÃ©organisation du header */
    .container-header {
        justify-content: space-between;
        align-items: center;
    }
    /* Le logo Ã&nbsp; gauche */
    #logoHeader {
        order: 1;
    }
    /* Toggle button visible Ã&nbsp; droite */
    #menu-toggle {
        display: block;
        order: 2;
        background: none;
        border: none;
        font-size: 3em;
        color: var(--purple);
        cursor: pointer;
    }
    /* Menu mobile cachÃ© par dÃ©faut */
    .menu {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        text-align: center;
        background-color: #fff;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        padding: 5px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 20;
    }
    /* Menu actif */
    .menu.active {
        display: flex;
    }
    /* Ajustement du container des sections "Qui Sommes-Nous" en mobile */
    #txtEtImgQuiSommesNous {
        flex-direction: column;
        text-align: center;
    }
}



.nav a span {
    position: relative; /* NÃ©cessaire pour positionner le pseudo-Ã©lÃ©ment */
    display: inline-block; /* Pour que le pseudo-Ã©lÃ©ment prenne la largeur du texte */
}

.nav span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #B384A7;
    transition: width 0.2s ease;
    transform: translateX(-50%);

}

.nav a:hover {
    color: #B384A7;
}

.nav a:hover span::after {
    width: 100%;

}

.actif {
    color: #B384A7;
}

.nav .actif span {
    position: relative;
}

.nav .actif span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}


</pre></body></html>