* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    outline: none;
    box-sizing: border-box;
    list-style: none;
  }

  *,
*::before,
*::after {
  box-sizing: border-box;
}


  /* * {
    outline: 1px solid red; 
  } */
  

 body {
    margin: 0;
    font-family: 'Libre Baskerville', serif !important;
    background-color: var(--w);
    /* height: 500vh; */
    /* font-family: "Big Shoulders Display", sans-serif; Added fallback font */
        scroll-behavior: smooth;
        /* height: 700vh; */
    overflow-x: hidden;
    background-color: var(--w);
  font-family: 'Libre Baskerville', serif !important;
  width: 100vw;
  }
/* 
  html{
    overflow-x: hidden;
  } */
  

h1 {
  font-family: 'Great Vibes', cursive !important;
}

h2,h3,h4,h5,h6{
  text-transform: uppercase;
}


:root {

    --b: #31251b;
    --w: #f9f5f0;
    --g: #c7b693;
}

  
  
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  .container{
    width: 100%;
    overflow-x: hidden;
}
.navbar {
    z-index: 1; /* Keep the navbar above the filter */
    pointer-events: auto; /* Default */
}

.main-content {
    pointer-events: none; /* Only if necessary, for content that shouldn't interfere */
}
  
  
  .centered-nav {
      background-color: var(--w);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      width: 100%;
  }

  .custom-navbar {
    background-color: var(--w);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.custom-navbar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--w);
    z-index: 1000;
    position: relative; 
}

.custom-logo {
    width: 30px;
    height: 30px;
    position: absolute;
    left: -15px; 
}

.custom-brand {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--b);
    letter-spacing: 5px;
}

.custom-phone-icon {
    font-size: 20px;
    color: var(--b);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.custom-phone-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 2px solid var(--b);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, border 0.3s ease;
}

.custom-phone-icon:hover {
    color: var(--g);
}

.custom-phone-icon:hover::after {
    width: 35px;
    height: 35px;
    border: 2px solid var(--g);
}

.custom-navbar-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-nav-links {
    text-transform: uppercase;
    display: flex;
    list-style: none;
    gap: 150px;
    padding: 0;
    margin: 0;
}

.custom-nav-links li {
    position: relative; /* Keep the position relative for all the list items */
}

.custom-nav-links a {
    text-decoration: none;
    color: var(--b); /* Base text color */
    font-size: 16px;
    font-weight: 500;
    position: relative; /* Needed for the pseudo-element positioning */
    transition: color 0.3s ease; /* Smooth color transition */
}

.custom-nav-links a::after {
    content: ""; /* Empty content for the line */
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the line just below the text */
    width: 0; /* Initially, the line has no width */
    height: 2px; /* Thickness of the line */
    background-color: var(--g); /* Color of the line */
    transition: width 0.3s ease; /* Smooth transition for the line */
}

.custom-nav-links a:hover {
    color: var(--g); /* Change text color on hover */
}

.custom-nav-links a:hover::after {
    width: 100%; /* Expand the line to full width on hover */
}

.custom-cart-icon {
    font-size: 20px;
    color: var(--b);
    text-decoration: none;
    margin-left: 170px;
    position: relative; /* Needed for the pseudo-element positioning */
    transition: color 0.3s ease; /* Smooth color transition */
  
}

/* Create the circle animation */
.custom-cart-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px; /* Initially, a small dot */
    height: 4px; /* Initially, a small dot */
    border-radius: 50%; /* Make it a circle */
    border: 2px solid var(--b); /* Border color for the circle */
    transform: translate(-50%, -50%); /* Center the circle */
    transition: width 0.6s ease, height 0.6s ease; /* Smooth transition for the circle growth */
}

/* Change color on hover */
.custom-cart-icon:hover {
    color: var(--g); /* Change text color on hover */
    text-decoration: none;  /* Remove underline from the link */
}

/* Circle grows on hover */
.custom-cart-icon:hover::after {
    width: 35px; /* Expand the width */
    height: 35px; /* Expand the height */
    border: 2px solid var(--g); /* Border color for the circle */
    text-decoration: none;  /* Remove underline from the link */
}


.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500vh;
    background-color: var(--w);
    display: none;
    z-index: 999;
}


.custom-overlay.active {
    display: block;
}

.custom-navbar.active {
    transform: translateY(0);
}

[data-header].header-hide {
    transform: translateY(-100%);
}

[data-header].active {
    background-color: var(--w);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.custom-phone-icon {
margin-right: 20px;
}

.custom-logo {
    margin-left: 22px;
    }



    @media(max-width: 1100px){
      .custom-nav-links {
        gap: 100px;
      }
    }



    .custom-logos-marquee {
        z-index: 1000;
        background-color: var(--g);
        /* margin-top: 20px; */
      
        /* height: 15vh; */
        display: flex;
        overflow-x: hidden;
        user-select: none;
        mask-image: linear-gradient(
            to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
        );
    }
    
    .custom-marquee-logos {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0.5rem;
        min-width: 100%;
        animation: custom-marquee-left 20s linear infinite;
    }
    
    .custom-marquee-logos img {
        display: block;
        margin-inline: 2rem;
    }
    
    @keyframes custom-marquee-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    
    .custom-logo-marquee {
        z-index: 1000;
        /* height: vh; */
        display: flex;
        overflow-x: hidden;
        user-select: none;
        mask-image: linear-gradient(
            to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
        );
    }
    
    .custom-marquee-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 1rem;
        min-width: 100%;
        animation: custom-marquee-right 20s linear infinite;
    }
    
    @keyframes custom-marquee-right {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .custom-text {
        font-size: 15px; /* Base font size */
        transform: scaleX(1); /* Stretch horizontally */
        white-space: nowrap; /* Prevent wrapping */
    }
    
    
    
    
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}


nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

@media(max-width: 990px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
   
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }



  



  /* Hide the menu button and cart icon when the sidebar is open */
body.sidebar-open .menu-button,
body.sidebar-open .custom-cart-icon {
    display: none;
}


/* List items in the sidebar */
.sidebar li {
    padding: 10px 20px; /* Padding for each item */
    /* border-bottom: 1px solid #444; Optional: Add a light border between items */
    margin-bottom: 10px; /* Gap between list items */
}

/* Sidebar links */
.sidebar li a {
    text-decoration: none; /* Remove underline */
    color: var(--b); /* White text color for links */
    font-size: 18px; /* Font size for the links */
    display: block; /* Make the link fill the full width of the list item */
}

/* Hover effect on the list items */
.sidebar li:hover {
    background-color: var(--g); /* Light background color on hover */
}

/* Optional: Hover effect for the links */
.sidebar li a:hover {
    color: var(--w); /* Lighter text color on hover */
}






.privacy-policy {
    font-family: Arial, sans-serif;
    background-color: var(--w);
    color: var(--b);
    padding: 40px 20px;
    line-height: 1.6;
}

.privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy .title {
    text-align: center;
    font-size: 70px;
    margin-bottom: 20px;
    color: var(--b);
}

.privacy-policy .updated {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
}

.privacy-policy .section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--g);
    border-left: 4px solid #444;
    padding-left: 10px;
}

.privacy-policy .section p {
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
}

.privacy-policy a {
    color: #007bff;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}









.footer {
  margin-top: 100px;
    position: relative;
    width: 100%;
    background: var(--b);
    min-height: 50px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
 
  
  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../elmnts/blackwave.png");
    background-size: 1000px 100px;
  }
  
  .wave#wave1 {
    z-index: 10;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 6s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 9;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 6s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 10;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 5s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 9;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 5s linear infinite;
  }
  
  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }









  
footer {

  right: 0;
  bottom: 0;
  left: 0;
}

.footer-custom {
  padding: 20px 0;
  background-color: var(--b);
  
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;

  padding: 0 15px;
}

.footer-section {
  display: grid;
  grid-template-columns: 1fr;
  
}

.footer-content {
  padding: 0 10px;
  
}

.footer-about {
  margin-bottom: 1rem;
}

.footer-logo img {
  margin-bottom: 10px;
  height: 75px;
}

.social-item {
  display: inline-block;
}

.social-item:not(:last-child) {
  margin-right: .5rem;
}

.social-item a {
  width: 50px;
  height: 50px;
  color: var(--w);
  border-radius: 100%;
  font-size: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: var(--g); */
  color: var(--w);
  text-decoration: none;
  position: relative; /* Needed for the pseudo-element positioning */
  transition: color 0.3s ease; /* Smooth color transition */
}

.social-item a:hover {
  color: var(--g); /* Change text color on hover */
  text-decoration: none;  /* Remove underline from the link */
}

/* Create the circle animation */
.social-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px; /* Initially, a small dot */
  height: 30px; /* Initially, a small dot */
  border-radius: 50%; /* Make it a circle */
  border: 2px solid var(--w); /* Border color for the circle */
  transform: translate(-50%, -50%); /* Center the circle */
  transition: width 0.6s ease, height 0.6s ease; /* Smooth transition for the circle growth */
}


.social-item a:hover::after {
  width: 60px; /* Expand the width */
  height: 60px; /* Expand the height */
  border: 2px solid var(--g); /* Border color for the circle */
  text-decoration: none;  /* Remove underline from the link */
}





.footer-contact li i {
  color: var(--g); /* Icon color */
}

.footer-contact li span {
  color: var(--w); /* Text color */
}

.footer-about p { color: var(--w); /* Text color for the paragraph */ }





footer h4 {
  position: relative;
  line-height: 1;
  padding-bottom: 20px;
  font-size: 24px;
  margin: 1rem 0 1.615rem 0;
  color: var(--g);
}

.footer-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--g);
}

/* Styles pour les liens */
.footer-nav li a {
  color: var(--w);
  line-height: 2rem;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  position: relative; /* Nécessaire pour l'animation */
  transition: color 0.3s ease; /* Transition de couleur douce */
}

/* L'animation du survol */
.footer-nav li a::after {
  content: ""; /* Contenu vide pour la ligne */
  position: absolute;
  left: 0;
  bottom: -2px; /* Placer la ligne juste sous le texte */
  width: 0; /* La ligne commence avec une largeur de 0 */
  height: 2px; /* Épaisseur de la ligne */
  background-color: var(--g); /* Couleur de la ligne */
  transition: width 0.3s ease; /* Transition douce pour l'extension de la ligne */
}

/* L'animation au survol */
.footer-nav li a:hover {
  color: var(--g); /* Change la couleur du texte au survol */
}

.footer-nav li a:hover::after {
  width: 100%; /* Étend la ligne à toute la largeur au survol */
}


.footer-contact li {
  display: flex;
  align-items: start;
  line-height: 2rem;
  font-weight: 400;
}

.footer-contact li i {
  margin-top: 5px;
  font-size: 24px;
  color: var(--w);
  margin-right: 10px;
}

.footer-contact li span {
  font-size: 18px;
}

.footer-copyright {
  background-color: var(--g);
}

.copyright {
  padding: 0.3rem 0;
  text-align: center;
}

/* Responsive Layout */

@media (min-width:992px) {

  .footer-section {
      grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

















@media (max-width:450px) {
    .privacy-policy .title {
        font-size: 50px;
    }
}

  
