html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff7f9; /* Matches the wave and soft aesthetic */
  color: #333;
  line-height: 1.6;
}

/* Header Section */
header {
  background: linear-gradient(to right, #ff9fb2, #ffc0cb); /* Soft gradient */
  padding: 2rem 2rem 1.5rem;
  border-bottom: 5px solid #fff0f5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
  text-align: center;
}

.navbar {
  max-width: 1200px;
  margin: auto;
}

.top {
  font-size: 2.2rem;
  font-family: 'Brush Script MT', cursive;
  color: white;
  text-shadow: 1px 1px 4px rgba(255, 105, 180, 0.4);
  margin: 0 0 0.8rem;
}

/* Navigation */
.navlinks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navlinks a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navlinks a:hover {
  background-color: white;
  color: #d63384;
}

/* Header Wave Divider */
.header-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
}

.header-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Section Layout */
section {
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  transition: all 0.4s ease-in-out;
}

section::after {
  content: "";
  display: block;
  margin: 2.5rem auto 0;
  width: 50px;
  border-bottom: 2px solid #ffd3e0;
}

/* Optional Alternating Section Backgrounds */


#courses {
  background-color: #ffe4ec;
}

#booking {
  background-color: #fff7f9;
}

#contact {
  background-color: #ffe4ec;
}

#hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff, #ffe6f0);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero .hero-content {
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

#hero h1 {
  font-size: 3rem;
  color: #d63384;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
}

#hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-gallery .hero-img {
  aspect-ratio: 1 / 1; 
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-gallery .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}


.hero-gallery .hero-img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.hero-gallery .hero-img:hover img {
  transform: scale(1.1);
}


#services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffe6f0, #fff); /* soft gradient */
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #d63384; /* vibrant pink */
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

#services h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #d63384;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Service Category Card */
.service-category {
  margin-bottom: 50px;
  padding: 30px 25px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,192,203,0.2), transparent 70%);
  transform: rotate(25deg);
}

.service-category:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-category h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff4f81;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.service-category h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ff4f81;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-category ul li {
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.service-category ul li:last-child {
  border-bottom: none;
}

.service-category ul li:hover {
  color: #d63384;
}

/* Price Styling */
.service-category ul li::after {
  content: "💅"; /* cute icon */
  margin-left: 10px;
  opacity: 0.6;
  font-size: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-category ul li:hover::after {
  transform: rotate(15deg) scale(1.2);
  opacity: 1;
}



#showFormBtn:hover {
  background: #ff1493;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button[type="submit"] {
  padding: 0.8rem;
  background: #ff69b4;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

form button[type="submit"]:hover {
  background: #ff1493;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

#goBackBtn {
  background: #ccc;
  color: #333;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
}

#goBackBtn:hover {
  background: #aaa;
}

/* Footer */
footer {
  background: #ffb6c1;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .service-list,
  .course-list {
    flex-direction: column;
    align-items: center;
  }

  form {
    width: 90%;
  }
  
}