/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

h1, h2, h3 {
  font-family: "ivyora-display", serif;
}

h1 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-style: normal;
}

h2 {
  font-weight: 500;
  font-style: normal;
  line-height: 120%;
}

h2.cta-end {
  color: #fff;
  line-height: 100%;
}

h3 {
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 120%;
}

p {
  color: #985C10;
  font-size: 17px;
}

.footer p {
  font-size: 16px;
}

.display-none {
  display: none;
}

.header .bricks-nav-menu li {
  font-size: 20px;
  font-style: normal;
  font-family: "ivyora-text", serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header .bricks-nav-menu li:hover a {
  color: #DE9840;
}

.accordion-content-wrapper p {
  font-size: 18px;
}

.brxe-container {
  width: 1400px;
  max-width: 90vw;
}

.offcanvas-reservation .brxe-container {
  display: flex;
  align-items: center !important;
}

.brx-offcanvas-inner {
  max-width: 1000px;
}

.brxe-shortcode .brxe-container {
  width: auto;
  max-width: auto;
}

.brxe-button {
  font-size: 24px;
  font-family: "ivyora-text", serif;
  font-weight: 500;
  position: relative;
  color: #985C10;
  padding: 10px 0;
}

.brxe-button::after {
  position: absolute;
  content: "";
  background-color: #985C10;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: 0.3s ease-in-out;
}

.brxe-button:hover::after {
  width: 20%;
}



.bricks-button.bricks-background-primary {
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  color: #fff3e4;
  font-weight: 500;
  font-size: 20px;
  background-color:#DE9840!important;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}


.bricks-button.bricks-background-primary:hover {
  background-color: #985C10!important;
  letter-spacing: 0.1px;
}


.rotate-infinite {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Texte marquee */

.scroll-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  background: transparent;
  position: relative;
}

.scroll-marquee-content {
  display: block;
  will-change: transform;
}

.scroll-marquee-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(2rem, 10vw, 12rem);
  color: #F0E4D5;
  letter-spacing: 0.05em;
  transform: translateX(0);
  font-family: "ivyora-display", serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  line-height: 100%;
  will-change: transform;
}

.scroll-marquee-inner img {
  vertical-align: unset;
  width: clamp(3rem, 4vw, 10rem);
	
}

.etoile-icon {
  display: inline-block;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Temoignages */

.brxe-testimonials .swiper-slide {
  text-align: left;
  border: 2px solid #f0ddc6;
  padding: 50px;
}

.testimonial-content-wrapper img {
  display: block;
  margin-bottom: 30px;
}

.testimonial-meta-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.testimonial-name {
  font-size: 24px;
  font-style: normal;
  font-family: "ivyora-text", serif;
  font-weight: 500;
}

.testimonial-meta-wrapper {
  margin-top: 30px;
}

/* Slider image */

.swiper-button.bricks-swiper-button-prev {
  left: 30px !important;
  background: #DE9840;
  border-radius: 100px;
  border: 2px solid #FFFAF3;
  height: 60px;
  width: 60px;
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.swiper-button.bricks-swiper-button-next {
  right: 30px !important;
  background: #DE9840;
  border-radius: 100px;
  border: 2px solid #FFFAF3;
  height: 60px;
  width: 60px;
  transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.swiper-button.bricks-swiper-button-prev:hover,
.swiper-button.bricks-swiper-button-next:hover {
  background-color: #985C10;
}

.ion-ios-arrow-forward:before {
  content: "" !important;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.ion-ios-arrow-back:before {
  content: "" !important;
  display: flex;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Animation */

.fade-in-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.4s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.8s; }
.delay-4 { transition-delay: 1s; }
.delay-5 { transition-delay: 1.2s; }




.bricks-active .fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.bricks-edit-template .bricks-static-header {
  display: none;
}

.brx-offcanvas-inner {
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.background-zoom {
  animation: zoomBackground 2s ease-in-out forwards;
  opacity: 0;
}

@keyframes zoomBackground {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.animation-header {
  animation: headerAnimation 1.4s ease-in-out forwards;
  opacity: 0;
}

@keyframes headerAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Test */

.categories {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 500px;
}

.categorie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.5;
  border-bottom: 1px solid #F0D1AA;
  font-size: 40px;
  font-family: "ivyora-display", serif;
  font-weight: 500;
  position: relative;
  color: #985C10;
}

.categorie:last-child {
  border-bottom: none;
}

.categorie:hover {
  opacity: 0.9;
}

.categorie.active {
  color: #985C10;
  opacity: 1;
}

.categorie.active .plus {
  color: #A66A00;
}

.label {
  flex: 1;
}

.plus {
  font-size: 40px;
  font-weight: bold;
  margin-left: 1rem;
  transition: transform 0.3s ease, color 0.3s;
  display: inline-block;
}

.categorie.active .plus {
  transform: rotate(90deg);
}

.image-display {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease;
  background-image: url('/wp-content/uploads/Promenades.jpg');
}

.bricks-button.bricks-background-primary::after {
  display: none;
}


/* Formulaire */

.gform_fields input, .gform_fields select {
  background: transparent!important;
  border: 1.5px solid #985C10!important;
  padding: 10px 20px!important;
  color: #985C10!important;
  font-size: 18px!important;
  font-family: "ivyora-text", serif!important;
  font-weight: 500!important;
  font-style: normal!important;
}

.gform_fields input::placeholder, .gform_fields select::placeholder {
  color: #985C10;
  opacity: 0.5;
}


.gform_button {
    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-left: 40px;
    color: #fff3e4;
    font-weight: 500;
    font-size: 20px;
    background-color: #DE9840 !important;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    border: none;
    margin-top: 10px;
}

input.datepicker.gform-datepicker {
  width: 100%!important;
}


.page-id-786 .header {
  display: none;
}


/* RESPONSIVE */

@media (max-width: 1248px) {
  ul.bricks-nav-menu li a {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  br {
    display: none;
  }
}
