

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Navbar main container */
  .nav-container-flex {
    position: sticky;
    top: 0;
     border-bottom: 1px solid #e8d9c8;
     background: #fdf8f3;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(59,42,26,.07);
    transition: box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 0 5%;
  }

  nav.scrolled { box-shadow: 0 4px 28px rgba(59,42,26,.13); }

  /* Navigation links */
  
 
  .btn-book-now{
   margin-left: 100px;
    width: 150px;
    height: 40px;
    
  }


  .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 10px;
    font-family: "raleway", sans-serif;
    font-weight: 400;
     text-transform: uppercase;
     color: #3b2a1a;
     position: relative;
      transition: color .3s;
      letter-spacing: 2px; 
  }

  
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: #c49a6c; transition: width .3s;
  }

  
  .nav-links a:hover, .nav-links a.active { color: #c49a6c; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  
  
  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
  }

  
  .hamburger span {
    display: block; height: 2px; 
    background: #3b2a1a;
    border-radius: 2px; transition: all .35s;
  }

  
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 18px; }
  .hamburger span:nth-child(3) { width: 24px; }

  
  /* Animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   

  
  /* ── OVERLAY ── */
  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1000;
    opacity: 0; transition: opacity .3s;
  }

  
  .overlay.show { display: block; }
  .overlay.visible { opacity: 1; }

   /* ── MOBILE DRAWER ── */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 70%; 
   /* background: #fdf8f3;*/
   background-color: #333;
     z-index: 1001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(59,42,26,.18);
    display: flex; flex-direction: column;
  }

  .drawer.open { transform: translateX(0); }


  
  /* Drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid #e8d9c8;
    background-color: ;
  }

  
  .close-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f5ede0; border: 1px solid #e8d9c8;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #3b2a1a;
    transition: background .2s, transform .3s;
  }

  .close-btn:hover { background: #e8d0b8; transform: rotate(90deg); }

  /* Drawer links */
  .drawer-links { list-style: none; padding: 14px 0; flex: 1; overflow-y: auto; }
  .drawer-links li a {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 26px; text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: white;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    font-family: "raleway", sans-serif;
  }

  
  .drawer-links li a .d-icon { font-size: 1.05rem; }
  .drawer-links li a:hover { background: #f5ede0; color: #c49a6c; }
  .drawer-links li a.active {
    color: #c49a6c; border-left-color: #c49a6c;
    font-weight: 700; background: #fdf0e2;
  }

  
  /* Drawer footer */
  .drawer-footer { padding: 20px 22px; border-top: 1px solid #e8d9c8; }
  .drawer-footer .btn-book { width: 100%; padding: 13px; font-size: .72rem; margin-bottom: 14px; }
  .drawer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
  .drawer-socials a {
    width: 50px; height: 50px; border-radius: 50%;
    
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; text-decoration: none; color: white;
    transition: border-color .2s, transform .2s;
  }

  
  .drawer-socials a:hover { border-color: #c49a6c; transform: translateY(-5px); }
  .drawer-tagline { text-align: center; font-size: .6rem; color: white; letter-spacing: 1px; }

   /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

  }






 .body-images-cont-flex{
   display: flex;
   align-items: center;
   justify-content: center;
    background-color:  whitesmoke;
 min-height: 100vh;
   

   
  
  
 }

 
 
 .carousel-image-cont-main{
   /*max-width: 1200px;*/
  max-width: 80%;
  
  
  
  
 }
  
 
 .slider-wrapper {
  position: relative;
 
}


.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}


.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}


.slider-wrapper .slide-button#next-slide {
  right: -25px;
}


.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 20px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}


.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}


.slider-wrapper .image-list .image-item {
  
  width: 360px;
  height: 500px;
 
}


.carousel-image-cont-main .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  
}


.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}


.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}


.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}


.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}


.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}



    /*css media querry start from here */

  

  @media (max-width:768px) {
    .about-me-main-cont-flex{flex-direction: 
      column;
      background-color: #D2B48C;
      width: 100%;
      margin: 0;
      
      
    }
    .about-me-main-cont-flex img{
       width: 100%;
       
    }

    .abt-me-txt-cont{
     width: 100%;
      color: black;
      
    
     
    }

    .h2-about-me-txt{
      text-align: center;
      font-family: "playfair", sans-serif;
    }

    


    .p-about-me-txt{
     

      text-align: center;
      font-family: "raleway", sans-serif;
      font-weight: 400;
      
     
    
     
    }

    .estician-service-parent-flex{
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 10px;
      width: 100%;
      align-content: center;
      background-size: 100% 100%;
      margin: auto;
      padding: 20px;
     position: sticky;
    
  
      
    }

    .lash-main-cont,.facial-main-container,.waxing-main-cont{
     width: 100%;
    }
    
   .lash-txt-cont{
    width: 100%;
    margin: auto;
   }

   .waxing-cont-txt{
    width: 100%;
    margin: auto;
   }

   .facials-txt-cont{
    width: 100%;
    margin: auto;
   }

  .lash-img,.facials-img,.waxing-img{
    width: 100% ;
    height: auto;
   margin: auto;
  }

  .books-journal-cont-flex{
   width: 100%;
  flex-direction: column;
  gap: 30px;
  
   
  }

  .books-cont{
    order: -1;
    text-align: center;
    width: 100%;
  }

  .intimacy-with-god-img,.saved-by-grace-img{
    width: 100%;
  }


  .intimacy-with-god-cont,.saved-by-grace-cont{
    width: 100% ;
  }

  
  

  .container-flex{
   width: 100%;
   
  }

  .h3-coaching-txt{
    letter-spacing: 2px;
  }

  .about-us-cont-flex{
    flex-direction: column;
    width: 100%;
    height: auto;
    
    
  }

  .img-flex-direct-child-abt-us{
    order: -1;
    
  }

  .abt-us-txt-flex-dir-child{
    width: 100%;
    height: auto;
  }

  .led-facials-img{
    width: 100%;
    height: 400px;
  }

  .abt-us-txt-cont{
    
  }

  .p-kaylove-txt{
    text-align: center;
  }

  .footer-main-flex{
    flex-direction: column;
    width: 100%;
  }

  .contact-us-form-cont{
    width: 100%;
    height: auto;
    padding: 10px;
    
  }

  .name-email-cont-flex,.phone-address-cont-flex{
    flex-direction: column;
  }

  .subject-input,#message-area{
    width: 250px;
  }

  
  
    
   body,html{
    overflow-x: hidden;
    box-sizing: border-box;
    
  }

    
  }