/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: var(--default-font);
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

section h2{
    text-align: center;
    /* margin-bottom: 4rem; */
}

h1, h2, h3, h4, h5{
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

:root{
    --primary-color: #222222;
    --dark-primary-color: #ffffff;
    --secondary-color: #f5f5f5;
    --text-color: #777777;
    --divider-color: #DDDDDD;
    --dark-text-color: #AEAEAE;
    --dark-divider-color: rgba(255, 255, 255, 0.10);
    --error-color: rgba(233, 87, 87);
    --accent-font: "Hanken Grotesk", sans-serif;
    --default-font: "DM Sans", sans-serif;
    --transition: all 0.3s ease-in-out;
    --image-filter: grayscale(100%);
    --image-filter-hover: grayscale(0);
}

.sticky{
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 0.2px solid var(--dark-primary-color);
}

/* ------------   navbar  -----------------*/

nav{
    width: 100%;
    height: 100px;
    display: flex;
    background-color: #222;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0%;
    left: 0%;
    padding: 0 16%;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 2px solid #D5AC63;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: .5rem;              
}

.logo img {
  width: 150px;            
  height: auto;
}

nav .menu{
    display: flex;
    align-items: center;
    gap: 45px;
}

nav .menu li a{
    color: var(--dark-primary-color);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 600;
}

nav .menu li a:hover{
    color: #F09433;
}

#toggle{
    display: none;
}

.social1{
    width: 65px; /* Ensure both buttons are the same size */
    height: 65px; 
    position: fixed;
    right: 10px;
    border-radius: 60%; /* Make it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
    bottom: 30px;
    background: linear-gradient(45deg, rgb(35, 205, 20));
}
.social1 a{
    font-size: 2.6rem;
    color: var(--dark-primary-color);
}

.social2{
    width: 65px; /* Ensure both buttons are the same size */
    height: 65px; 
    position: fixed;
    right: 10px;
    border-radius: 60%; /* Make it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
    bottom: 100px;
    background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.social2 a{
    font-size: 2.6rem;
    color: var(--dark-primary-color);
}


/* Hero Section */
.hero-section{
    width:100%;
    position:relative;
    font-family:'Mulish', sans-serif;
}

.banner img {
  width: 100%;
  height: 80vh;
  margin-top: 6em;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#F09433;
    padding:20px;
}

.content h5{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
    color:#F09433;
}

.content h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    border: 2px solid #F09433;
}

.btn:hover {
  color: white;
  background: #F09433;
}

/* -------------FEATURES------------------*/
.MySplide{
    background-color: #D5AC63;
    padding: 30px 0;
}

.Feature-Tricker-Splide{
    width: 250px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.Feature-Tricker-Splide img{
    width: 10%;
}

/* ================== SalonInfo Section =================== */
.salon-info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: #fff;
  padding: 7rem 6rem;
  align-items: center; 
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem;
}

.welcome-box{
    padding: 2rem;
}

