@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;
}



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


/* ----------------------------------------
   FONT STYLES: Barlow - weight & italic
---------------------------------------- */
[class^="barlow-"] {
    font-family: "Barlow", sans-serif;
}

.barlow-thin {
    font-weight: 100;
    font-style: normal;
}

.barlow-extralight {
    font-weight: 200;
    font-style: normal;
}

.barlow-light {
    font-weight: 300;
    font-style: normal;
}

.barlow-regular {
    font-weight: 400;
    font-style: normal;
}

.barlow-medium {
    font-weight: 500;
    font-style: normal;
}

.barlow-semibold {
    font-weight: 600;
    font-style: normal;
}

.barlow-bold {
    font-weight: 700;
    font-style: normal;
}

.barlow-extrabold {
    font-weight: 800;
    font-style: normal;
}

.barlow-black {
    font-weight: 900;
    font-style: normal;
}

.barlow-thin-italic {
    font-weight: 100;
    font-style: italic;
}

.barlow-extralight-italic {
    font-weight: 200;
    font-style: italic;
}

.barlow-light-italic {
    font-weight: 300;
    font-style: italic;
}

.barlow-regular-italic {
    font-weight: 400;
    font-style: italic;
}

.barlow-medium-italic {
    font-weight: 500;
    font-style: italic;
}

.barlow-semibold-italic {
    font-weight: 600;
    font-style: italic;
}

.barlow-bold-italic {
    font-weight: 700;
    font-style: italic;
}

.barlow-extrabold-italic {
    font-weight: 800;
    font-style: italic;
}

.barlow-black-italic {
    font-weight: 900;
    font-style: italic;
}

.dm-serif-display-regular {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

.dm-serif-display-regular-italic {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
}


/* ----------------------------------------
   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 {
    -webkit-text-size-adjust: none;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

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

html::-webkit-scrollbar {
    display: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}



:root {
    --brown: #775749;
    --dark-brown: #2c1c04;
    --orange: #f99167;
    --gray: #a29b99;
    --black: #302825;
    --cream: #f1eeec;
    --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);
}

body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    color: #2c2c2c;
    background-color: var(--chalk);
}

/* ----------------------------------------
   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: center;
    flex-direction: column;
}

.hero h1 {
    font-family: "DM Serif Display", serif;
    text-align: center;
    font-weight: 400;
    font-size: 2.5em;
    text-transform: none;
    color: var(--white);
    margin: 0 0 0;
}

.hero p {
    font-family: 'Barlow', sans-serif;
    text-align: center;
    font-weight: 400;
    font-size: 1.8em;
    text-transform: none;
    color: var(--white);
}

@media (max-width: 668px) {
  .hero {
      height: 100vh;
  }
  .hero h1 {
      font-size: 8.5vw;
  }

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

#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.1em;
    letter-spacing: 2px;
    color: var(--light-blue);
    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 {
    color: #fff;
    font-size: 1.25em;
}

.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;
    }
}


.btn{
    padding: 20px 10px;
     background-color: rgba(255, 255, 255, 0.5);
     color: black;
     font-family: 'Barlow', sans-serif;
     text-decoration: none;
     cursor: pointer;
     transition: font-weight 0.2s ease;
     border-radius: 15px;
     width: 150px;
}
.btn:hover{
  font-weight: bold; /* typo plus grasse */
  color: var(--white);

}


/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h2 {
    font-family: "DM Serif Display", serif;
    text-align: center;
    font-size: 2.3em;
    text-transform: none;
    color: var(--brown);
    margin: 0 0 20px;
}


h3 {
    text-align: center;
    font-weight: 500;
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 30px;
    letter-spacing: 1px;
}

h4 {
    text-align: inherit;
    font-size: 1.10em;
    text-transform: uppercase;
    color: var(--brown);
    margin: 30px 0 25px;
}

@media (max-width: 668px) {
    h2 {
        font-size: 1.75em;
        margin: 0 0 20px;
    }
    h3 {
        font-size: 1.1em;
    }
}

.content p,
p {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 4em;
    line-height: 1.7;
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

.content i {
    font-size: 25px;
}

@media (max-width: 668px) {
    .content p,
    p {
        font-size: 18px;
    }
}

.justify {
    text-align: justify;
}

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

.bold {
    font-weight: 500;
}

.white {
    color: #ffffff;
}

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

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

.display_container p {
    font-weight: 400;
}

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

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

.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);
    }
}

/* ----------------------------------------
   CONTENT
---------------------------------------- */
.content {
    max-width: 1500px;
    width: 90%;
    padding: 100px 0;
    margin: 0 auto;
}
@media (max-width: 668px) {
  .content {
      padding: 50px 0;
  }
}

.content ul {
  list-style: none;
  padding-left: 0;
}

.content ul li {
  position: relative;
  padding-left: 1.2em;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 15px;
}
@media (max-width: 668px) {
  .content ul li {
    font-size: 18px;
  }
}
.content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange); /* couleur de la pastille */
  font-weight: bold;
}
/* ----------------------------------------
   CONTAINER 2 BLOCS
---------------------------------------- */

.content-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 650px;
    /*gap:2em;
  padding: 2em;*/
}

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

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

@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;

}

.content-split p {
    font-family: "DM Serif Display", serif;
    font-size: 1.85em;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

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

.coffee {
    background: url("../img/photos/coffee.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tea {
    background: url("../img/photos/tea.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coffee img,
.tea img {
    height: 70px;
    margin-bottom: 25px;
    pointer-events: none;
}



/* ----------------------------------------
   CONTACT
---------------------------------------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    margin: 50px 0 0 ;
}

.contact p {
    text-align: left;
    font-weight: 300;
    font-size: 21px;
}

.contact a,
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;
    }
}

/* ----------------------------------------
   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: auto;
    background: var(--dark-brown);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

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

footer p {
    font-weight: 300;
    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;
    border-bottom: -3px solid var(--orange);
    box-shadow: inset 0 -1px 0 var(--orange);
    color: inherit;
    padding-bottom: 3px;
    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;
}


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 var(--brown);
  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: 1.8em;
}

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

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

@media (max-width: 768px) {
  .footer-split {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  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: -10;
}

.jarallax p {
    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;
  }
}

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

.ti-location-pin,
.ti-comments-smiley {
    color: #999;
}

.margin100 {
    margin-top: 100px;
}

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

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

.s-letf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 15px;
}

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

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

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

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

.height120 {
    height: 120px;
}

.height250 {
    height: 250px;
}

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

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

.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;
}
.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;
  }
}
/* ----------------------------------------
   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: 13px;
    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: 15px;
    }

    #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: 'Barlow', sans-serif;
    text-align: left;
    font-size: 15px;
    z-index: 9999;
    /* Très élevé pour rester au-dessus de tout */
}

@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;
}
