
*{
    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; }

  }


  
.footer-main-flex{
 display: flex;
 justify-content: center;
 width: 80%;
 align-items: center;
 background-color: #ccc;
 margin: auto;
 padding: 10px;
 box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
 
   
}

.contact-us-main-container{
  width: 600px;
  height: 550px;
  
}

.h3-contact-us-head{
  border-bottom: 1px solid black;
  font-family: "playfair" ,sans-serif;
  font-weight: 400;
  font-size: 50px;
}

.contact-us-main-container{
  text-align: center;
}

.contact-us-txt-heead-cont{
  width: 300px;
  margin: auto;
}

.fa-location-dot{
  font-size: 30px;
  color: #D2B48C;
}

.p-loc-txt{
   font-family: "raleway", serif;
   font-weight: 400;
}


.fa-facebook{
 width: 50px;
 font-size: 30px;
}


.fa-youtube{
 width: 50px;
 font-size: 30px;
 color: #ff0000;
}


.fa-instagram{
 width: 50px;
 font-size: 30px;
 color: #e1306c;
 
 
}


.fa-tiktok{
 width: 50px;
 font-size: 30px;
 color: black;
 
 
}

.p-mail-to-txt{
   font-family: "raleway", serif;
   font-weight: 400;
   color: #000;
}

.mailto-link{
  text-decoration: none;
  cursor: pointer;
}

.p-phone-number{
  font-family: "raleway", serif;
   font-weight: 400;
   color: #000;
}


.contact-us-form-cont{
  width: 600px;
  height: 550px;
  font-family: "raleway" ,sans-serif;
  font-weight: 400;
 
  
  
}

.name-email-cont-flex{
  display: flex;
  gap: 5px;
}
.phone-address-cont-flex{
  display: flex;
  gap: 5px;
}

.location-addres-cont-span{
   margin-left: 20px;
}

.location-link,.phone-number-link,.mail-link,.send-mail-link{
  text-decoration: none;
  
}

.phone-number{
  margin-left: 20px;
}

.fa-phone{
  font-size: 30px;
  color: #D2B48C;
}

.mail-cont-span{
  margin-left: 20px;
}


.fa-envelope{
  font-size: 30px;
  color: #D2B48C;
}

.name-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
 background-color: #ccc;
  
}



.name-input:hover{
 border: 1px solid black;
}

.email-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
    
  
}


.email-input:hover{
 border: 1px solid black;
}

.tel-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
  
  
}

.tel-input:hover{
 border: 1px solid black;
}


.address-input{
  width: 250px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
    
}

.address-input:hover{
 border: 1px solid black;
}

.subject-input{
  width: 505px;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none; 
  background-color: #ccc;
}


.subject-input:hover{
 border: 1px solid black;
}

textarea{
  width: 505px;
  outline: none;
  height: 110px;
  border: none;
  border-bottom: 1px solid black;
  background-color: #ccc;
  
}

textarea:hover{
 border: 1px solid black;
}

.button-cont{
   width: 200px;
  margin: auto;
}

.send-message-btn{
  padding: 10px;
  width: 200px;
  margin: auto;
  border-radius: 4px;
  background-color: #000;
  color: white;
  font-family: "raleway", sans-serif;
  font-weight: 400;
}



    /*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;
    
  }

    
  }