@charset "UTF-8";

/* CSS Document */
*,
html,
body,
section,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin: 0;
}

/* Firefox specific rule
*/
@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}

::selection {
    background: #D8D6D6;
}

header {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 20;
}

/* - -- - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - */


/* ----------------------------------------
   BASE RESET & GLOBAL SETTINGS
---------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
section,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100%;
    margin: 0;
}

body.modal-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

html {
    scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;

}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 450px);
    flex: 1;
    overflow: hidden;
    padding-bottom: 100px;/*important*/
}

@media (min-width: 868px) {
    main {
        background-image: url('../img/icons/bg-1.svg');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60vw;
    }
    main.fond-voile {
      background-image: url('../img/icons/bg-voile.svg');
      background-repeat: no-repeat;
      background-position: top;
      background-size: 70vw;
  }
}


@media (max-width: 868px) {
    .fixed-bg {
        overflow: hidden;
    }

    .fixed-bg::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 150%;
        height: 150%;
        background-image: url('../img/icons/bg-1.svg');
        background-repeat: no-repeat;
        background-position: top center;
        z-index: -100;
        pointer-events: none;
    }

    main.fond-voile .fixed-bg::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/icons/bg-voile.svg');
        background-repeat: no-repeat;
        background-position: center;
        z-index: -100;
        pointer-events: none;
    }
}

:root {
    --orange: #F57B64;
    --brown: #735E58;
    --black-brown: #2E2B2B;
    --gray: #E6DFDC;
    --gray-2: #E8E0DC;
    --chalk: #f1f0ef;
    --chalk-light: #f6f4f1;
    --black: #4D3F3C;
    --cream: #f9f7f5;
    --white: #ffffff;
    --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.shadow-5 {
  box-shadow: 0 1px 1px rgba(0,0,0,0.1),
             0 2px 2px rgba(0,0,0,0.1),
             0 4px 4px rgba(0,0,0,0.1),
             0 8px 8px rgba(0,0,0,0.1);
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: #2c2c2c;
}

/* ----------------------------------------
   HEADER
---------------------------------------- */
.hero {
    background: url("../img/photos/img-1.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 30vh;
}

.hero h1 {
    font-family: "Abril Fatface", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-weight: 400;
    font-size: 2.5em;
    text-transform: none;
    color: var(--white);
    margin: 0 0 0;
}

.hero p {
    font-family: "Edu QLD Hand", cursive;
    font-optical-sizing: auto;
    text-transform: none;
    font-size: 1.55rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 2;
    text-transform: none;
    color: var(--white);
    margin-top: 10px;
}

@media (max-width: 668px) {

    .hero h1 {
        font-size: 8.5vw;
    }

    .hero p {
        font-size: 1.3em;
        padding: 0 10%;
        line-height: 1.35;
    }
}

#gonnaBeOnTheBottom {
    position: absolute;
    bottom: 5vh;
    display: inline-block;
    text-align: center;
}

#gonnaBeOnTheBottom a {
    font-family: 'barlow', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 1.3em;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#gonnaBeOnTheBottom a:hover {
    font-weight: 700;
    letter-spacing: 5px;
}

.hero-logo {
    width: 40vw;
    margin-bottom: 50px;
    pointer-events: none;
}

.sub-header {
    width: 100%;
    background: var(--brown);
    padding: 10px 0;
    margin: 0 auto 0;
    padding: 15px;
}

.sub-header p {
    font-size: 1.55em;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 1px;
}

@media (max-width: 668px) {
    header h1 {
        font-size: 1.7em;
    }

    header p,
    .sub-header p {
        font-size: 1.4em;
    }

    .hero-logo {
        width: 80vw;
    }
}

.site-header {
    padding: 1rem;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0 0 50px;
}

