/* Ayu Ting Ting — Candy Pink Girly Theme (inspired by cherrybelle.net) */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Pacifico&family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --pink: #ff6b9d;
  --pink-hot: #ff2d78;
  --pink-rose: #ff4081;
  --pink-light: #ffb6c1;
  --pink-pale: #fff0f3;
  --pink-cream: #fff5f7;
  --magenta: #e91e63;
  --bubblegum: #ff85a2;
  --cotton: #ffb3d9;
  --lavender: #e6b3ff;
  --lavender-light: #f5e6ff;
  --peach: #ffcba4;
  --gold: #ffd700;
  --mint: #98e8c1;
  --dark: #2d1b36;
  --darker: #1a0f21;
  --text: #4a3855;
  --muted: #8e7a96;
  --white: #ffffff;
  --gradient-candy: linear-gradient(135deg, #ff6b9d, #ff2d78, #e91e63);
  --gradient-bubblegum: linear-gradient(135deg, #ff85a2, #ffb3d9, #e6b3ff);
  --gradient-sunset: linear-gradient(135deg, #ff6b9d, #ffb347, #ffd700);
  --gradient-dark: linear-gradient(135deg, #2d1b36, #3d1f4e, #1a0f21);
  --shadow: 0 4px 25px rgba(255,107,157,0.2);
  --shadow-lg: 0 8px 40px rgba(255,107,157,0.25);
  --radius: 16px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--pink-cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink-hot); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--magenta); }

/* ── NAV ── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(45,27,54,0.92);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255,107,157,0.15);
  padding: 0 1.5rem;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--gradient-candy);
  color: white; border-radius: 50px;
  font-weight: 700; font-size: 0.8rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:white; border-radius:2px; margin:5px 0; transition:0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--gradient-dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255,107,157,0.15) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b9d' fill-opacity='0.03'%3E%3Cpath d='M20 10 L22 16 L28 16 L23 20 L25 26 L20 22 L15 26 L17 20 L12 16 L18 16 Z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(255,107,157,0.12);
  border: 1px solid rgba(255,107,157,0.25);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; color: var(--pink-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.hero-badge-dot { width:6px; height:6px; background:var(--pink); border-radius:50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--pink-light);
  text-shadow: 0 0 80px rgba(255,107,157,0.4), 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 0.2em;
}

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
}

.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(255,182,193,0.5);
  margin-top: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

.btn {
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient-candy); color: white;
  box-shadow: 0 4px 20px rgba(255,45,120,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,45,120,0.4); }
.btn-secondary {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { border-color: var(--pink); background: rgba(255,107,157,0.1); }
.btn-fanclub {
  background: var(--gradient-sunset); color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,107,157,0.15);
  border-bottom: 1px solid rgba(255,107,157,0.15);
  padding: 2rem 1.5rem;
}
.stats-grid { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; text-align:center; }
.stat-num { font-size:2rem; font-weight:900; color:var(--pink); }
.stat-label { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.12em; color:rgba(255,255,255,0.4); margin-top:0.25rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--dark); color: white; }
.section-alt { background: var(--pink-pale); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-dark .section-title { color: white; }
.section-desc { color: var(--muted); max-width: 540px; line-height: 1.75; margin-bottom: 2.5rem; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(255,107,157,0.1);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img { aspect-ratio: 16/9; background: var(--gradient-bubblegum); position: relative; overflow: hidden; }
.card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.card-body { padding: 1.25rem; }
.card-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.card-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.card-badge {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: rgba(255,107,157,0.1); color: var(--pink-hot);
  border-radius: 50px; font-size: 0.7rem; font-weight: 700;
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0;
  width: 2px; background: var(--gradient-candy);
}
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -1.6rem; top: 0.3rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pink); border: 3px solid var(--pink-cream);
  box-shadow: 0 0 0 3px var(--pink);
}
.timeline-year { font-size: 0.75rem; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em; }
.timeline-title { font-weight: 700; font-size: 1.05rem; margin: 0.3rem 0; }
.timeline-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── SONG LIST ── */
.song-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  transition: background 0.2s;
}
.song-item:hover { background: rgba(255,107,157,0.05); }
.song-num { width: 2rem; text-align: center; font-weight: 800; color: var(--pink); font-size: 0.85rem; }
.song-info { flex: 1; }
.song-title { font-weight: 700; font-size: 0.95rem; }
.song-meta { font-size: 0.75rem; color: var(--muted); }
.song-tier { font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 50px; font-weight: 700; }
.song-tier.legendary { background: rgba(255,215,0,0.2); color: #b8860b; }
.song-tier.hit { background: rgba(255,107,157,0.15); color: var(--pink-hot); }
.song-tier.popular { background: rgba(230,179,255,0.2); color: #9b59b6; }

/* ── VIDEO GRID ── */
.video-card { background: var(--dark); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s;
}
.video-card:hover .play-btn { opacity: 1; }
.play-icon { width: 50px; height: 50px; background: var(--gradient-candy); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── FAN CLUB FORM ── */
.fanclub-hero {
  background: var(--gradient-dark);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}
.fanclub-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,215,0,0.1), transparent 60%);
}
.fanclub-form {
  max-width: 500px; margin: 0 auto;
  background: white; border-radius: 24px;
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,107,157,0.15);
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.form-input {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid rgba(255,107,157,0.15);
  border-radius: 12px; font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s;
  background: var(--pink-cream);
}
.form-input:focus { outline: none; border-color: var(--pink); background: white; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--gradient-candy); color: white;
  border: none; border-radius: 50px;
  font-family: inherit; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── QUOTE ── */
