/* === BASE STYLES === */
:root {
  --pink: #ff5eb8;
  --purple: #c67aff;
  --mint: #96f7d2;
  --yellow: #ffe88a;
  --deep: #5a2070;
  --shadow: 0 6px 20px rgba(90, 32, 112, 0.15);
  font-family: 'Quicksand', system-ui, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff4fb, #fff);
  color: #3b2a3b;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* === HEADER === */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--mint));
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 20px 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.brand h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

/* === NAVIGATION === */
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
}

nav a:hover {
  opacity: 0.8;
  transform: scale(1.08);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--yellow);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10; /* ensures they stay clickable above header layers */
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.social-icons a:hover {
  color: var(--yellow);
}

header {
  position: relative;
  z-index: 5; /* keeps layout clean but below icons */
}


/* === HAMBURGER === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--mint));
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 8px 0;
    font-size: 1.2rem;
  }

  header {
    justify-content: space-between;
  }
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.4rem;
  color: var(--deep);
}

.hero h2 {
  font-size: 1.8rem;
  color: var(--purple);
  margin: 10px 0 20px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === CAROUSEL (Home only) === */
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px;
  background: white;
  border-radius: 10px;
}

.carousel img {
  flex: 0 0 auto;
  width: 80%;
  max-width: 600px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

@media (max-width: 768px) {
  .carousel img {
    width: 100%;
    height: auto;
  }
}

/* === PACKAGE & FORM CARD REFINEMENT === */
.package-card {
  text-align:center;
  border-radius: 30px; 
  background: linear-gradient(white, white) 
  padding-box, linear-gradient(90deg, #ffb3ba, #ffdfba, #ffffba, #baffc9, #bae1ff) 
  border-box; border: 2px solid transparent; 
  padding: 12px 18px; margin: 12px 0; max-width: 650px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);}

@media (min-width: 1025px) {
  .package-card {
    border-width: 2px;
    padding: 25px 30px;
    border-radius: 20px;
  }
}

.package-card p {
  text-align:center;
  margin: 10px auto;
  width: 90%;
  color: #5a2070;
  line-height: 1.6;
}

.package-card h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--deep);
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 25px auto;
  text-align: center;
}

.event-list li {
  font-size: 1.2rem;
  color: var(--deep);
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  animation: twinkle 3s infinite ease-in-out;
}


@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes pastelGlow {
  0% { color: #ffb6e6; }   /* pink */
  33% { color: #c5a3ff; }  /* lilac */
  66% { color: #9ef7d5; }  /* mint */
  100% { color: #ffe88a; } /* soft yellow */
}

/* Desktop fine-tune */
@media (min-width: 1025px) {
  .package-card {
    border-width: 1px;
    padding: 30px;
    border-radius: 18px;
    max-width: 600px;
  }
}

/* Mobile/tablet refinement */
@media (max-width: 768px) {
  .package-card {
    border-width: 1.2px;
    max-width: 90%;
    padding: 20px 15px;
  }
}

/* Center all package cards properly */
.package-card {
  margin: 25px auto;            /* ensures horizontal centring */
  display: flex;
  flex-direction: column;
  align-items: center;          /* centres content inside */
  justify-content: center;      /* vertically neat too */
  text-align: center;
}

/* Center and prettify the lists */
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  text-align: center;
}

/* Text and stars styling */
.package-card li {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 6px 0;
  font-weight: 500;
  color: #4b1460;
  font-size: 1.05rem;
}

/* === MAGICAL STARS (match header/footer gradient animation) === */
.package-card li::before,
.package-card li::after {
  content: "★";
  font-size: 0.9rem;
  margin: 0 8px;
  color: #ff5eb8; /* starting colour */
  animation: colorShift 4s ease-in-out infinite;
}

/* smooth pastel rotation through Bella Beauty colours */
@keyframes colorShift {
  0% { color: #ff5eb8; }   /* pink */
  25% { color: #c67aff; }  /* purple */
  50% { color: #96f7d2; }  /* mint */
  75% { color: #ffe88a; }  /* yellow */
  100% { color: #ff5eb8; } /* back to pink */
}


/* === FORMS === */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 95%;
}

form label {
  font-weight: 600;
  color: var(--deep);
  text-align: left;
  width: 80%;
  max-width: 480px;
}

form input,
form select,
form textarea {
  width: 80%;
  max-width: 480px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  background: white;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}


form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  box-shadow: 0 0 6px var(--pink);
  transform: scale(1.01);
}

/* Adjust for mobile/tablet */
@media (max-width: 768px) {
  form label,
  form input,
  form select,
  form textarea {
    width: 90%;
    max-width: none;
    border-radius: 10px;
  }
  .package-card {
    border-width: 1.2px;
    padding: 20px;
  }
}

/* === BUTTONS === */
.book-btn,
button.submit,
button.submit-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--mint));
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.book-btn:hover,
button.submit:hover,
button.submit-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

 .faq-pill {border-radius: 30px; background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #ffb3ba, #ffdfba, #ffffba, #baffc9, #bae1ff) border-box; border: 3px solid transparent; padding: 12px 18px; margin: 12px 0; text-align: center; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);} 

 .price-list {display: flex;  flex-direction: column; gap: 10px; margin: 20px auto; max-width: 400px;}

 .price-item { display: flex; justify-content: space-between; background: white;
  padding: 10px 15px; border-radius: 12px;
  border: 1px solid #f1c6f1; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-size: 1.1rem; font-weight: 500;}

/* === THANK YOU CARD === */
.thank-you-card {
  background-color: #fff;
  border: 3px solid;
  border-image: linear-gradient(90deg, #ffb6c1, #ffd1dc, #b5e7a0, #b3e5fc, #fbcffc) 1;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 50px auto;
}

.thank-you-card h1 {
  font-size: 2em;
  color: #ff69b4;
  margin-bottom: 10px;
}

.thank-you-card p {
  font-size: 1.1em;
  line-height: 1.5;
}

/* === FOOTER === */
footer {
  text-align: center;
  background: linear-gradient(90deg, var(--mint), var(--pink), var(--purple));
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  color: white;
  padding: 20px;
  margin-top: 40px;
  font-weight: 500;
}


footer .social-icons {
  margin-top: 10px;
  justify-content: center;
}

/* === CONTACT INFO SECTION === */
.contact-info {
  margin: 30px auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--deep);
  animation: fadeIn 0.8s ease-in-out;
}

.contact-detail {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-detail i {
  color: var(--purple);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-info a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--pink);
}

/* Subtle hover animation */
.contact-detail:hover {
  transform: translateY(-3px);
}

.contact-detail:hover i {
  color: var(--pink);
}

/* Smooth entrance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === ABOUT SECTION === */
.about {
  border-radius: 30px; background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #ffb3ba, #ffdfba, #ffffba, #baffc9, #bae1ff) border-box; border: 3px solid transparent; padding: 12px 18px; margin: 12px 0; text-align: center; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);}


.about h2 {
  color: var(--deep);
  font-size: 2rem;
  margin-bottom: 15px;
}

.about p {
  color: #5a2070;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 10px 0;
}

.about .tagline {
  margin-top: 20px;
  font-weight: 700;
  color: var(--purple);
  font-size: 1.2rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about {
    padding: 25px 18px;
  }

  .about h2 {
    font-size: 1.7rem;
  }

  .about p {
    font-size: 1rem;
  }
}

@media (min-width: 1025px) {
  .package-card {
    max-width: 600px;
    margin: 30px auto;  /* keeps them centred on large screens */
  }
}
