/* Google Font */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background:linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb); /* Match logo color */

    color: #333;
}

/* Navbar Styling */
.navbar {
    background-color: #222; /* Dark theme for elegance */
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    margin-left: 15px;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e20b83; /* Pink accent color */
}
 

.navbar-logo img {
    max-height: 80px;
    width: 80;
}

@media (max-width: 768px) {
    .navbar-logo img {
        max-height: 60px;
    }
}
/* Fullscreen hero */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

}

/* Make carousel images cover full screen */
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: transform 10s ease; /* smooth zoom */
}

/* Optional subtle zoom effect on hover */
.carousel-item.active img {
  transform: scale(1.05);
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity */
  z-index: 1;
}

/* Hero text styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.carousel-caption h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
}

/* Responsive text */
@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
}

/* Optional: carousel controls color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 50px;
  height: 50px;
}

/* Button Styling (for future use) */
.btn-custom {
    background-color: #ff4081;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #e73370;
}
.home-about {
  background: linear-gradient(135deg, #fff, #ffe4ec); /* soft elegant */
}

.home-about::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 64, 129, 0.08);
  border-radius: 50%;
}  
.home-services {
  background: linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
}

.home-services .btn-light {
  background: #fff;
  color: #ff4081;
}

/* About Section Styling */
.about-salon {
    padding: 80px 20px;
    background: #fdfdfd;
    font-family: system-ui, sans-serif;
  }

  .about-salon .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    object-fit: cover;
  }

  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }

  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
  }

  .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #e91e63;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  .btn:hover {
    background: #c2185b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-salon .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-content {
      margin-top: 20px;
    }
  }
    .testimonial-section {
    padding: 80px 20px;
    background:linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb, #6e48aa);
    font-family: system-ui, sans-serif;
  }

  .testimonial-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
  }

  .testimonial-slider {
    min-height: 150px;
    position: relative;
  }

  .testimonial {
    display: none;
    animation: fade 0.6s ease;
  }

  .testimonial.active {
    display: block;
  }
  .testimonial img {
  width: 300px;   /* adjust size */
  height: 300px;  /* make square */
  object-fit: cover; 
  border-radius: 5%;
  margin-bottom: 50px;
}
  .testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
  }

  .testimonial h4 {
    margin: 0;
    font-weight: bold;
    color: #e91e63;
  }

  .dots {
    margin-top: 20px;
    text-align: center;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active {
    background-color: #e91e63;
  }

   .testimonial-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    object-fit: cover;
  }

  @keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-section .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .testimonial-image {
      margin-bottom: 30px;
    }
  }

  /* service styling*/
 body {
      background: linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
    }
    .service-header img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
    }
    .service-card {
      background:#f9f9f9;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 50px;
      padding: 25px;
    }
    .sub-card {
      background: #fa7ba5;
      border-radius: 12px;
      box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: 0.3s;
      text-align: center;
    }
    .sub-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
    }
    .sub-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .sub-card-body {
      padding: 15px;
    }
    .sub-card h5 {
      margin-bottom: 8px;
      font-size: 1.1rem;
      color: #2b4a53;
    }
    .title {
      text-align: center;
      margin-bottom: 10px;
      font-size: 2.4rem;
      font-weight: bold;
      color: #2b4a53;
    }
    .subtitle {
      text-align: center;
      margin-bottom: 40px;
      color: #777;
    }
    .search-bar {
      max-width: 500px;
      margin: 0 auto 50px auto;
    }
/*---courses styling---*/
.hero-courses {
  background:  linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
  padding: 100px 20px;
}

.hero-courses h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-courses p {
  font-size: 1.2rem;
}

/* Courses Cards */
.course-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.course-card img {
  height: 220px;
  object-fit: cover;
}

.btn-gradient {
  background: linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us h2 {
  font-weight: 700;
  margin-bottom: 40px;
}
.text-gradient {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


                                        /*------DEALS PAGE-----*/

/* ===== Hero Section (White Background) ===== */
.hero-deal {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
  background: #fff; /* White background */
  color: #333;      /* Dark text for readability */
}

.hero-deal-text {
  position: relative;
  z-index: 2;
}

.hero-deal h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8e44ad; /* Matches theme */
}

.hero-deal p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #555;
}

/* ===== Deals Section (Gradient Background) ===== */


.deal-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  background:pink; /* keep cards white inside gradient section */
}

.deal-card:hover {
  transform: translateY(-10px);
}
.deal-card img {
  height: 220px;
  object-fit: cover;
}

.badge-deal {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.deal-price {
  margin: 15px 0;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.price-new {
  font-size: 1.4rem;
  color: black;
  font-weight: bold;
}



/* BOOK APPOINTMENT PAGE Hero Section */
.hero-appointment {
  position: relative;
  text-align: center;
  color: white;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:none;
  overflow: hidden;
}

/* Hero Background Image */
.hero-appointment .hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:0;
}

/* Overlay */
.hero-appointment::after {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1; 
}

/* Text */
.hero-appointment .hero-text {
  position: relative;
  z-index: 2; 
}

.hero-appointment h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-appointment p {
  font-size: 1.2rem;
}

/* Gradient Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 30px;
  transition: 0.3s;
  border: none;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
/* Appointment Section (Black Background) */
.appointment-section {
  background:linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb); /* black background */
  padding: 100px 20px;
}
/* Multi-step Form Card */
.appointment-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-top: -80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Form fields with gradient background */
.appointment-card .form-control,
.appointment-card .form-select {
  background: linear-gradient(135deg, #fce3f1, #e6d4ff);
  border: none;
  border-radius: 10px;
  color: #333;
}
.appointment-card .form-control:focus,
.appointment-card .form-select:focus {
  box-shadow: 0 0 8px rgba(255, 120, 200, 0.7);
}

/* Steps navigation */
.step {
  display: none;
}
.step.active {
  display: block;
}
.step-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* Success message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px;
  background: linear-gradient(90deg, #43e97b, #38f9d7);
  color: #fff;
  border-radius: 20px;
}

/* Steps Section with gradient background */
.steps-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
  color:linear-gradient(135deg, #ff758c, #ff7eb3, #9d50bb);
}
.steps-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
}
.steps-section .step-box {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}
.steps-section .step-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25);
}
.steps-section i {
  font-size: 3rem;
  margin-bottom: 10px;
}
.steps-section h5 {
  font-weight: 600;
}


 


 footer {
      background-color: black;
      color: #ddd;
      padding: 20px 20px;
      font-size: 15px;
    }
    footer h5 {
      color: #fff;
      font-weight: bold;
      margin-bottom: 15px;
    }
    footer h5::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background:#ff4081;
      margin-top: 5px;
    }
    .footer-logo img {
      max-height: 60px;
    }
    .app-buttons img {
      height: 40px;
      margin: 5px;
    }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #333;
      padding-top: 15px;
      margin-top: 20px;
      font-size: 13px;
      color: #888;
    }
    .app-buttons img {
  height: 40px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.app-buttons img:hover {
  transform: scale(1.05);
}