<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Variables de couleur et police */
:root {
    --bg-color: #FFFFFF; /* Blanc */
    --text-color: #1a1a1a; /* Noir doux */
    --primary-accent-color: #E67E22; /* Orange/Ocre */
    --secondary-accent-color: #D35400; /* Orange plus fonc&amp;eacute; pour hover/active */
    --border-color: #e0e0e0;
    --font-family-main: 'Libre Franklin', sans-serif;
    --header-height: 70px;
}

/* R&amp;eacute;initialisation et styles de base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base pour rem */
}

body {
    font-family: var(--font-family-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a:hover, .main-navigation a:focus {
    color: var(--secondary-accent-color)!important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px;
}

/* En-t&amp;ecirc;te */
.site-header {
    background-color: var(--bg-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    max-height: 65px; /* Ajustez selon la taille de votre logo */
    width: auto;
}

/* Navigation principale */
.main-navigation .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-navigation .nav-list li {
    margin: 0px 10px;
    text-align: center;
    vertical-align: middle;
    display: flex;
}

.main-navigation .nav-list a {
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 5px;
    position: relative;
}

.main-navigation .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent-color);
    transition: width 0.3s ease;
}

.main-navigation .nav-list a:hover::after,
.main-navigation .nav-list a.active::after {
    width: 100%;
}
.main-navigation .nav-list a.active {
    color: var(--primary-accent-color);
    font-weight: bold;
}


/* S&amp;eacute;lecteur de langue */
.language-switcher {
    position: relative;
}

.current-lang-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
}
.current-lang-btn:hover {
    background-color: #dbdbdb;
}

.lang-flag {
    width: 20px;
    height: auto;
    margin-right: 8px;
    border: 1px solid #ccc;
}
.arrow-down {
    margin-left: 5px;
    font-size: 0.7em;
}

.lang-dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none; /* Cach&amp;eacute; par d&amp;eacute;faut, affich&amp;eacute; par JS */
    min-width: 100px;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li a {
    display: flex; /* Changed to flex for alignment */
    align-items: center; /* Vertically align items */
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.lang-dropdown li a:hover {
    background-color: #f0f0f0;
    color: var(--primary-accent-color);
}


/* Menu burger pour mobile */
.menu-toggle {
    display: none; /* Cach&amp;eacute; sur desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Au-dessus de la nav */
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}


/* Styles pour les sections de page */
.hero-section {
    background-color: #f8f8f8; /* Couleur de fond l&amp;eacute;g&amp;egrave;rement diff&amp;eacute;rente pour la section h&amp;eacute;ro */
    padding: 60px 0;
    text-align: center;
    background-size: cover;
    background-position: center center;
    color: var(--bg-color); /* Texte blanc sur image de fond */
    position: relative;
    min-height:75vh;
}
.hero-section::before { /* Overlay pour la lisibilit&amp;eacute; du texte sur l'image */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.25); /* Noir semi-transparent */
}
.hero-section .container {
    position: relative; /* Pour que le contenu soit au-dessus de l'overlay */
    z-index: 1;
}


.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background-color: var(--primary-accent-color);
    color: var(--bg-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover, .btn:focus {
    background-color: var(--secondary-accent-color);
    color: var(--bg-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-accent-color);
    border: 2px solid var(--primary-accent-color);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-accent-color);
    color: var(--bg-color);
}


.section {
    padding: 60px 0;
}
.section.bg-light {
    background-color: #f9f9f9;
}

.imgdb{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
    font-weight: 700;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-accent-color);
    margin: 10px auto 0;
}


.canyon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.canyon-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.canyon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cache{
    width: 100%;
    background-color: #ffffff;
    height: 35px;
    margin-top: -46px;
    z-index: 20;
    position: relative;
}

.canyon-card img.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-emoji {
    text-align: center;
    width: 100%;
    font-size: 50px;
    margin-bottom: -20px;
}

.canyon-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.canyon-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.canyon-card-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.canyon-card-content .btn {
    align-self: flex-start; /* Aligne le bouton en bas &amp;agrave; gauche */
    margin-top: auto; /* Pousse le bouton en bas si l'espace le permet */
    width: 100%;
    text-align: center;
}

/* Page de canyon sp&amp;eacute;cifique */
.canyon-detail-header {
    text-align: center;
    margin-bottom: 40px;
}
.canyon-detail-header h1 {
    font-size: 2rem;
}