.site-header-logo {
    width: 300px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.site-header-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 668px) {
    .site-header {
        padding: 1rem;
        height: 120px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .site-header-logo {
        max-width: 190px;
    }
}

/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h1 {
    font-family: "Abril Fatface", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    text-align: center;
    font-size: 6.5vw;
    line-height: 1.1;
    text-transform: none;
    color: var(--orange);
}

h2 {
    font-family: "Abril Fatface", sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 2.85em;
    line-height: 1;
    text-transform: none;
    color: var(--brown);
    margin: 0 0 20px;
    letter-spacing: 0;
}

h3 {
    font-family: 'Barlow', sans-serif;
    text-align: left;
    font-weight: 600;
    font-size: 1.35em;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 0;
    margin: 10px 0 0;
}

h4 {
    text-align: inherit;
    font-size: 1.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 50px 0 15px;
}

#cafe-voile h2 {
    font-family: "Abril Fatface", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    text-align: center;
    font-size: 5vw;
    line-height: 1.1;
    text-transform: none;
    color: var(--white);
}

#cafes h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--brown);
    margin: 0 0 20px;
    letter-spacing: 30px;
    text-align: center;
}

#cafes h4 {
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    text-transform: none;
    font-size: 1.65em;
    color: var(--black);
    font-weight: 300;
    margin: 10px 0 5px;
    line-height: .85;
}

h5 {
    text-align: inherit;
    font-family: "Edu QLD Hand", cursive;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 1.2;
    text-transform: none;
    color: var(--brown);
    margin: 50px 0 10px;
}

h6 {
    text-align: inherit;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1.2;
    text-transform: none;
    color: var(--orange);
    padding-top: 25px;
}

@media (max-width: 668px) {
    h1 {
        font-size: 2.7em;
        margin-left: 0;
    }

    h2 {
        font-size: 1.8em;
        line-height: 1.4;
        letter-spacing: 0;
    }

    h3 {
        font-size: 1.2em;
        margin: 25px 0 10px;
    }


    #cafes h1 {
        font-size: 2.75em;
        margin: 0 0 0;
        text-align: center;
        margin-left: -22px;
    }

    #cafes h2 {
        font-size: 1.2em;
        text-align: center;
        letter-spacing: 20px;
    }

    #cafe-voile h2 {
        font-size: 3em;
    }

    #cafes h4 {
        line-height: 1.35;
        font-size: 1.15em;
    }

    h6 {
        font-size: 1.15em;
        line-height: 1.2;
        margin: 10px 0 5px;
    }

}

.content p,
p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
}

p:last-child,
.content p:last-child {
    margin-bottom: 0;
}

.content i {
    font-size: 25px;

}

@media (max-width: 668px) {
    .content p,
    p {
        font-size: 18px;
        line-height: 1.6;
        text-align: left;
    }
}

.text-centered{
  text-align: center;
}

#cafe-voile p {
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
}
@media (max-width: 668px) {
    #cafe-voile p{
        font-size: 18px;
        line-height: 1.6;
    }
}
#cafes a {
    text-decoration: none;
    font-weight: 400;
    font-size: .85em;
    color: var(--brown);
}

#cafes a:hover {
    color: var(--ora, ge);
}

.barlow{
  font-family: 'Barlow', sans-serif;
}

.barlow-uppercase{
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.notre-carte p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--brown);
    margin: 20px 0 30px;
    letter-spacing: 30px;
}

.prix-kg {
    font-size: .75em;
    font-weight: inherit;
    margin-left: 5px;
    color: var(--black);
}

.blinking-text {
    animation: blink 2s infinite;
    opacity: 1;
    animation-timing-function: ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}





.thick-underline {
    border-bottom: 1px solid var(--gray);
    box-shadow: inset 0 -1px 0 var(--orange);
    color: rgba(15, 35, 59, 0.55);
    transition: all .25s ease-in-out;
    padding: 0px 2px 0 2px;
}

.thick-underline:hover {
    background-color: var(--orange);
}

.highlighted {
    box-shadow: inset 0 -.45em .85em var(--gray);
    color: black;
    transition: box-shadow 0.25s cubic-bezier(0.32, 0.75, 0.25, 1);
}

.highlighted:hover {
    box-shadow: inset 0 -1.15em 0 var(--gray);
}

.underline-slide,
.background-slide {
    color: var(--gray);
    position: relative;
    padding-bottom: 2px;
}

.underline-slide:after,
.background-slide:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: var(--gray);
    width: 0%;
    display: block;
    transition: width .5s ease-in-out;
}

.underline-slide:hover,
.background-slide:hover {
    color: black;
}