.welcome-box h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.dividers{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lines {
  width: 45px;
  height: 1px;
  background: #F09433;
}

.scissors-icon {
  font-size: .91rem;
  color: #F09433;
}

.black-txt {
  color: #D5AC63;
}

.highlighted-txt {
  color: #F09433;
  font-style: italic;
}

.welcome-box p {
  color: #858585;
  text-align: center;
  margin-bottom: 1rem;
}

.read-more {
  color: #F09433;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.image-box {
  padding: 0; 
}

.image-box img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-box img:hover {
  transform: scale(1.05);
}

.hours-box {
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}

.hours-box {
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0,0,0,.9);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #D5AC63;
}

 .hours-box::before,
 .hours-box::after{
    content: '';
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.hours-box::before{
    background: #F09433;
    top: -10%; left: 80%;
}

.hours-box::after{
    background: #F09433;
    bottom: -10%; right: 80%;
}

.hours-box h3 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.line {
  width: 50px;
  height: 1px;
  background: #ffffff;
}

.scissor-icon {
  font-size: 1rem;
  color: #ffffff;
}

.hours-box p {
  font-size: 1.2rem;
}

.additional-info {
  margin-top: 1rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.additional-info p{
  font-size: .8rem;
}

/*----------------SERVICE SECTION------------------*/
.Service {
  background-color: #fafafa;
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service_titles {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.service_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service_item {
  background-color: #fafafa;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F09433;
  width: 100px;
  height: 100px;
  padding: 16px;
  border-radius: 50px 50px 50px 10px;
  transition: 0.3s ease;
}

.section_icon img {
  width: 60%;
  height: auto;
}

.section_icon:hover {
  transform: scale(1.05);
}

.section_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section_content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section_content p {
  font-size: 1rem;
  font-weight: 500;
  color: #797979;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

.section_title h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.section_title h2 {
  font-size: 2.3rem;
  font-family: var(--accent-font);
}


/* ================= SERVICES SECTION ================= */
.services-section{
    padding:80px 20px;
    background: url(../images/360_F_245305798_WlbLdMcayLXDwBp8T4spbixz6Dmk3hBP.jpg) no-repeat/center cover ;
    
}

.services-title{
    text-align:center;
    font-size:40px;
    font-weight:800;
    color:#F09433;
    margin-bottom:10px;
}

.services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.service-card{
    width:100%;
    overflow:hidden;
    border-radius:5px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    background:#D5AC63;
    padding: 5px;
}

.service-card img{
    width:100%;
    height:450px;
    display:block;
    transition:transform 0.4s ease;
}

.service-card:hover img{
    transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media(max-width:1024px){
  .services-section{
    padding:70px 18px;
}
    .services-grid{
        grid-template-columns:repeat(3, 1fr);
        gap: 20px;
    }

    .service-card img{
        height:450px;
    }
}

/* Tablet */
@media(max-width:768px){
 .services-section{
    padding:70px 18px;
} 
    .services-title{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .service-card img{
        height:420px;
    }
}

/* Mobile */
@media(max-width:480px){
    .services-section{
        padding:60px 15px;
    }

    .services-title{
        font-size:24px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card img{
        height:430px;
    }
}

.our-work-section {
  /* background: url('../images/hairsalon-client-mask.jpg') center/cover no-repeat; */
  padding: 3rem 1rem;
  background: #D7C7AE;
  position: relative;
  color: #fff;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.highlighted-text {
  color: #8a6d46;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.line {
  width: 50px;
  height: 1px;
  background: #ebebeb;
}

.scissor-icon {
  color: #ebebeb;
  font-size: 1rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 9rem; 
}

.work-box {
  padding: 0;
  overflow: hidden;
  width: 320px;
  height: 370px;
  display: flex;
}

.work-box img,
.work-box video {
  width: 100%;
  height: 100%;
  border-radius: 2%;
  object-fit: cover; 
  display: block;
}


/* Video Wrapper with Play Button */
.video-wrapper {
  position: relative;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 2rem;
  color: #C48981;
  padding: 0.55rem 1rem;
  border-radius: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 1);
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-container {
  position: relative;
  width: 100%; 
  max-width: 320px;
}

#modalVideo {
  width: 100%;
  height: auto;
  display: block;
}

.close-modal {
  position: absolute;
  top: 5%;
  left: 100%;
  transform: translate(-20%, -80%);
  background: #ffff;
  border: none;
  font-size: 1.85rem;
  color: #C48981;
  padding: 0.05rem 1rem;
  border-radius: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* ======================== footer ========================== */
.footer-section {
  background-color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  overflow: hidden;
    position: relative;
    z-index: 1;
    background: url(../images/bg.jpg);  
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-section::before,
.footer-section::after {
    content: '';
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.footer-section::before {
    background: #F09433;
    top: -20%; 
    left: 90%;
}

.footer-section:after {
    background: #F09433;
    bottom: -10%; 
    right: 90%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-cols {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  color: #F09433;
  font-size: 1.1rem;
  font-style: italic;
  display: flex;
  margin-top: 5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 0.7rem;
  color: #F09433;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.bordered-col {
  border-left: 1.5px solid #F09433;
  padding-left: 1rem;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #F09433;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-info li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #F09433;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D5AC63;
}

.contact-info li{
    color: #F09433;
}

.contact-info i {
  margin-right: 0.26rem;
  color: #F09433;
}

/* Divider & Copyright */
.footer-divider {
  margin: 2rem auto 1rem;
  width: 100%;
  height: 1px;
  background: #F09433;
  border: none;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #F09433;
}


/* --------------------------- RESPONSIVE SCREENS ------------------------- */
@media screen and (max-width: 1400px) {
    nav{
        padding: 0px 10%;
    }

     .MySplide{
        padding: 20px 0;
    }
}

@media screen and (max-width: 1200px) {
   nav{
        padding: 0px 8%;
    }
  }

  @media screen and (max-width: 1024px) {
      .salon-info-section {
    grid-template-columns: 1fr; 
    padding: 5rem 3rem;
    gap: 1rem;
  }

  .welcome-box h2 {
    font-size: 1.7rem;
  }

  .hours-box h3 {
    font-size: 1.7rem;
  }

  .image-box img {
    height: auto; 
  }

   .Service {
    padding: 3rem 2rem;
  }

  .service_wrap {
    grid-template-columns: 1fr, 1fr;
    gap: 1.5rem;
  }

  .section_content h2 {
    font-size: 1.1rem;
  }

  .section_content p {
    font-size: 0.95rem;
  }

   /* ========================== WORK SECTIOn ============================= */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 4rem;
  }

  .work-box {
    width: 100%;
    height: 320px;
  }

  .video-container {
    max-width: 90%;
  }

  .close-modal {
    left: 95%;
    transform: translate(-50%, -80%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  @media screen and (max-width: 900px) {
     #toggle{
        display: block;
        font-size: 2.3rem;
        font-weight: 700;
        color: #D5AC63;
    }

    nav{
        padding: 0px 2%;
    }

    .menu{
        height: 0;
        position: absolute;
        flex-direction: column;
        align-items: start !important;
        top: 100%;
        left: 0%;
        width: 100%;
        background-color: var(--dark-primary-color) !important;
        padding-left: 5%;
        opacity: 0;
        overflow: hidden;
        transition: all .2s;
        z-index: 999;
        gap: 30px !important;
        padding-top: 20px;
        border-bottom: 1px solid var(--primary-color);
    }

    .menu li button{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 20px;
    }

    .menu li a{
        color: var(--primary-color) !important;
    }

    .show-menu{
        height: 220px;
        opacity: 1;
    }
  }

    .Feature-Tricker-Splide{
        width: 180px;
        font-size: 1rem;
    }

  @media screen and (max-width: 768) {
    .content h2{
    font-size:28px;
}
  }

  @media screen and (max-width: 600px) {
    .logo img {
      width: 65%;
    }

     .content{
    width:100%;
    padding:0 45px;   
}

.content h5{
    white-space: nowrap;
    font-size:12px;
}

.content h2{
    font-size:22px;
}

.btn{
    padding:10px 22px;
    font-size:14px;
}

  .salon-info-section {
    padding: 3rem 1.2rem;
  }

  .info-box {
    padding: 1rem 1rem;
  }

  .welcome-box h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .welcome-box p,
  .read-more {
    text-align: center;
  }

  .hours-box{
    padding: 2rem;
  }
  .hours-box h3 {
    font-size: 1.5rem;
  }

  .hours-box p {
    font-size: 1.1rem;
  }

  .additional-info p {
    font-size: 0.95rem;
  }

  .divider .line {
    width: 40px;
  }

  .scissor-icon {
    font-size: 0.8rem;
  }

  .image-box img {
    width: 100%;
    height: auto;
  }

  .Service {
    padding: 2.5rem 1rem;
  }

  .service_wrap {
    grid-template-columns: 1fr;
  }

  .section_title h2 {
    font-size: 1.8rem;
  }

  .section_title h3 {
    font-size: 1rem;
  }

  .section_icon {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .section_icon img {
    width: 70%;
  }

  .section_content h2 {
    font-size: 1rem;
  }

  .section_content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

   /* ========================== WORK SECTION ============================= */
.section-heading {
    font-size: 1.8rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .work-box {
    width: 100%;
    height: 400px;
  }

  .play-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }

  .video-container {
    max-width: 75%;
  }

  .close-modal {
    left: 90%;
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-section {
    padding: 3rem 1rem 1rem;
  }

.footer-section::before {
    background: #bda277;
    top: -10%; 
    left: 80%;
}

.footer-section:after {
    background: #bda277;
    bottom: -10%; 
    right: 80%;
}

  .footer-brand {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}