/* ========================================
   MOBILE-FIRST DESIGN - GLOW BY SHANICA
   ======================================== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #faf8fc;
  color: #2d2d2d;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* === HEADER (MOBILE-FIRST) === */
header {
  position: sticky;
  top: 0;
  background: transparent;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #b38cb4;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(179, 140, 180, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
}

.logo:hover {
  color: #9f76a0;
  background: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 15px rgba(255, 255, 255, 1), 0 0 25px rgba(179, 140, 180, 0.8);
}

.menu-toggle {
  display: none;
}

nav {
  display: none;
}

/* === HERO SECTION === */
.hero {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(135deg, #f3e6f5 0%, #faf8fc 100%);
  text-align: center;
}

.hero-content {
  max-width: 100%;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(179, 140, 180, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero h1 {
  font-size: 2rem;
  color: #b38cb4;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: #b38cb4;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #9f76a0;
  box-shadow: 0 6px 20px rgba(179, 140, 180, 0.4);
  transform: translateY(-2px);
}

/* === SECTIONS === */
section {
  padding: 2.5rem 1.25rem;
}

section h2 {
  font-size: 1.85rem;
  color: #b38cb4;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

section h3 {
  font-size: 1.4rem;
  color: #b38cb4;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* === ABOUT SECTION === */
.about {
  background: #fff;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.profile-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(179, 140, 180, 0.2);
  object-fit: cover;
}

.about-content div {
  text-align: center;
}

.about-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* === SERVICES SECTION === */
.services {
  background: linear-gradient(135deg, #faf8fc 0%, #f3e6f5 100%);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 3px 12px rgba(179, 140, 180, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #b38cb4;
}

.service-card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(179, 140, 180, 0.15);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
  flex: 1;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b38cb4;
  white-space: nowrap;
  margin-left: 1rem;
}

.service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.service-duration {
  color: #999;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Add-ons styling */
.addon-item {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.addon-description {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.4;
}

.addon-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #b38cb4;
  white-space: nowrap;
}

/* === GALLERY SECTION === */
.gallery {
  background: #fff;
}

/* === PRICING BY CATEGORY === */
.pricing-categories {
  background: #fff;
}

.category-section {
  background: #f8f4fa;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(179, 140, 180, 0.1);
  margin-bottom: 1rem;
}

.category-header h3 {
  margin-bottom: 0.35rem;
}

.category-header p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.category-prices {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(179, 140, 180, 0.1);
}

.price-list {
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ead9ee;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list span {
  font-weight: 600;
  color: #2d2d2d;
}

.price-list strong {
  color: #b38cb4;
  font-weight: 700;
  font-size: 1.05rem;
}

.price-list em {
  color: #888;
  font-style: normal;
  font-size: 0.9rem;
}

.price-subheading {
  font-size: 1.05rem;
  color: #6f4f70;
  margin: 0.5rem 0 0.25rem;
  font-weight: 700;
}

.item-note {
  color: #666;
  font-size: 0.9rem;
  margin: 0.25rem 0 0.5rem;
}

/* === SERVICE ACCORDION/DROPDOWN === */
.service-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  transition: color 0.2s;
}

.service-toggle:hover {
  color: #b38cb4;
}

.arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
  color: #b38cb4;
}

.arrow.open {
  transform: rotate(-180deg);
}

.service-desc {
  display: none;
  grid-column: 1 / -1;
  background: #f8f4fa;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  border-left: 3px solid #b38cb4;
}

.service-desc.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Update price-list li to accommodate descriptions */
.price-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: start;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ead9ee;
}

.duration {
  color: #888;
  font-style: normal;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 500;
}

.category-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.category-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.gallery-tab {
  background: #f3e6f5;
  color: #b38cb4;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(179, 140, 180, 0.1);
}

.gallery-tab.active {
  background: #b38cb4;
  color: #fff;
  box-shadow: 0 4px 12px rgba(179, 140, 180, 0.3);
}

.slideshow-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.gallery-category {
  display: none;
}

.gallery-category:first-of-type {
  display: block;
}

.slides-wrapper {
  position: relative;
  background: #f8f4fa;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.15);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 400px;
  object-fit: contain;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(179, 140, 180, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 10;
}

.slide-prev {
  left: 8px;
}

.slide-next {
  right: 8px;
}

.slide-prev:active,
.slide-next:active {
  background: #b38cb4;
  transform: translateY(-50%) scale(0.95);
}

.slide-counter {
  text-align: center;
  margin-top: 1rem;
  color: #b38cb4;
  font-weight: 600;
  font-size: 1rem;
}

/* === LIGHTBOX === */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.lightbox-content {
  max-width: 95%;
  max-height: 90%;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-modal .close:hover {
  color: #b38cb4;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background: linear-gradient(135deg, #faf8fc 0%, #f3e6f5 100%);
}

.testimonials-carousel {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.15);
  text-align: center;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.star-rating svg {
  width: 22px;
  height: 22px;
  fill: #b38cb4;
}

.testimonial-card span {
  font-weight: 600;
  color: #b38cb4;
  font-size: 1.05rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #b38cb4;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: #b38cb4;
  width: 12px;
  height: 12px;
}

/* === BOOKING SECTION === */
.booking {
  background: #fff;
}

.payment-booking-info {
  background: #f8f4fa;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(179, 140, 180, 0.1);
}

.payment-booking-info h3 {
  color: #b38cb4;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.payment-booking-info ol {
  margin-left: 1.25rem;
  color: #555;
  line-height: 1.7;
}

.payment-booking-info li {
  margin-bottom: 1rem;
}

.payment-booking-info strong {
  color: #b38cb4;
}

.booking-placeholder {
  text-align: center;
}

.booking-placeholder a {
  display: inline-block;
  background: #b38cb4;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.3);
  transition: all 0.3s;
}

.booking-placeholder a:hover {
  background: #9f76a0;
  transform: translateY(-2px);
}

/* === CONTACT SECTION === */
.contact {
  background: linear-gradient(135deg, #f3e6f5 0%, #faf8fc 100%);
}

.contact-content {
  max-width: 100%;
}

.contact-details {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.12);
}

.contact-details p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #555;
}

.contact-details strong {
  color: #b38cb4;
  font-weight: 600;
}

.contact-details a {
  color: #b38cb4;
  text-decoration: none;
  font-weight: 500;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
}

.contact-details li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: flex-start;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s;
}

.social-links a:active {
  transform: scale(0.95);
}

.social-links img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.map-placeholder iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(179, 140, 180, 0.15);
  margin-top: 1rem;
}

/* === FOOTER === */
footer {
  background: #b38cb4;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.footer-content {
  font-size: 0.95rem;
}

.footer-content p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* === PROMO POPUP (MOBILE OPTIMIZED) === */
#promo-popup-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  background: #b38cb4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(179, 140, 180, 0.4);
}

#promo-popup-icon img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

#promo-popup {
  position: fixed;
  top: 80px;
  right: 20px;
  left: 20px;
  z-index: 1001;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  max-width: 340px;
  margin: 0 auto;
}

/* ========================================
   TABLET & DESKTOP BREAKPOINTS
   ======================================== */

/* Tablets (600px and up) */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }

  .about-content div {
    text-align: left;
    flex: 1;
  }

  .profile-img {
    max-width: 250px;
  }

  .service-list {
    max-width: 500px;
    margin: 0 auto;
  }

  .slideshow-container {
    max-width: 600px;
  }

  /* Only split into 2 columns when images are present (progressive enhancement) */
  .category-grid:has(.category-images) {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .testimonials-carousel {
    max-width: 550px;
  }

  #promo-popup {
    left: auto;
    right: 25px;
  }
}

/* Desktop (900px and up) */
@media (min-width: 900px) {
  section {
    padding: 3.5rem 2rem;
  }

  .hero {
    padding: 4rem 2rem;
  }

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

  .hero p {
    font-size: 1.15rem;
  }

  section h2 {
    font-size: 2.25rem;
  }

  .about-content {
    max-width: 900px;
    margin: 0 auto;
    gap: 3rem;
  }

  .profile-img {
    max-width: 300px;
  }

  .service-list {
    max-width: 550px;
  }

  .slideshow-container {
    max-width: 750px;
  }

  .pricing-categories .category-section {
    max-width: 850px;
    margin: 0 auto 1.25rem;
  }

  .slide img {
    max-height: 500px;
  }

  .testimonials-carousel {
    max-width: 700px;
  }

  .contact-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .map-placeholder iframe {
    height: 350px;
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .about-content {
    max-width: 1000px;
  }

  .service-list {
    max-width: 600px;
  }

  .slideshow-container {
    max-width: 850px;
  }
}