.underline-slide:hover:after,
.background-slide:hover:after {
    width: 100%;
}



@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.orange {
    color: var(--orange);
}

.justify {
    text-align: justify;
}

.text-centered,
#text-centered p {
    text-align: center;
}

@media (max-width: 768px) {

    .text-centered,
    #text-centered p {
        text-align: left;
    }
}


.bold {
    font-weight: 500;
}

.strong {
    font-weight: 800;
}

.white {
    color: var(--white);
}

.brown {
  color: var(--brown);
}
.blue{
  color: #2a6c91;
}

.black {
  color: var(--black);
}

.display_container h3 {
    margin: 15px 0 5px;
}

.display_container h3:first-child {
    margin: 0 0 5px;
}

.display_container p {
    line-height: 1.1;
}

.fade-in-slide-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlide 1s ease-out forwards;
    animation-delay: 0.5s;
}

.fade-in-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease-out forwards;
    animation-delay: 0.58s;
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ----------------------------------------
   LINKS
---------------------------------------- */
.linked {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--brown);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.linked::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--orange);
    transition: all 0.3s ease;
    pointer-events: none;
}

.linked:hover::before {
    bottom: 1px;
    background-color: var(--brown);
}

.linked:hover {
    color: var(--orange) !important;
}

@media (max-width: 668px) {
    .linked {
        font-size: 18px;
        margin-top: 15px;
    }

    .linked::before {
        bottom: -2px; /* Remonté de 2px */
    }

    .linked:hover::before {
        bottom: 2px;
        background-color: var(--orange);
    }
}


/* ----------------------------------------
   CONTENT
---------------------------------------- */
.content {
    max-width: 1400px;
    width: 90%;
    padding: 0 0;
    margin: 100px auto 70px;
}

@media (max-width: 668px) {
    .content {
        padding: 30px 0;
        margin: 0 auto;
    }
}

.content:last-child {
    max-width: 1400px;
    width: 90%;
    padding: 0 0;
    margin: 100px auto 0;
}

 #list ul {
    list-style: none;
}

  #list ul li {
    list-style: none;
    position: relative;
    padding-left: .8em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 22px;
    line-height: 1.6;
}

@media (max-width: 668px) {
  #list ul {
     margin: 0;
 }
    #list ul li {
      padding-left: -10px;
        font-size: 18px;
        line-height: 1.6;
        margin-top: 10px;
    }
    #list ul li:first-child {
     margin-top: 0;
 }
}

    #list ul li::before {
    content: "+";
    position: absolute;
    left: -10px;
    color: var(--orange);
    font-weight: 700;
}

.content-coffee {
    max-width: 1400px;
    width: 90%;
    margin: 70px auto 70px;
    padding: 0;
}

.content:last-child {
    max-width: 1400px;
    width: 90%;
    padding: 0 0;
    margin: 50px auto 0;
}

@media (max-width: 668px) {
    .content-coffee {
        padding: 0 0;
        margin: 0 auto;
    }
}
.mini-title{
  font-family: 'barlow', sans-serif;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 20px;
  margin: 10px 0 20px;
  color: var(--brown);
}
@media (max-width: 668px) {
  .mini-title{
    font-size: 15px;
  }
}


/* ----------------------------------------
   CONTAINER 2 BLOCS
---------------------------------------- */

.content-split {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    margin:50px auto;
}

@media (max-width: 668px) {
  .content-split {
      margin: 50px auto ;
  }
}


