/*!
Theme Name: STARTEO Starter Theme
Author: Starteo
Author URI: https://www.starteo.pro
Description: 
Version: 1.0
Requires at least: 5.0
Tested up to: 5.7
Requires PHP: 7.2
Text Domain: gbdi-starter
*/

/* Don't overwrite this file. Compile "/assets/main.(less|scss)" to "/assets/css/main.css" */

/* From http://codex.wordpress.org/CSS */

/* GENERAL */
/*
@font-face {
	font-family: "Ganton";
	src: url(assets/_fonts/Ganton.otf) format("opentype");
}
*/

@font-face {
  font-family: "Blackside";
  src: url(assets/_fonts/Blackside.otf) format("opentype");
}

@font-face {
  font-family: "Blackside Bold";
  src: url(assets/_fonts/Blackside-Bold.otf) format("opentype");
}

@font-face {
  font-family: "Raleway Medium";
  src: url(assets/_fonts/Raleway-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Raleway Bold";
  src: url(assets/_fonts/Raleway-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Raleway ExtraBold";
  src: url(assets/_fonts/Raleway-ExtraBold.ttf) format("truetype");
}

:root {
  --primary-color: #581b42;
  --primary-color-dark: #451433;
  --secondary-color: #8d615f;
  --white-color: #ffffff;
  --font-blackside: "Blackside", Impact, sans-serif;
  --font-blackside-bold: "Blackside Bold", Impact, sans-serif;
  --font-raleway-medium: "Raleway Medium", Arial, sans-serif;
  --font-raleway-bold: "Raleway Bold", Arial, sans-serif;
  --font-raleway-extrabold: "Raleway ExtraBold", Arial, sans-serif;
}

body {
  color: #ffffff;
  font-family: var(--font-raleway-medium);
  font-size: 18px;
}

.back-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 999; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  font-size: 20px; /* Increase font size */
  color: var(--secondary-color);
  background: var(--primary-color);
  border: solid 2px var(--secondary-color);
  padding: 14px 16px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
}

.bonne-caisse-bg-purple {
  background-color: var(--primary-color);
}

.bonne-caisse-bg-purple-dark {
  background-color: var(--primary-color-dark);
}

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

.bonne-caisse-purple {
  color: var(--primary-color);
}

.bonne-caisse-brown {
  color: var(--secondary-color);
}

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

.bonne-caisse-title {
  font-family: var(--font-blackside-bold);
  font-size: 7.77rem;
  line-height: 0.78;
  text-transform: uppercase;
}

.bonne-caisse-pre-title {
  font-family: var(--font-raleway-extrabold);
  font-size: 0.88rem;
  line-height: 1.19;
  text-transform: uppercase;
}

.bonne-caisse-intro {
  font-family: var(--font-blackside);
  font-size: 1.33rem;
  line-height: 0.92;
  text-transform: uppercase;
}

/* GENERAL */

/* HEADER */
.bonne-caisse-header {
  background-color: var(--primary-color);
  box-shadow: 0px 3px 6px #00000065;
  position: relative;
}

.bonne-caisse-header-home-link img {
  max-height: 84px;
  margin: 20px;
}

.bonne-caisse-header-menu a {
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  font-family: var(--font-raleway-extrabold);
}

.bonne-caisse-header-menu a:hover{
  color: var(--white-color)!important;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item:not(:first-child) {
  margin-left: 70px;
}

.bonne-caisse-header-social-icons {
  height: 127px;
}

.bonne-caisse-header-social-icons img {
  height: 22px;
  width: 22px;
}

/* HEADER */

/* FOOTER */
.bonne-caisse-footer-social-icons img {
  height: 30px;
  width: 30px;
}

.bonne-caisse-footer {
  background-color: var(--secondary-color);
  font-size: 0.77rem;
  color: var(--primary-color);
  font-family: var(--font-raleway-medium);
  display: flex;
  align-items: center;
}

.bonne-caisse-footer p {
  margin-bottom: 0;
}

.bonne-caisse-footer-logo img {
  height: 84px;
  width: auto;
}

.bonne-caisse-footer-links {
  background-color: var(--secondary-color);
  font-size: 0.5rem;
  color: var(--primary-color);
}

.bonne-caisse-footer-links a {
  color: var(--primary-color);
}
/* FOOTER */

/* HOME */
.bonne-caisse-bg-intro {
  background-image: url("assets/images/Bonne-Caisse-Intro-Bg.png");
  height: auto;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bonne-caisse-scrolling-text-container {
  width: 100%;
  overflow: hidden;
}

.bonne-caisse-scrolling-text {
  font-family: var(--font-blackside);
  font-size: 2.22rem;
  width: max-content;
  display: inline-block;
  animation: marquee-scroll 40s linear infinite;
  padding: 8px 5px 5px 5px;
}

@keyframes marquee-scroll {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}

.bonne-caisse-cave-content {
  padding-bottom: 126px;
  margin-right: 160px;
}

.bonne-caisse-products-container {
  position: relative;
  z-index: 1;
}

.bonne-caisse-products-content {
  padding-top: 35px;
}

.bonne-caisse-products-imag img {
  position: relative;
  z-index: -1;
}

.bonne-caisse-selection-title {
  font-family: var(--font-blackside-bold);
  font-size: 3rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.bonne-caisse-selections-title {
  font-family: var(--font-blackside);
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 0.92;
  padding-top: 67px;
}

.bonne-caisse-selection-content strong{
  font-family: var(--font-raleway-extrabold);
}

.bonne-caisse-bg-experience {
  padding-top: 175px;
  position: relative;
}

.bonne-caisse-experience-title {
  font-family: var(--font-blackside-bold);
  font-size: 7.2rem;
  line-height: 0.75;
  padding-bottom: 55px;
}

.bonne-caisse-experience-rdv {
  box-shadow: 0px 3px 10px #00000033;
  border-radius: 15px;
  padding: 46px 221px 45px 51px;
  margin-bottom: 185px;
}

.bonne-caisse-experience-rdv-date {
  font-family: var(--font-raleway-extrabold);
  font-size: 1.67rem;
  line-height: 1.7;
}

.bonne-caisse-experience-rdv-title {
  font-family: var(--font-raleway-extrabold);
}

.bonne-caisse-experience-rdv-content {
  opacity: 50%;
}

.bonne-caisse-experience-rdv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-family: var(--font-raleway-bold);
  font-size: 0.89rem;
  border: 1px solid var(--white-color);
  border-radius: 31px;
  padding-left: 19px;
  transition: all 0.3s ease;
}

.bonne-caisse-experience-rdv-btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
}

.icon-circle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white-color);
  margin-left: 6px;
  color: var(--secondary-color);
}

.bonne-caisse-experience-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bonne-caisse-experience-img img {
  height: 1053px;
  width: auto;
}

.bonne-caisse-contact-img {
  width: 892px;
  height: auto;
}

.bonne-caisse-contact-intro {
  font-family: var(--font-blackside-bold);
  font-size: 2.22rem;
  line-height: 0.875;
}

.bonne-caisse-contact-intro p {
  width: 200px;
  margin-bottom: 0;
}

.bonne-caisse-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-family: var(--font-raleway-bold);
  font-size: 0.89rem;
  border: 1px solid var(--white-color);
  border-radius: 31px;
  padding-left: 19px;
  transition: all 0.3s ease;
}

.bonne-caisse-contact-btn:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.icon-circle-container-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white-color);
  margin-left: 6px;
  color: var(--primary-color);
}
/* HOME */

.bonne-caisse-404 {
  padding-block: 150px;
}

.bonne-caisse-title-page{
  font-size: var(--font-raleway-extrabold);
  text-transform: uppercase;
  font-size: 2rem;
}

.bonne-caisse-page a {
  color: var(--white-color);
}

.bonne-caisse-page h2{
  font-family: var(--font-raleway-extrabold-blackside);
 font-size: 1rem;
}