*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root{
    --color-primary: #6c63ff;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-light: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #2e3267;
    --color-bg2: #424890;
    
    --container-width-lg: 80%;
    --container-width-md: 90%;
    --container-width-sm: 94%;

    --transition: all 400ms ease;
}

body{
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.container{
    width: var(--container-width-lg);
    margin: 0 auto;
}


section h2{
    text-align: center;
    margin-bottom: 4rem;
}

h1, h2, h3, h4, h5{
    line-height: 1.2;
}

h1{
    font-size: 2.4rem;
}

h2 {
    font-size: 2rem;
}

h3{
    font-size: 1.6rem;
}

h4{
    font-size: 1.3rem;
}

a{
    color: var(--color-white);
}

img{
    width: 100%;
    display: block;
    object-fit: cover;
}

.btn{
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
}

.btn:hover{
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-primary{
    background: var(--color-danger);
    color: var(--color-white);
}

/*================ NAVBAR =======================*/
nav{
    background: var(--color-white);
    width: 100%;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
    box-shadow: 0 0  15px rgba(0, 0, 0, 0.2);
}
/* // change navbar by scrolling using javascript // */
.window-scroll{
    background: var(--color-black);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.nav_container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_container a h4{
    color: #000;
}

.nav_container a h4 span{
    color: #D7C7AE;
}

nav button{
    display: none;
}

.nav_menu{
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav_menu a{
    color: var(--color-black);
    font-size: 1rem;
    transition: var(--transition);
}

.nav_menu a:hover{
    color: #a0855a;
}

.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(--color-white);
}

.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(--color-white);
}

/* ================== Video Banner =================== */
.video-banner {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-top: 5rem;
  position: relative;
}

.video-banner video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}

.kite-content {
    position: absolute;
    top: 35%;
    left: 22%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kite-content h1 {
    font-size: 5rem;
    color: #bda277;
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); 
}


/* -------------FEATURES------------------*/
.MySplide{
    background-color: #D7C7AE;
    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: #bdbdbd;
}

.scissors-icon {
  font-size: .91rem;
  color: #bdbdbd;
}

.black-txt {
  color: #b49c75;
}

.highlighted-txt {
  color: #8a6d46;
  font-style: italic;
}

.welcome-box p {
  color: #858585;
  text-align: center;
  margin-bottom: 1rem;
}

.read-more {
  color: #C48981;
  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: #8a6d46;
}

 .hours-box::before,
 .hours-box::after{
    content: '';
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.hours-box::before{
    background: #f3efec;
    top: -10%; left: 80%;
}

.hours-box::after{
    background: #d7c7ae;
    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 {
  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: #272727;
  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 {
  margin-top: 0 !important;
  padding: 2rem 5rem;
  background: url('../images/pricing.jpg');
  background-attachment: fixed;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.divid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lin {
  width: 50px;
  height: 1px;
  background: #bdbdbd;
}

.scissorss-icon {
  font-size: .91rem;
  color: #bdbdbd;
}

.black-text {
  color: #D7C7AE;
}

.highlight-text {
  color: #a0855a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding: 1rem;
}

.service-box {
    height: 400px;
    width: 300px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0,0,0,.9);
    text-align: left;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #8a6d46;
}

.service-box::before,
.service-box::after {
    content: '';
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.service-box::before {
    background: #f3efec;
    top: -10%; 
    left: 80%;
}

.service-box::after {
    background: #d7c7ae;
    bottom: -10%; 
    right: 80%;
}

.service-content {
  padding: 2rem;
  width: 95%;
}

.service-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.65rem;
  text-align: center;
  color: #D7C7AE;
}

.service-content p {
  margin-bottom: 1.25rem;
  color: #dcdcdc;
  text-align: center;
  font-size: .9rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.service-list .item {
  display: flex;
  justify-content: space-between;
  color: #fff3e0;
  text-align: left;
  font-size: 0.95rem;
}

/* ==================== OUR WORK ==================== */
.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;
}

.footer-section::before,
.footer-section::after {
    content: '';
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    opacity: .5;
}

.footer-section::before {
    background: #bda277;
    top: -20%; 
    left: 90%;
}

.footer-section:after {
    background: #bda277;
    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: #8a6d46;
  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: #d7c7ae;
  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 #bda277;
  padding-left: 1rem;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #8a6d46;
}

.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: #a0855a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C48981;
}

.contact-info li{
    color: #a0855a;
}

.contact-info i {
  margin-right: 0.26rem;
  color: #8a6d46;
}

/* Divider & Copyright */
.footer-divider {
  margin: 2rem auto 1rem;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  border: none;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}







/* ==================== MEDIA QUERIES(TABLETS) ==================== */
@media screen and (max-width: 1024px) {
    .container{
        width: var(--container-width-md);
    }
    h1{
        font-size: 2.2rem;
    }
    h2{
        font-size: 1.7rem;
    }
    h3{
        font-size: 1.4rem;
    }
    h4{
        font-size: 1rem;
    }

    /* ==================== NAVBAR =================== */
    nav button{
        display: inline-block;
        background: transparent;
        font-size: 1.8rem;
        color: var(--color-black);
        cursor: pointer;
    }

    nav button#close-menu-btn{
        display: none;
    }
 
    .nav_menu{
        position: fixed;
        top: 5rem;
        right: 5%;
        height: fit-content;
        width: 18rem;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav_menu li{
        width: 100%;
        height: 5.8rem;
        animation: animateNavItems 400ms linear forwards;
        transform-origin: top right;
        opacity: 0;
    }

    .nav_menu li:nth-child(2){
        animation-delay: 200ms;
    }

    .nav_menu li:nth-child(3){
        animation-delay: 400ms;
    }
    .nav_menu li:nth-child(4){
        animation-delay: 600ms;
    }

    @keyframes animateNavItems {
        0%{
            transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
        }
        100%{
            transform: rotateZ(0) rotateX(0) scale(1);
            opacity: 1;
        }
    }

    .nav_menu li a{
        background: #000;
        color: #C48981;
        box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
    }

    .nav_menu li a:hover{
        background: #a0855a;
        color: var(--color-white);
    }

    .kite-content {
        top: 30%;
        left: 15%;
    }
    .kite-content h1 {
        font-size: 3.5rem;
    }

    /* ==================== SalonInfo Section =================== */
    .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; 
  }

  .services-section {
    padding: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }
  .service-box {
    width: 90%;
    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 QUERIES(PHONES) ======================= */
    @media screen and (max-width: 600px) {
        .container{
            width: var(--container-width-sm);
        }

    /* ==================== NAVBAR ======================= */
    .nav_menu{
        right: 3%;
    }
    
.nav_container a h4{
  font-size: .9rem;
}
    /* ==================== Video Banner =================== */
.video-banner{
    height: 80vh;
}

.kite-content {
    width: 100%;
        top: 45%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 1rem;
    }
    .kite-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }

  .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;
  }

    /* ==================== SalonInfo Section =================== */
    .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;
  }

  .section-heading {
    font-size: 1.8rem;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-box {
    width: 100%;
    height: auto;
  }
  .service-content {
    padding: 1.2rem;
  }
  .service-content h3 {
    font-size: 1.4rem;
  }
  .service-content p {
    font-size: 0.85rem;
  }

  /* ========================== 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;
  }
}