@media (max-width: 868px) {
    .content-split {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-split img {
    border-radius: 5px;
}


@media (max-width: 868px) {
    .xs-no {
        display: none;
    }

}

@media (min-width: 668px) {
    .xs-yes {
        display: none;
    }
}

.citation-image {
    position: relative;
    height: 550px;
    background-image: url('../img/photos/coffee-2-xs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;
}

.citation-image .overlay-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    /* Prend toute la hauteur du parent */
    padding: 50px 20px 0;
}

.citation-image .overlay-text p {
    font-family: "Edu QLD Hand", cursive;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    font-size: 1.3em;
    line-height: 1.4;
    margin: 0;
    /* Supprime le margin-top inutile */
}


.content-split-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 3.5em;
}

@media (max-width: 968px) {
    .content-split-form {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.content-split-form p {
    text-align: left;
}

.parent {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

img.responsive {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.content-split-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 750px;
}

@media (max-width: 1200px) {
    .content-split-1 {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0;
    }
}

.feature-panel__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px;
}

.feature-panel__content h2 {
    font-size: 2.0em;
}

.content-split p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 100;
    font-size: 1.45em;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.content-split p::after {
    content: "";
    display: block;
    width: 30%;
    /* largeur du filet */
    height: 3px;
    background-color: #fff;
    margin: 15px auto 0;
    /* centre horizontalement + espace au-dessus */
}

@media (max-width: 668px) {
    .content-split p {
        font-size: 1.45em;
    }

    .feature-panel__content {
        padding: 80px 30px;
    }
}

.text-container{
  background: rgba(166,128,94,0.2);
  padding: 30px;
  border-radius: 20px;
}
/* ----------------------------------------
   CONTACT
---------------------------------------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    margin: 50px 0 0;
}


.contact a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.contact a:hover,
a:hover {
    color: var(--brown);
}

@media (max-width: 768px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact p {
        font-size: 18px;
        text-align: center;
    }
}

.bg-coffee{
  background-image: url('../img/photos/footer-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ----------------------------------------
   MAP
---------------------------------------- */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ----------------------------------------
   FOOTER
---------------------------------------- */
footer {
    width: 100%;
    min-height: 450px;
    background: #1F1D19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    z-index: 10;
    background: var(--black-brown);
}


.footer_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    width: 90%;
    margin: auto;
    padding: 20px 0;
}

footer p {
    font-weight: 200;
    color: #fff;
    font-size: 16px;
    text-align: left;
    line-height: 2;
}

footer a {
    font-weight: 800;
    color: var(--orange);
    font-size: inherit;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(.33, .66, .66, 1);
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--white);
    background: var(--orange);
}

.footer-split a[href^=tel] {
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
}

.footer-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    top: 1px; /* évite un petit espace parfois visible */
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}






a {
    -webkit-tap-highlight-color: transparent;
}

.footer-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4em;
    width: auto;
    align-items: start;
    /* Force l'alignement en haut */
    margin: 20px 0;
    border-top: 1px solid rgba(229,221,214,0.39);
    border-bottom: 1px solid rgba(229,221,214,0.39);

    padding: 10px 0;
}

.footer_wrapper img {
    height: 90px;
    margin-bottom: 0;
    pointer-events: none;
}

.footer-logo {
    max-width: 250px;
}

#social {
    list-style: none;
    display: flex;
    justify-content: flex-start;
}

#social i {
    padding-right: 20px;
    color: var(--white);
    font-size: 2em;
}

#social i:hover {
    color: var(--orange);
}

#social a,
#social a:hover {
    box-shadow: none;
    border-bottom: none;
    background: none;
    background: transparent!important!
}

@media (max-width: 768px) {
    .footer-split {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .footer_wrapper img {
        height: 50px;
    }

    footer p {
        text-align: center;
    }

    #social {
        list-style: none;
        display: flex;
        justify-content: center;
    }
}

.no-tel span {
    display: inline;
}

/* ----------------------------------------
   JARALLAX
---------------------------------------- */
.jarallax {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    width: 100vw;
    background: var(--brown);
    z-index: 0;
    margin-top: 70px;
}

.jarallax p {
    font-family: "Edu QLD Hand", cursive;
    font-optical-sizing: auto;
    text-transform: none;
    text-align: center;
    font-size: 2.2em;
    color: var(--black);
    font-weight: 300;
    margin: 0 10vw;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .jarallax {
        min-height: 70vh;
    }
}

@media (max-width: 668px) {
    .jarallax p {
        font-size: 1.55em;
        margin: 0 20px;
    }

    .jarallax_picto {
        height: 40px;
        margin-top: 30px;
    }
}

.jarallax_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------
   SETTINGS / UTILITIES
---------------------------------------- */
hr.style1 {
    width: 100%;
    background-color: #bfbfb8;
    border: none;
    height: 1px;
    margin: 100px 0;
    opacity: .6;
}

@media (max-width: 668px) {
    hr.style1 {
        margin: 50px 0;
    }
}

