/*
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
*/

/* fraunces-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/fraunces-v38-latin-regular-mqmI6po.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fraunces-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/fraunces-v38-latin-600-AQmZ6pP.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/inter-v20-latin-regular-poxsSdI.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/inter-v20-latin-500-Uwgfwtt.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/inter-v20-latin-600-keCwlca.woff2") format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --color-bg: #F7F3EA;
    --color-text: #1B1B1B;
    --color-primary: #C56A4A;
    --color-accent: #1F3A2D;
    --color-surface: #E9F0EA;
    --color-border: #DDD6C8;

    /* Derived */
    --color-surface-2: #FFFFFF;
    --shadow: 0 12px 30px rgba(31, 58, 45, 0.10);
    --shadow-soft: 0 8px 18px rgba(31, 58, 45, 0.08);
    --radius-lg: 20px;
    --radius-md: 14px;

    /* Typography */
    /*
    --font-title: 'Fraunces', serif;
    --font-title: 'DM Serif Display', serif;
    --font-title: 'Alfa Slab One', serif;
    --font-title: 'Yeseva One', serif;
    --font-title: 'Abril Fatface', serif;
    */
    --font-title: 'Fraunces', serif;
    --font-ui: 'Inter', sans-serif;

    /* Focus */
    --focus: 0 0 0 3px rgba(197, 106, 74, 0.35), 0 0 0 1px rgba(31, 58, 45, 0.55);

    /* Layout */
    --header-h: 64px;
    --header-h-lg: 78px;
}

body {
    font-family: var(--font-ui);
    background-color: var(--color-bg);
    color: var(--color-text);
}

body h1,
body .public-hero__title {
    /*
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    */
    font-family: var(--font-title);
    font-variation-settings:
        "wght" 900,
        "SOFT" 0,
        "opsz" 144;
    color: var(--color-accent);
}

body h2, body h3, body h4 {
    font-family: var(--font-title);
    color: var(--color-accent);
}

body b {
    font-weight: 750;
}

body main{ padding-top: var(--header-h); }
@media (min-width: 992px){ body main{ padding-top: var(--header-h-lg); } }

body header {
    background-color: rgba(247, 243, 234, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-h);
    display: flex;
    align-items: stretch;
    transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
@media (min-width: 992px){ body header{ height: var(--header-h-lg); } }
body header.is-scrolled{
    background: rgba(247, 243, 234, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(221, 214, 200, 0.9), var(--shadow-soft);
}
body header nav {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
@media (min-width: 992px){ body header nav{ height: var(--header-h-lg); gap: 18px; } }

body .navbar .navbar-brand {
    font-family: var(--font-title);
    font-weight: 600;
    display: grid;
    line-height: 1.1;
    text-decoration: none;
    color: var(--color-text);
    min-width: 220px;
}
body .navbar-brand:hover {
    color: var(--color-text);
}
body .navbar-brand .name {
    font-weight: 700;
    font-size: 0.98rem;
}
body .navbar-brand .tagline {
    font-size: 0.84rem;
    color: rgba(27,27,27,0.72);
}
body #mainNav {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2px;
    background: rgba(247, 243, 234, 1);
}
@media (min-width: 992px){ body #mainNav { border-bottom: none; background: transparent; } }
body .navbar-nav .nav-link {
    padding: 10px 12px;
/*    border-radius: 999px;*/
    text-decoration: none;
    color: rgba(27,27,27,0.85);
    border: 1px solid transparent;
    transition: background .16s ease, border-color .16s ease, color .16s ease;
    background: transparent;
}
body .navbar-nav .nav-link:hover{
    background: rgba(233,240,234,0.9);
/*    border-color: rgba(221,214,200,0.9);*/
    color: var(--color-text);
}
body .navbar-nav .nav-link.active{
/*
    background: rgba(233,240,234,0.9);
 */
    font-weight: bold;
    color: var(--color-text);
}
body .navbar-nav .dropdown-menu.show {
    display: block;
}
body .navbar-nav .dropdown-menu {
    background: rgba(247, 243, 234, 1);
    display: none;
    list-style: none;
    background-color: unset;
    border: unset;
    margin-left: 10px;
}
@media (min-width: 992px){ body .navbar-nav .dropdown-menu {
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 16px;
    margin-left: -10px;
    background: rgba(247, 243, 234, 1);
} }


body .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

body .btn-primary:hover {
    background-color: #162a21;
}

body .hero {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
    text-align: center;
}

body .hero-tagline {
    max-width: 600px;
    margin: 1rem auto 2rem;
}

body .activities {
    padding: 4rem 0;
}

body .activity-card {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
}

body footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
    background-color: var(--color-surface);
}

/* Responsive BG */
.responsive_bg_media{
    position:relative;
    overflow:hidden;
    height:100%;
    background-repeat:no-repeat;
    background-size:cover;
    background-attachment:fixed;
    background-position:center
}
@media only screen and (device-width >= 768px)and (device-width <= 1024px)and (orientation: landscape)and (min-resolution: 2dppx){
    .responsive_bg_media {
        background-attachment:scroll
    }
}
@media screen and (max-width: 1000px) {
    .responsive_bg_media {
        position:relative;
        height:400px;
        background-attachment:scroll
    }
}
@media screen and (max-width: 650px) {
    .responsive_bg_media {
        height:300px
    }
}
.responsive_bg {
    height: 75vh;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 1000.1px) {
    .responsive_bg {
        animation-name: fade !important;
        transform: none !important;
    }
}
@media screen and (max-width: 1000px) {
    .responsive_bg {
        height: auto;
    }
}
.responsive_bg_content{
    width:400px;
    max-width:100%;
    border-radius:10px;
    padding:40px 50px;
    position:absolute;
    bottom:50px;
    background-color: color-mix(in srgb, var(--color-surface) 70%, transparent);
}
@media screen and (min-width: 1000.1px){
    .responsive_bg_content{
        overflow:auto;
    }
}
@media screen and (max-width: 1000px){
    .responsive_bg_content{
        width:100%;
        position:initial;
        bottom:0;
        left:0;
        right:0;
        padding:20px;
        border-radius:0
    }
}
.responsive_bg_content--left-bottom{
    left:15%
}
.responsive_bg_content__title{
    margin-bottom:20px;
}

/* Design */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 1.4;
    position: relative;
    padding: 0;
    margin: 0
}

body a, body input, body textarea, body button, body select {
    outline: 0
}

body a:hover, body a:focus, body input:focus, body textarea:focus, body button:focus, body select:focus {
    outline: 0 !important;
    text-decoration: none !important
}

body a, body a:link, body a:visited, body a:focus, body a:hover {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-link)
}

