@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  h1, h2, .pricing-title, .schedule-container .overlay-content a{
    font-family: 'Bebas Neue', sans-serif;
    text-shadow: #202120;
    text-wrap: balance;
  }
  
  body, p, li .schedule-container{
    font-family: 'Inter', sans-serif;
  }
  .navbar {
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ece7e3;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  /* Class to hide navbar */
  .navbar.hide {
    transform: translateY(-100%);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Hide checkbox */
  #menu-toggle {
    display: none;
  }
  
  /* Hamburger menu */
  .menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
    margin-right: 10px;
  }
  
  /* Nav links */
  .nav-links {
    font-family: 'Roboto', sans-serif;
    margin-top: 14px;
    margin-right: 10px;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-family: 'Roboto', sans-serif;
    text-shadow: #52524d 0.5px 0px 0px;
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    color: #949292;
  }

  .logo img {
    margin-left: 20px;
    height: 100px; 
    width: auto;
  }
  
  .hero-video {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .overlay-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 2rem;
  }
  
  .overlay-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 10px #000;
  }
  
  .overlay-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px #000;
  }
  
  .overlay-content .cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.8rem;
    background-color: rgb(66, 66, 66, 0.8);
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 
      background-color 0.3s ease,
      box-shadow 0.4s ease,
      transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .overlay-content .cta:hover {
    background-color: #212121;
    transform: translateY(-1px);
  }


  .experience {
    background-color: #f5f0f0;
    padding: 80px 20px;
    text-align: center;
  }
  
  .experience .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .experience h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .experience p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.8rem;
    background-color: #424242;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 
      background-color 0.3s ease,
      box-shadow 0.4s ease,
      transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    background-color: #212121;
    transform: translateY(-1px);
    size: 1.1rem;
  }


/* Pricing Section */   
  
  .pricing__carousel {
    background-color: #f5f0f0;
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding: 20px 20px;
    text-align: center;
  }
  
  .pricing_carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .carousel-slides {
    display: flex;
    background: #f5f0f0;
    min-height: 200px;
  }
  
  .carousel-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 30px;
    box-sizing: border-box;
    background-color: #f5f0f0;
    border-radius: 10px;
  }

  .carousel-slide img {
    max-height: 700px;
    max-width: 100%;

  }

  
  .carousel-slide h3 {
    font-size: 24px;
    color: #ece7e3;
    margin-bottom: 15px;
  }
  
  .carousel-slide p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .carousel-slide small {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  input[type="radio"] {
    display: none;
  }
  
  #slide1:checked ~ .carousel-slides { transform: translateX(0%); }
  #slide2:checked ~ .carousel-slides { transform: translateX(-100%); }
  #slide3:checked ~ .carousel-slides { transform: translateX(-200%); }
  #slide4:checked ~ .carousel-slides { transform: translateX(-300%); }
  #slide5:checked ~ .carousel-slides { transform: translateX(-400%); }
  
  .controls {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .controls label {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #212121;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
  }


/* Stylists Section */
.stylists-section {
    background: #222;
    padding: 60px 20px;
    margin: 0 auto;
  }
  
  .stylists-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #efd378;
  }
  
  .stylist {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .stylist img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .stylist-info {
    flex: 1;
    min-width: 250px;
    max-width: fit-content;
  }
  
  .stylist-info h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #efd378;
  }
  
  .stylist-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .stylist {
      flex-direction: column;
      text-align: center;
    }
  
    .stylist img {
      width: 100%;
      max-width: 400px;
    }
  
    .stylist-info {
      padding-top: 20px;
    }
  }

/* Instagram Section */

.insta-grid {
    background-color: #222;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .insta-grid h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  
  .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .insta-post {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
  }
  
  .insta-post:hover {
    transform: translateY(-5px);    
  }
  
  .insta-post img {
    width: 100%;
    display: block;
  }
  
  .post-info {
    display: flex;
    padding: 10px 15px;
    text-align: justify;
  }
  
  .caption {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
  }
  
  .likes {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #ff5f5f;

  }
  
  
  .cta-insta {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #efd378;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .cta-insta:hover {
    background-color: #c49e2f;
  }
  



/* Testimonials Section */

.testimonial-section {
    background-color: #f5f0f0;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif; 
  }
  
  .testimonial-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #222;
  }
  
  .testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    scrollbar-width: thin;
  }
  
  .testimonial {
    padding: 10px 0;
  }
  
  .testimonial p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  
  .testimonial span {
    display: block;
    font-weight: bold;
    color: #666;
  }
  
  .testimonial-box hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 12px 0;
  }
  
  /* Optional: Smooth scrolling */
  .testimonial-box {
    scroll-behavior: smooth;
  }

  .stars {
    color: #f4c542; 
    font-size: 1.2rem;
    margin: 5px 0;
    letter-spacing: 2px;
  }




/* Contact Section */

.contact-map-section {
    background-color: #222;
    color: #ece7e3;
    padding: 60px 20px;
  }
  
  .contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #efd378;
  }
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
  }
  .map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .map-heading {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .map-frame {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #444;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }
  
  .cta-map-btn {
    display: inline-block;
    width: 100%;
    align-self: center;
    margin-top: 15px;
    background-color: #f5f0f0;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .cta-map-btn:hover {
    background-color: #9c9c9c;
  }

  .contact-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .contact-btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  

  .call-btn {
    background-color: #a7f0aa;
    color: #000;
  }
  
  .call-btn:hover {
    background-color: #3cbd62;
  }
  
 
  .whatsapp-btn {
    background-color: #48e872;
    color: #000;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ba04c;
  }
  

  

  
  
  

  
  
  @media (min-width: 768px) {
    .contact-map-container {
      flex-direction: row;
      align-items: stretch;
    }
  
    .contact-info {
      width: 50%;
      padding-right: 40px;
    }
  
    .map-container {
      width: 50%;
    }
  }







 .container_footer {
    display: flex;
    background-color:#111;
    height: 60px;
    text-align: end;
    margin: 0 auto;
    padding: 0 20px;
  }


  .container_footer p {
    background-color: #111;
    font-family: 'Courier New', Courier, monospace;
    line-height: 40px;
    font-size: 0.7rem;
    color: #ffffff;
  }



  /* Mobile */
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background:#ece7e3   ;
      color: #222;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 1rem;
      box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
      border-radius: 0 0px 10px 10px;
    }
    .nav-links a {
      color:#222;
      border: #f1efef 0.5px solid;
      margin: 0.1rem 0.1rem;
      border-radius: 10px;
      padding: 0.5rem;
      font-size: 1rem;
      box-shadow: #d4d2d2 0.5px 0.5px 0.5px;
    }

    .nav-links a:hover {
        color:#212121;
        margin: 0.2rem 0;
        font-size: 1.1rem;
      }
  
    #menu-toggle:checked + .menu-icon + .nav-links {
      display: flex;
    }
    .logo img {
        height: 80px;
    }

  }


  
  /* Content sections for testing */
  main section {
    padding: 80px 20px;
    border-bottom: 1px solid #ccc;
  }
  

  .carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}