hr.style2 {
    width: 100%;
    background-color: #bfbfb8;
    border: none;
    height: 1px;
    margin: 50px 0;
    opacity: .6;
}

hr.style3 {
    width: 100%;
    background-color:rgba(166,128,94,0.2);
    border: none;
    height: 1px;
    margin: 15px 0;
    opacity: .6;
}

.centered_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* centre les éléments verticalement dans le conteneur */
}

.centered_container h2 {
    font-weight: 500;
    font-size: 26px;
    margin: 0 50px;
}
/*
.centered_container a {
    color: var(--brown) !important;
    font-size: 35px;
    font-weight: 400 !important;
}

@media (max-width: 668px) {
  .centered_container a {
      font-size: 25px;
  }
}

.centered_container a:hover {
    color: var(--orange) !important;
}*/


.ti-location-pin,
.ti-comments-smiley,
.ti-truck {
    margin-right: 6px;
}


.ti-time {
    margin-right: 10px;
    color: var(--orange);
    font-size: 18px !important;
}

.flip-horizontal {
    transform: scaleX(-1);
    display: inline-block;
    /* important pour que transform fonctionne correctement */
}

.margin100 {
    margin-top: 100px;
}

.margin50 {
    margin-top: 50px;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}
.margin-top-50{
  margin-top: 50px;
}
.display_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5%;
}

.display_container-left p {
    text-align: center;
}

.bg-brown {
    background-color: #4A4040;
}

.bg-black {
    background-color: var(--black-brown);
}

.bg-dark {
    background-color: #3B3535;
}



.bg-gray {
    background-color: #8A7B72;
}

.height120 {
    height: 120px;
}

.height250 {
    height: 250px;
}

.height350 {
    height: 350px;
}


.logos-bio {
    height: 100px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .logos-bio {
        height: 80px;
    }

    .height250 {
        height: 200px;
    }
}

.black {
    color: var(--black) !important;
}

.orange {
    color: var(--orange) !important;
}
.gray-1 {
    color: #302A26;
}

.split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 1em 0;
    pointer-events: none;
}

.centered-container {
    display: grid;
    place-items: center;
    margin: auto;
}

.select-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    margin: 50px 0;
}

.select-container div {
    margin: 50px 25px 0;
}
@media (max-width: 768px) {
  .select-container div {
      margin: 0 25px 0;
  }
}

.split h3,
.split p {
    text-align: left;
}

.split h3 {
    color: var(--black);
    font-weight: 600;
}

.split img {
    height: 80px;
}

.padding-large {
    padding: 50px;
}

@media (max-width: 768px) {
    .split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-left: auto;
        gap: 10px;
        margin: 20px 0;
    }

    .split h3,
    .split p {
        text-align: center;
        margin-top: 10px;
    }

    .padding-large {
        padding: 50px 20px;
    }
}

.btn {
  display: inline-block;
    max-width: auto;
    padding: 10px 20px;
    border-radius: 40px;
    background-color: var(--orange);
    text-decoration: none;
    font-family: "Edu QLD Hand", cursive;
    font-optical-sizing: auto;
    text-transform: none;
    font-size: 1.65rem;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    /*margin-bottom: 80px;*/
    transition: all .35s ease;
}
.btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

@media (max-width: 668px) {
    .btn {
        color: var(--white);
        font-size: 20px;
        transition: all .2s ease;
        margin-top: 20px;
    }
}
@media (max-width: 388px) {
    .btn {
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
    }
}

.btn-1 {
    max-width: auto;
    padding: 10px 20px;
    border-radius: 40px;
    background-color: var(--white) !important;
    text-decoration: none;
    font-family: "Edu QLD Hand", cursive;
    font-optical-sizing: auto;
    text-transform: none;
    font-size: 1.65rem;
    text-align: center;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    /*margin-bottom: 80px;*/
    transition: all .35s ease;
}

@media (max-width: 668px) {
    .btn-1{
        font-size: 20px;
        transition: all .2s ease;
        margin-top: 20px;
    }
}
@media (max-width: 388px) {
    .btn-1 {
        font-size: 16px;
        font-weight: 600;
    }
}