body input, body textarea {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

input[type="search"], input[type="url"], input[type="number"], input[type="password"], input[type="file"], .div-form-booking .div-comment > div > textarea {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*background: none;*/
    border: 1px solid #f1f1f1;
    /*background-color: var(--color-bg-1);*/
    color: var(--color-text);
    font-size: 14px;
    font-family: var(--font-text)
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

body textarea {
    resize: none;
    padding: 12px;
    height: 140px;
    vertical-align: middle;
    background: none;
    border: 1px solid #f1f1f1;
    background-color: var(--color-bg-1);
    color: var(--color-text);
    font-size: 14px
}

body select {
    color: var(--color-text);
    font-family: var(--font-text);
    font-size: 14px
}

input::-webkit-input-placeholder {
    color: var(--color-text)
}

input:-moz-placeholder {
    color: var(--color-text)
}

input::-moz-placeholder {
    color: var(--color-text)
}

input:-ms-input-placeholder {
    color: var(--color-text)
}

textarea::-webkit-input-placeholder {
    color: var(--color-text)
}

textarea:-moz-placeholder {
    color: var(--color-text)
}

textarea::-moz-placeholder {
    color: var(--color-text)
}

textarea:-ms-input-placeholder {
    color: var(--color-text)
}

::-moz-selection {
    color: var(--color-text-white);
    background-color: var(--color-text)
}

::selection {
    color: var(--color-text-white);
    background-color: var(--color-text)
}

code, kbd, pre, samp {
    font-size: inherit
}

code {
    letter-spacing: .015em;
    background-color: var(--color-bg-2)
}

img {
    max-width: initial;
    height: auto;
    vertical-align: middle;
    border: 0
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    line-height: 1.3em;
    margin: 0;
/*    color: var(--color-title);*/
    font-family: var(--font-title)
}

h1, .h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.1em !important;
    color: var(--color-accent);
}

h2, .h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.1em !important;
}

h3, .h3, h2.h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
}

h4, .h4, h3.h4 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    text-transform: none;
}

h5, .h5 {
    font-size: 16px;
    font-weight: 600
}

h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: inherit
}

@media (max-width: 480px) {
    body {
        font-size: 14px
    }

    h1, .h1 {
        font-size: 30px
    }

    h2, .h2 {
        font-size: 24px
    }

    h3, .h3 {
        font-size: 20px
    }

    h4, .h4 {
        font-size: 18px
    }

    h5, .h5 {
        font-size: 14px
    }
}



.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--color-primary) !important;
}
#activityCarousel .carousel-item {
    height: 400px;
}

#activityCarousel .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.labyrinth-strip-shell {
    position: relative;
}

.labyrinth-strip {
    display: flex;
    gap: .5rem;

    height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.labyrinth-strip::-webkit-scrollbar { display: none; }

.labyrinth-strip__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 82vw;        /* mobile: 1 visible */
    max-width: 520px;
}
.labyrinth-strip__item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
    display: block;
}

.labyrinth-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    /* optionnel: un fond discret */
    backdrop-filter: blur(4px);
}
.labyrinth-nav.prev { left: .5rem; }
.labyrinth-nav.next { right: .5rem; }

/* desktop: ~4 visibles */
@media (min-width: 768px) {
    .labyrinth-strip { height: 300px; }
    .labyrinth-strip__item { width: 280px; }
}


.activity-card {
    display: flex;
    flex-direction: column;
}

.activity-card p {
    margin-top: auto;
}


.event-media-layout { display: flex; gap: 1.5rem; align-items: flex-start; } .event-figure { flex: 0 0 220px; /* largeur fixe sur desktop */ margin: 0; order: 0; /* image en premier = à gauche */ } .event-img { width: 100%; border-radius: 8px; } .event-text { flex: 1; order: 1; min-width: 0; /* évite le débordement flex */ } @media (max-width: 768px) { .event-media-layout { flex-direction: column; } .event-figure { order: 1; /* image après le texte sur mobile */ flex: none; width: 100%; text-align: center; } .event-text { order: 0; /* texte en premier sur mobile */ } }
/* CSS */ .ferme-cols { display: flex; gap: 1.5rem; align-items: flex-start; } .ferme-cols p { flex: 1; /* les deux <p> se partagent l'espace à égalité */ margin: 0; } @media (max-width: 768px) { .ferme-cols { flex-direction: column; /* empilés sur mobile */ } }
