/* =============================================
   Positively Energized LLC — Global Stylesheet
   Aesthetic: Warm Editorial Luxury + playful home banner
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --pink:        #FF5FA0;
  --pink-lt:     #FFD6E8;
  --pink-xlt:    #FFF0F7;
  --yellow:      #FFD93D;
  --yellow-lt:   #FFF8D6;
  --orange:      #FF8C42;
  --orange-lt:   #FFE8D0;
  --cream:       #FDFAF6;
  --soft:        #FFF5EE;
  --dark:        #1C1010;
  --dark2:       #261616;
  --muted:       #7A6060;
  --muted-lt:    #B09898;
  --white:       #FFFFFF;
  --border:      rgba(255, 95, 160, 0.1);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --shadow-sm:   0 2px 10px rgba(255,95,160,0.07);
  --shadow:      0 6px 28px rgba(255,95,160,0.10);
  --shadow-lg:   0 18px 60px rgba(255,95,160,0.15);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

/* ===== NAV ===== */
nav {
  background: rgba(253,250,246,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--pink-xlt);
}

.nav-links a.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(255,95,160,0.35);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.78rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,95,160,0.32);
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,95,160,0.42); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,140,66,0.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,140,66,0.4); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(255,217,61,0.28);
}
.btn-yellow:hover { transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.btn-white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink-lt);
}
.btn-ghost:hover { background: var(--pink-xlt); transform: translateY(-2px); }

.btn-lg { font-size: 1rem; padding: 0.95rem 2.2rem; }
.btn-sm { font-size: 0.82rem; padding: 0.55rem 1.2rem; }

/* ===== LABEL TAGS ===== */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
}
.label-pink   { background: var(--pink-lt);   color: var(--pink); }
.label-yellow { background: var(--yellow-lt); color: #8a6200; }
.label-orange { background: var(--orange-lt); color: #b05000; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-sub {
  max-width: 520px;
  margin: 0.5rem auto 0;
}

/* ===== COLOR RULE ===== */
.color-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 3px;
  margin: 0.9rem 0 1.6rem;
}
.color-rule.center { margin: 0.9rem auto 1.6rem; }

/* ===== HOME HERO ===== */
.hero {
  background: linear-gradient(135deg, #FF5FA0 0%, #FF8C42 55%, #FFD93D 100%);
  padding: 5rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -50px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero-bounce {
  font-size: 5.5rem;
  display: block;
  margin-bottom: 1.2rem;
  animation: heroBounce 2.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes heroBounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  text-shadow: 3px 4px 0 rgba(0,0,0,0.12);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero .btn { position: relative; z-index: 1; }

/* ===== SHARED SMALL BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #FF5FA0 0%, #FF8C42 55%, #FFD93D 100%);
  padding: 3.25rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -70px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.page-banner-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 0.8rem;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  text-shadow: 2px 3px 0 rgba(0,0,0,0.10);
  margin-bottom: 0.55rem;
}

.page-banner p {
  color: rgba(255,255,255,0.94);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.page-banner .label-tag {
  margin-bottom: 0.9rem;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}

/* ===== WAVY DIVIDER ===== */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* ===== PILLS ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.77rem;
}
.pill-pink   { background: var(--pink-lt);   color: var(--pink); }
.pill-yellow { background: var(--yellow-lt); color: #8a6200; }
.pill-orange { background: var(--orange-lt); color: #b05000; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  pointer-events: none;
  border-left: 4px solid var(--pink);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== PHOTO PLACEHOLDER ===== */
.photo-placeholder {
  background: var(--soft);
  border: 2px dashed var(--pink-lt);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted-lt);
  font-weight: 700;
  font-size: 0.85rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.photo-placeholder .ph-icon { font-size: 2rem; opacity: 0.5; }
.photo-placeholder .ph-hint { font-size: 0.75rem; opacity: 0.55; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--pink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  nav { padding: 0 1.5rem; }
  .nav-links a { padding: 0.4rem 0.7rem; font-size: 0.81rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { height: 60px; padding: 0 1rem; }
  .nav-logo img { height: 30px; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-links a { padding: 0.35rem 0.5rem; font-size: 0.74rem; }
  .hero { padding: 4rem 1.2rem 4rem; }
  .hero-bounce { font-size: 4rem; }
  .page-banner { padding: 2.7rem 1.2rem 2.5rem; }
  .page-banner-icon { font-size: 2.1rem; }
  .page-banner p { font-size: 0.95rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 1.5rem; }
  .footer-bottom { padding: 1.2rem 1.5rem; }
}

@media (max-width: 420px) {
  .nav-links a { padding: 0.3rem 0.4rem; font-size: 0.68rem; }
}

/* MOBILE */

.nav-toggle {
  display: none;
  font-size: 1.9rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--dark);
}

/* MOBILE */
@media (max-width: 720px) {

  .nav-toggle {
    display: block;
  }

  nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;

    width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);

    flex-direction: column;
    padding: 0.8rem;
    gap: 0.4rem;

    /* FORCE hidden */
    display: none !important;
  }

  /* FORCE show */
  .nav-links.show {
    display: flex !important;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}