.btn-1:hover {
    color: var(--black);
    letter-spacing: 1px;
    transform: translateY(-5px);
    box-shadow: 0 1px 1px rgba(0,0,0,0.11),
              0 2px 2px rgba(0,0,0,0.11),
              0 4px 4px rgba(0,0,0,0.11),
              0 6px 8px rgba(0,0,0,0.11),
              0 8px 16px rgba(0,0,0,0.11);
}

.content .btn {
    margin-bottom: 10px;

}
.btn-send{
  display: inline-block;
  max-width: auto;
  padding: 10px 20px;
  border-radius: 40px;
  background-color: var(--orange);
  font-family: 'DM Sans', sans-serif;
  font-optical-sizing: auto;
  text-transform: uppercase;
  font-size: .85rem;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  /*margin-bottom: 80px;*/
  transition: all .15s ease;
  margin: 20px 0 0;

}

.tcycle {
    pointer-events: none;
    margin-bottom: 20px;
}

.tcycle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;

}

.tcycle-wrapper object {
    width: 170px;
}

.overlay-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    /* Adjust size as needed */
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.no-pointer {
    pointer-events: none;
}

.blink-1 {
    -webkit-animation: blink-1 1.5s infinite both;
    animation: blink-1 1.5s infinite both;
}

@-webkit-keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink-1 {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.logo-voile{
  max-height: 200px;
  pointer-events: none;
}

.voile{
  font-family: "Abril Fatface", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--black);
  text-transform: none;
  text-align: center;
  font-size:  5vw;
  line-height: 1;
}

@media (max-width: 668px) {
  .voile{
    font-size: 2.2em;
  }
  .logo-voile{
    max-height: 180px;
    margin-bottom: 20px;
  }
}



.text-left{
  text-align: left;
}
/* ----------------------------------------
   RETURN TO TOP
---------------------------------------- */
#return-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    transition: all .3s ease;
    z-index: 10;
}

#return-to-top:hover {
    background-color: #999;
}

#return-to-top i {
    color: #fff;
    position: relative;
    left: 7px;
    top: 10px;
    font-size: 22px;
    transition: all .3s ease;
}

#return-to-top:hover i {
    top: 5px;
}

@media (max-width: 768px) {
    #return-to-top {
        right: 19px;
        bottom: 35px;
    }

    #return-to-top:hover i {
        top: 10px;
    }
}

/* ----------------------------------------
   INFO PANEL
---------------------------------------- */
.info-panel {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: var(--orange);
    color: black;
    padding: 8px 12px;
    border-radius: 5px;
    /*box-shadow: 0 3px 5px rgba(0,0,0,0.2);*/
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    font-size: 15px;
    z-index: 9999;
}

@media (min-width: 768px) {
    .info-panel {
        top: 20px;
        left: 20px;
        font-size: 18px;
    }
}

.info-panel i {
    color: #fff;
    font-size: 20px;
}

.info-panel a[href^=tel] {
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
}

#mentions a[href^=tel] {
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
}

.link-1 {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: black;
    padding: 0 1px;
    transition: color ease 0.3s;
}


.link-1::before,
.link-1::after {
    content: '';
    position: absolute;
    background-color: var(--orange);
    z-index: -1;
    height: 2px;
    /* épaisseur du filet */
    bottom: 3px;
    /* toujours remonté de 3px */
    left: 0;
}

.link-1::before {
    width: 0%;
    transition: width ease 0.4s;
}

.link-1::after {
    width: 100%;
    transition: all ease 0.6s;
}

.link-1:hover::before {
    width: 100%;
}

.link-1:hover::after {
    left: 100%;
    width: 0%;
    transition: all ease 0.2s;
}



/* ----------------------------------------
   FORMULAIRE
---------------------------------------- */



#form a[href^=tel] {
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    border-bottom: 0;
}

#form a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 400;
    transition: all ease 0.2s;
}

#form a:hover {
    color: var(--brown);
}


#merci a:hover {
    color: var(--white);
    background: var(--brown);
}

#merci p {
    text-align: center;
}

form {
    width: 100%;
    margin: auto;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}

form label {
    display: block;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

label {
    display: block;
    margin-top: .5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--black);
}