.quote-card {
  padding: 2rem; border-radius: var(--radius);
  background: rgba(255,107,157,0.05);
  border-left: 4px solid var(--pink);
  margin: 1.5rem 0;
}
.section-dark .quote-card { background: rgba(255,107,157,0.08); }
.quote-text { font-family: 'Quicksand', sans-serif; font-size: 1.1rem; font-style: italic; line-height: 1.8; }
.quote-source { font-size: 0.8rem; color: var(--pink); font-weight: 700; margin-top: 0.75rem; }

/* ── AWARDS ── */
.award-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: 12px;
  background: white; border: 1px solid rgba(255,107,157,0.1);
  margin-bottom: 0.75rem;
}
.award-year { font-size: 0.75rem; font-weight: 800; color: var(--pink); min-width: 3rem; }
.award-title { font-weight: 700; font-size: 0.95rem; }
.award-cat { font-size: 0.8rem; color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--darker); color: rgba(255,255,255,0.5);
  padding: 3rem 1.5rem 2rem; text-align: center;
}
.footer-logo { font-family: 'Pacifico', cursive; font-size: 1.5rem; color: var(--pink); margin-bottom: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin: 1.5rem 0; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 0.75rem; margin-top: 1.5rem; }

/* ── MOBILE BOTTOM NAV ── */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(45,27,54,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,107,157,0.15);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav-inner { display: grid; grid-template-columns: repeat(5,1fr); height: 60px; }
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: rgba(255,255,255,0.4); font-size: 0.6rem; font-weight: 600;
  text-decoration: none; transition: color 0.2s;
}
.bottom-nav a:active { transform: scale(0.92); }
.bottom-nav a.active { color: var(--pink); }
.bottom-nav svg { width: 20px; height: 20px; }
.bottom-nav .fan-btn { display:flex; flex-direction:column; align-items:center; gap:2px; }
.bottom-nav .fan-circle {
  width: 42px; height: 42px; background: var(--gradient-candy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -18px; box-shadow: 0 4px 15px rgba(255,45,120,0.3);
}
.bottom-nav .fan-circle svg { width: 20px; height: 20px; color: white; }
.bottom-nav .fan-btn span { color: var(--pink); margin-top: 2px; }
.bottom-spacer { display: none; height: 60px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .bottom-nav { display: block; }
  .bottom-spacer { display: block; }
  footer { padding-bottom: 5rem; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .section { padding: 3rem 1rem; }
}

@media (min-width: 769px) {
  .navbar { padding: 0 3rem; }
}

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

[x-cloak] { display: none !important; }
