/*
Theme Name: le-marais
Theme URI: https://lemaraisplage.com
Author: Atelier Yvon
Author URI: https://atelieryvon.com
Description: Custom Le Marais theme
Requires at least: WordPress 5.0
Version: 1.0
*/



:root {
  --main-font: 'Open Sans';
  --title-font: 'IBM Plex Sans';
}

body {
  --left-side-width: 150px;
  width: 100%;
  max-height: 100%;
  margin: 0px;
  background-color: var(--main-bg-color);
  font-family: var(--main-font);
  color:var(--main-font-color);
  font-size: 14px;
  scroll-behavior: smooth;
  line-height: 1.5em;
}

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

html {
    -ms-overflow-style: none;  
  scrollbar-width: none;  
}


header {
  position: fixed;
  z-index: 99;
  width: 100vw;
  background-color: var(--main-bg-color);
  padding: 15px 0;
  font-size: 11px;
  color:var(--highlight-color);
  text-transform: uppercase;
  transition: all .6s ease;
}

.scroll header {
   padding: 5px 0;
}

.header-container {
  margin: 0 3vw;
}

header .header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

header .header-left,
header .header-right {
    display: flex;
    gap: 50px;
    width: 33%;
    align-items: center;
}

header .header-right {
   justify-content: flex-end;
   gap:12px;
}

header .header-left .social-btn {
  position: relative;
}

header .header-left .social-btn:after {
  content:"";
  width: 1px;
  height: 12px;
  background-color: var(--highlight-color);
  position: absolute;
  top:6px;
  right: -25px;
}

header .header-left .contact-links {
  display: flex;
  align-items: center;
  gap:14px;
}

header .header-left .contact-links img {
  height: 16px;
  margin-top:6px;
}

header .header-left .contact-links a {
 font-size: 16px;
 font-weight: 700;
}

header .logo-container {
  width: 33%;
  text-align: center;
}

header img.logo {
 max-height: 58px;
 transition: 0.6s ease;
}

.scroll header img.logo {
 max-height: 43px;
}

header .header-right a svg {
   margin-left: 5px;
}



footer {
    padding: 70px 0px 70px;
    font-size: 14px;
    background-color: var(--footer-bg-color);
    line-height: 1.8em;
    color:#ffffff;
}

footer .footer_top {
    display: grid;
    grid-template-columns: 1fr 35% 20%;
    gap: 20px;
    padding-bottom: 40px;
}

footer .anim-link .text-wrapper {
  letter-spacing: 0px;
}

footer p {
  margin:0;
}

footer .footer_bottom {
    display: grid;
    grid-template-columns: 1fr 10%;
    align-items: flex-end;
    gap: 20px;
}

footer .footer_bottom h3 {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer .footer-bottom-r {
    font-size: 9px;
    line-height: 13px;
    text-align: right;
}


a:-webkit-any-link {
    color: inherit;
    text-decoration: none !important;
}

.container {
    margin: 0 5vw;
}

.anim-link {
  width: fit-content;
  display: block;
}

.anim-link .text-wrapper {
  overflow: hidden;
  position: relative;
  letter-spacing: 0.1em;
  width: fit-content;
}

.anim-link span {
  display: inline-block;
}

.anim-link .text-bottom {
  transform: translateY(100%);
      display: inline-block;
    position: absolute;
    left: 0;
}


.anim_lines .line-container {
    overflow: hidden;
}

.colored {
  background-color: var(--highlight-color);
}

.black-bg {
  background-color: #000000;
}

a.btn {
  padding: 10px 30px;
  background-color: var(--highlight-color);
  color:#ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  position: relative;
  transition: 0.4s ease;
  border: solid 1px var(--highlight-color);
}

/*a.btn:hover {
  background-color: #ffffff;
  color: var(--highlight-color) !important;
}*/

a.btn-outlined {
  padding: 10px 30px;
  background-color: transparent;
  color:var(--highlight-color) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: 0.4s ease;
  border: solid 1px var(--highlight-color);
}

a.btn-outlined:hover {
  background-color: var(--highlight-color);
  color: #ffffff !important;
}

a.btn-outlined svg path {
  transition: 0.4s ease;
}

a.btn-outlined:hover svg path {
  fill: #ffffff;
}

.big-container {
  margin: 0 15px;
}

.hero-container {
  height: calc(100vh - 109px);
}

.hero_section {
  height: 0px;
  background-size: cover;
  background-position: center;
}

.page_content {
    padding-top: 94px;
}

.anim_lines {
    margin: 0;
    opacity: 0;
}

.content {
  margin-top: 80px;
  margin-bottom: 80px;
}

h1 {
  color:var(--highlight-color);
  text-transform: uppercase;
  font-family: var(--title-font);
  letter-spacing: 0.1em;
  font-size: 2.5vw;
  font-weight: 600;
}

.big-text {
  font-size: 24px;
  line-height: 34px;
}

.page-template-reservation .page_content .big-container {
  padding: 30px 0;
  margin-bottom: 15px;
  min-height: calc(100vh - 170px);
  position: relative;
}

.page-template-reservation .page_content .big-container h1 {
    position: absolute;
    top: 10px;
    left: 30px;
    color: #ffffff;
}







@media (min-width: 1025px){ 
  .hidden-on-desktop {
    display: none !important;
   }
}

@media (max-width: 1024px) {
 
  .hidden-on-tablet {
    display: none !important;
   }
  
}

@media (min-width: 768px) {
  .page-template-reservation iframe {
      bottom: 20px !important;
      right: 20px !important;
  }
}



@media (max-width: 767px){ 
   .hidden-on-mobile {
    display: none !important;
   }
   .container {
    margin: 0 20px;
  }
   a.btn-outlined, a.btn {
    padding: 8px 15px;
  }
  a.btn-outlined svg {
    display: none;
  }
  a.resa-btn-mobile {
    position: fixed;
    background-color: var(--highlight-color);
    color:#ffffff !important;
    width: 100vw;
    padding: 14px 0;
    z-index: 22;
    bottom: 0;
    left: 0;
    display: inline-block;
    text-align: center;
    border-radius: 0px;
  }
  .hero-container {
    height: 60vh;
  }
  h1 {
    font-size: 28px;
    line-height: 36px;
}
  footer {
    padding: 40px 0px 85px;
  }
  footer .footer_top, footer .footer_bottom {
    grid-template-columns: inherit;
  }
  footer .footer_top {
      padding-bottom: 20px;
  }
  footer .footer-bottom-l {
    padding-bottom: 15px;
  }

  footer .footer-bottom-l h3{
    margin-bottom:0px;
  }
  footer .footer-bottom-r {
    margin-top:10px;
    text-align: left;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.page-template-reservation .page_content .big-container {
    padding: 0px;
  }
   
}




