/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  background: url("../img/hero4.jpg") center no-repeat;
  background-size: cover;
  padding-bottom: 263px;
  position: relative;
}

.hero-content h3 {
  font-family: "Montserrat", cursive;
  color: var(--brand-secondary);
  font-size: clamp(1rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-top: 0.4rem;
}

.hero-text {
  text-align: center;
}

.hero-text p {
  justify-self: center;
  width: 56%;
  margin: 0 auto;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  position: relative;
  background: linear-gradient(to bottom, #9E1F63 0%, #b98a54 70%, #c09c66 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
  padding: 0  1rem 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bubble canvas */
#bubbles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

/* Content wrapper */
.services-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

/* =========================================================
   GRID LAYOUT — LEFT (Sessions + Coming Soon) / RIGHT (Packages)
   ========================================================= */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.services-left,
.services-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Individual service card */
.service-group {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* =========================================================
   HEADINGS + TEXT
   ========================================================= */
.service-group h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.service-group h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--brand-highlight);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-group p {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 0.25rem;
}

/* =========================================================
   SERVICE ITEM / IMAGE
   ========================================================= */
.service-item {
  text-align: center;
}

.service-btns {
  display: flex;
  justify-content: center;
  align-items: center; /* forces equal vertical alignment */
  gap: 2rem;
}

.service-image {
  width: 80%;
  max-width: 400px;
  height: auto;
  margin-top: 1rem;
  border-radius: 120px;
}

.double-break {
  display: block;
  width: 100%;
  height: 0.25rem; /* adjust freely */
  line-height: 10;
  margin: 0.25rem 0 0.5rem 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-gold,
.btn-magenta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-height: 70px;
  padding: 0;
  border-radius: 50%;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 2.5rem 1rem 0.25rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.btn-gold {
  background: var(--brand-secondary);
}

.btn-gold:hover {
  background: #E6C761;
  transform: translateY(2px);
}

.btn-magenta {
  background: var(--brand-primary);
}

.btn-magenta:hover {
  background: #C14C89;
  transform: translateY(2px);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .services-left,
  .services-right {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .service-group {
    padding: 2rem 1.5rem;
  }

  .hero-text p {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .btn-gold,
  .btn-magenta {
    font-size: 0.95rem;
    width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .services-section {
    padding: 4rem 1rem 5rem;
  }

  .service-group {
    padding: 1.75rem 1.25rem;
  }
}