input,
textarea {
    width: 100%;
    padding: 0.6rem;
    margin: 0.3rem 0;
    border: 1px solid #ccc;
    border-radius: 0;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--orange);
    /* tu peux ajuster la couleur */
    transition: border-color 0.2s;
}

.error {
    color: red;
    font-size: 0.9rem;
}

button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 12px 20px 12px 20px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;

}

button:hover {
    background: var(--brown);
}


.error {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9em;
}


/* ----------------------------------------
   SWIPE SLIDER
---------------------------------------- */

.swiper {
    height: 350px;
    width: 100%;
    margin-top: 0;
    border-radius: 5px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    font-size: 1.25rem;
    background-color: rgba(0, 0, 0, 0.035);
}

@media (min-width: 768px) {
    .swiper-slide {
        padding: 0 130px;
    }
}


.swiper-slide .ti-location-pin,
.ti-truck {
    color: var(--orange);
    margin: 0;
}



.swiper-slide .ti-location-pin,
.swiper-slide .ti-truck {
    margin-right: 10px;
}

.swiper-slide ul {
    margin-top: 10px;
    list-style-type: none;
    margin-left: -20px;
}

.swiper-slide ul li {
    font-weight: 200;
    margin-left: 15px;
}

.swiper-slide ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--orange);
    /* couleur de la pastille */
    font-weight: bold;
    padding-left: 0;
}

.swiper-pagination {
    display: none;
}

/* Changer la couleur des flèches */
.swiper-button-next,
.swiper-button-prev {
    color: var(--orange);
    margin: 0 10px;
}

/* Changer la couleur des flèches */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--brown);
    /* exemple : brun café */
}

/* Changer la taille des flèches */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2.5rem;
}
.swiper-slide h3 {
    line-height: 1.1;
}

.swiper-slide h4 {
    opacity: 0;
    transform: translateX(50px);
    /*transition: 0.4s ease 0.2s;*/
    font-size: 1em;
    line-height: 1;
    margin-bottom: 10px;
}

.swiper-slide-active h4 {
    opacity: 1;
    transform: translateX(0);
}

.swiper-slide p,
.swiper-slide ul {
    opacity: 0;
    transform: translateX(-5px);
}

.swiper-slide-active p,
.swiper-slide-active ul {
    opacity: 1;
    transform: translateX(0);
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.4;
}

@media (max-width: 668px) {
    .swiper {
        min-height: 570px;
    }

    .swiper-slide {
        padding: 30px 50px 0;
        justify-content: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--orange);
        margin: 0;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.4rem;
    }

    .swiper-slide p {
        text-align: left;
        font-size: 18px ! important;
        line-height: 1.5;
    }

    .swiper-slide-active ul {
        text-align: left;
        font-size: 18px ! important;
        line-height: 1;
    }
}

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

.bottom-50 {
    padding-bottom: 20px;
}

.split-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5em;
}

@media (max-width: 768px) {
    .split-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.split-container p{
margin-bottom: 0;
text-align: left;
}

.split-container-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5em;
}

@media (max-width: 1024px) {
    .split-container-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.split-container-2 ul{
  list-style: none;
  margin-top: -15px;
}

.split-container-2 ul li {
  position: relative; /* repère pour le ::before */
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  font-size: 20px;
  line-height: 1.9;
  padding-left: 20px; /* espace pour le + */
}

@media (max-width: 1024px) {
  .split-container-2 ul li {
    font-weight: 200;
    font-size: 18px;
    line-height: 1.5;
  }
}

.split-container-2 li::before {
  content: "+";
  position: absolute;
  left: 0; /* se place dans l’espace créé par le padding */
  color: var(--orange);
  font-weight: 700;
}

.container-voile{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  background-image: url('../img/photos/voile.jpg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  border-radius: 30px;
  padding: 50px;
  margin: 50px 0;
  color: white;
  transition:  all 1.5s ease;
}

@media (max-width: 1024px) {
  .container-voile{
    padding: 35px 20px 35px;
  }
}

  .container-voile h2{
    margin: 0 0;
  }


.white{
  color: white;
}
.margin-50{
  margin: 50px 0;

}
.link-voile a{
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  color: var(--orange);
  background: var(--white);
  margin: auto;
  padding: 20px;
}