.subtitle{font-size: 1.2rem}

.canyon-content {
    font-size: 1.1rem;
}
.canyon-content p {
    margin-bottom: 20px;
}
.canyon-content img.inline-image {
    max-width: 100%;
    height: auto;
    max-height: 75vh;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.inline-image.float-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px; /* Espace sous l'image flottante */
    max-width: 40%; /* Ajustez selon vos besoins */
}
.inline-image.float-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    max-width: 40%;
}
/* Clearfix pour les &amp;eacute;l&amp;eacute;ments flottants */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


/* Carrousel simple */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative; /* Pour le texte superpos&amp;eacute; si besoin */
}

.carousel-item img {
    width: 100%;
    height: auto; /* ou une hauteur fixe, ex: 500px et object-fit: cover */
    /*max-height: 600px;*/
    aspect-ratio: 3/2;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control:hover {
    background-color: rgba(0,0,0,0.7);
}

.carousel-control.prev {
    left: 15px;
}

.carousel-control.next {
    right: 15px;
}

/* Barre de r&amp;eacute;servation fixe en bas */
.fixed-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #dbdbdb;
    color: var(--text-color);
    padding: 15px 0;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.fixed-booking-bar p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.fixed-booking-bar .btn {
    margin-left: 15px;
    padding: 10px 20px;
}

/* Pied de page */
.site-footer-bottom {
    background-color: var(--text-color);
    color: #ccc; /* Texte plus clair sur fond sombre */
    padding: 5px 0;
    text-align: center;
    font-size: 0.8rem;
}

.site-footer-bottom a {
    color: #fff;
}
.site-footer-bottom a:hover {
    color: var(--primary-accent-color);
}

/* Animations au d&amp;eacute;filement */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ptext{
text-align:center; margin: 0 auto 30px auto;}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .inline-image.float-left, .inline-image.float-right {
        float: none;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    .cache{
        margin-top: -50px;
    }

    .header-container {
        /* Permet au logo de prendre moins de place et au menu d'&amp;ecirc;tre &amp;agrave; droite */
    }

    .menu-toggle {
        display: block; /* Afficher le burger */
        order: 3; /* Mettre le burger apr&amp;egrave;s le s&amp;eacute;lecteur de langue si besoin */
    }

    .main-navigation {
        order: 2; /* Placer la nav avant le s&amp;eacute;lecteur de langue si besoin */
    }
    
    .main-navigation .nav-list {
        display: none; /* Cach&amp;eacute; par d&amp;eacute;faut */
        position: absolute;
        top: var(--header-height); /* Sous l'en-t&amp;ecirc;te */
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
    }

    .main-navigation .nav-list.is-open {
        display: flex; /* Affich&amp;eacute; quand le menu est ouvert */
    }

    .main-navigation .nav-list li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .main-navigation .nav-list a {
        display: block;
        padding: 0px 10px;
        width: 100%;
    }
    .main-navigation .nav-list a::after { /* Ajustement pour le soulignement */
        left: 50%;
        transform: translateX(-50%);
    }


    .language-switcher {
        order: 1; /* Placer le s&amp;eacute;lecteur de langue en premier dans le flux mobile si besoin */
        margin-right: 10px; /* Espace entre s&amp;eacute;lecteur et burger */
    }
    .lang-dropdown {
        /* Ajuster la position pour ne pas &amp;ecirc;tre coup&amp;eacute;e */
        min-width: 120px; /* S'assurer qu'il y a assez de place */
    }


    .fixed-booking-bar {
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .fixed-booking-bar p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .fixed-booking-bar .btn {
        margin-left: 0;
        width: 80%;
        max-width: 250px;
    }

    .canyon-grid {
        grid-template-columns: 1fr; /* Une colonne sur mobile */
    }
}

/* Styles pour le menu burger ouvert */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}
.search-result-item {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
}
.search-result-item h3 {
    margin-top: 0;
    font-size: 1.6rem;
}
.search-result-item h3 a {
    color: var(--text-color);
    text-decoration: none;
}
.search-result-item h3 a:hover {
    color: var(--primary-accent-color);
}
.search-result-item p {
    margin-bottom: 15px;
}
.search-result-item .result-link {
    font-weight: bold;
    text-decoration: none;
}</pre></body></html>