/* =============================================================
   TICKLE TOWN GOA — SHARED STYLESHEET
   Clean · Classy · Soothing Kids-Friendly
============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&family=Dancing+Script:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #FFF8FC; color: #2C2A5E; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── COLOUR PALETTE ── */
:root {
  --teal:        #C8558A;   /* bubblegum pink — primary  */
  --teal-pale:   #FFEFF6;   /* very soft pink tint       */
  --teal-mid:    #F5ADCA;   /* medium pink accent        */
  --coral:       #4A8DD8;   /* sky blue — secondary      */
  --coral-pale:  #EEF3FF;   /* light blue tint           */
  --gold:        #E8A520;   /* warm golden yellow        */
  --gold-pale:   #FFF8E6;   /* pale gold                 */
  --rose:        #9B7CD4;   /* soft lavender             */
  --rose-pale:   #F4F0FF;   /* pale lavender             */
  --navy:        #2C2A5E;   /* deep purple-navy          */
  --body:        #4A406A;   /* purple-gray body text     */
  --sand:        #FFF8FC;   /* page bg (faint pink)      */
  --white:       #FFFFFF;
  --border:      rgba(200,85,138,0.12);
  --radius:      18px;

  /* Gradients */
  --grad-teal:   linear-gradient(135deg,#C8558A,#E07AAA);
  --grad-coral:  linear-gradient(135deg,#4A8DD8,#6AAAE8);
  --grad-gold:   linear-gradient(135deg,#E8A520,#F5C84A);
  --grad-rose:   linear-gradient(135deg,#9B7CD4,#C4A8EC);
  --grad-navy:   linear-gradient(135deg,#2C2A5E,#40409A);

  /* Legacy aliases — keep names so existing HTML inline styles still resolve */
  --purple:      #C8558A;
  --dark:        #2C2A5E;
  --green:       #C8558A;
  --blue:        #4A8DD8;
  --pink:        #E07AAA;
  --cream:       #FFF8FC;
  --cream-2:     #F8F2FA;
  --teal-dark:   #C8558A;
  --navy-deep:   #1E1C4A;
  --amber:       #E8A520;
  --orange:      #E07AAA;
  --yellow:      #F5C84A;
  --mauve:       #9B7CD4;
  --peach:       #F5C5D8;
  --grad-pink:   linear-gradient(135deg,#9B7CD4,#C4A8EC);
  --grad-blue:   linear-gradient(135deg,#4A8DD8,#2B6CB0);
  --grad-green:  linear-gradient(135deg,#C8558A,#E07AAA);
  --grad-warm:   linear-gradient(135deg,#E8A520,#E07AAA);
  --grad-yellow: linear-gradient(135deg,#F5C84A,#E8A520);
  --grad-rainbow:linear-gradient(135deg,#C8558A,#E8A520,#4A8DD8,#9B7CD4,#E07AAA);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F0F0F0; }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 10px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,248,252,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,85,138,0.1);
  box-shadow: 0 2px 16px rgba(44,42,94,0.07);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-tagline {
  border-left: 2px solid rgba(200,152,42,0.4);
  padding-left: 14px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem; font-weight: 750;
  color: #C8558A;; white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-weight: 700; font-size: 0.88rem; color: var(--body);
  padding: 8px 14px; border-radius: 50px;
  transition: all 0.22s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--teal-pale);
  color: var(--teal);
}
.nav-cta {
  background: var(--grad-teal) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(43,122,114,0.3) !important;
}
.nav-cta:hover { box-shadow: 0 6px 22px rgba(43,122,114,0.45) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,248,252,0.98); backdrop-filter: blur(20px);
  padding: 16px 24px; border-bottom: 1px solid rgba(200,85,138,0.1);
  z-index: 998; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 700; font-size: 1rem; color: var(--navy);
  padding: 11px 16px; border-radius: 12px; transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--teal-pale); color: var(--teal); }
.mobile-menu a.active { background: var(--grad-teal); color: #fff; }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 72px; }

/* ── SECTION COMMONS ── */
section { padding: 90px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem,3.8vw,3rem); line-height: 1.15; margin-bottom: 12px;
  color: var(--navy);
}
.section-sub { font-size: 1rem; color: var(--body); font-weight: 600; max-width: 540px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.gradient-text {
  background: var(--grad-teal);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; padding: 13px 28px;
  border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: var(--grad-coral); color: #fff; box-shadow: 0 5px 20px rgba(217,107,74,0.35); }
.btn-coral:hover { box-shadow: 0 8px 28px rgba(217,107,74,0.5); }
.btn-teal  { background: var(--grad-teal);  color: #fff; box-shadow: 0 5px 20px rgba(43,122,114,0.35); }
.btn-teal:hover  { box-shadow: 0 8px 28px rgba(43,122,114,0.5); }
.btn-blue  { background: var(--grad-blue);  color: #fff; box-shadow: 0 5px 20px rgba(74,124,201,0.35); }
.btn-blue:hover  { box-shadow: 0 8px 28px rgba(74,124,201,0.5); }
.btn-green { background: var(--grad-teal);  color: #fff; box-shadow: 0 5px 20px rgba(43,122,114,0.35); }
.btn-green:hover { box-shadow: 0 8px 28px rgba(43,122,114,0.5); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.btn-white:hover { box-shadow: 0 8px 26px rgba(0,0,0,0.16); }
.btn-ghost { background: transparent; border: 2px solid rgba(36,49,82,0.3); color: var(--navy); }
.btn-ghost:hover { background: var(--teal-pale); border-color: var(--teal); color: var(--teal); }
.btn-wa { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; box-shadow: 0 5px 18px rgba(37,211,102,0.4); }
.btn-wa:hover { box-shadow: 0 8px 26px rgba(37,211,102,0.55); }
.btn-insta { background: linear-gradient(135deg,#833AB4,#FD1D1D,#F77737); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(43,122,114,0.08);
}

/* ── GLOSSY CARD ── */
.glossy-card {
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 80px 24px 60px;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #FFF8FC, var(--teal-pale));
}
.page-header .section-title { font-size: clamp(2.2rem,5vw,3.6rem); }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #2C2A5E 0%, #1E1C4A 100%);
  color: rgba(255,255,255,0.75);
  padding: 70px 24px 30px;
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#C8558A,#E8A520,#4A8DD8,#9B7CD4);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-logo { height: 56px; width: auto; margin-bottom: 12px; }
.footer-tagline-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: transform 0.2s, opacity 0.2s;
  background: none;
}
.social-btn:hover { transform: scale(1.12) translateY(-2px); opacity: 0.9; }
.s-insta, .s-fb, .s-wa, .s-yt, .s-maps { background: none; }
.footer-col h4 {
  font-family: 'Fredoka One', cursive; font-size: 1rem;
  color: #fff; margin-bottom: 16px; letter-spacing: 0.4px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.48); font-size: 0.86rem; font-weight: 600;
  transition: color 0.2s; display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

/* ── WA FAB ── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#25D366,#128C7E);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 5px 22px rgba(37,211,102,0.45);
  z-index: 997; transition: transform 0.3s;
}
.wa-fab:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes bounceIn {
  0%{opacity:0;transform:scale(0.5) translateY(30px)}
  60%{transform:scale(1.04) translateY(-4px)}
  100%{opacity:1;transform:scale(1) translateY(0)}
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes gradientShift {
  0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}
@keyframes shine { 0%{left:-100%} 50%,100%{left:160%} }
@keyframes spin  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-tagline { display: none; }
  section { padding: 70px 20px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.4rem); }
  .section-sub { font-size: 0.93rem; }
  .story-inner { grid-template-columns: 1fr !important; gap: 36px !important; }
  .founder-ring-wrap { width: 220px !important; }
  .founder-ring { width: 220px !important; height: 220px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .about-boxes { grid-template-columns: 1fr; }
  .acts-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr !important; }
  .bento-grid .bento-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .btn { padding: 11px 22px; font-size: 0.88rem; }
  .nav-inner { padding: 0 16px; }
  .nav-logo-img { height: 42px; }
  .section-title { font-size: clamp(1.7rem, 9vw, 2.5rem); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .hero-buttons  { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
