:root {
  --purple: #6B2D8B;
  --purple-dark: #4e1f68;
  --purple-light: #f3eaf8;
  --pink: #E91E8C;
  --pink-light: #fde8f4;
  --yellow: #FFD600;
  --white: #ffffff;
  --off-white: #fafafa;
  --grey-light: #f0f0f2;
  --text: #2a2a2a;
  --muted: #777;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Nunito', sans-serif; }

.rounded { border-radius: 10px; }

nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 3px solid var(--purple); display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 2rem; box-shadow: 0 2px 12px rgba(107,45,139,0.1); }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
.nav-links a { color: var(--purple); text-decoration: none; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a.pay-btn { background: var(--pink); color: var(--white); padding: 0.45rem 1.1rem; border-radius: 50px; }
.nav-links a.pay-btn:hover { background: var(--purple); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2.5px; background: var(--purple); display: block; border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); padding: 1rem 2rem; border-bottom: 3px solid var(--purple); }
.mobile-menu a { color: var(--purple); text-decoration: none; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu.open { display: flex; }

.address-bar { background: var(--purple); color: var(--white); text-align: center; padding: 0.6rem 1rem; font-size: 0.78rem; font-weight: 700; }
.address-bar a { color: var(--yellow); text-decoration: none; }

.page-header { background: linear-gradient(135deg, var(--purple-light) 0%, var(--pink-light) 100%); padding: 4rem 2rem 3rem; text-align: center; border-bottom: 4px solid var(--purple); }
.page-header h1 { font-family: 'Fredoka One', sans-serif; font-size: clamp(2.2rem,6vw,4rem); color: var(--purple); letter-spacing: 1px; }
.page-header h1 .pink { color: var(--pink); }
.page-header p { color: var(--muted); font-size: 0.95rem; font-weight: 600; margin-top: 0.5rem; }

section { padding: 4rem 2rem; }
.section-title { font-family: 'Fredoka One', sans-serif; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--purple); margin-bottom: 0.3rem; }
.section-title .pink { color: var(--pink); }
.section-title.center { text-align: center; }
.pill { display: block; width: 50px; height: 5px; background: var(--pink); border-radius: 10px; margin: 0.6rem 0 2.2rem; }
.pill.center { margin: 0.6rem auto 2.4rem; }

.btn { display: inline-block; padding: 0.85rem 2.2rem; font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-outline-purple { background: transparent; border: 2px solid var(--purple); color: var(--purple); }

footer { background: var(--purple-dark); color: rgba(255,255,255,0.85); padding: 3rem 2rem 1.5rem; text-align: center; }
.footer-logo img { height: 60px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-info { font-size: 0.85rem; line-height: 2.2; }
.footer-info a { color: var(--yellow); text-decoration: none; }
.footer-info a:hover { color: var(--white); }
.footer-links { margin: 1.5rem 0; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 1.5rem; }


@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3rem 1.2rem; }
}
