/* ══════════════════════════════════════════════════════════
   ARICELA — Link Hub & Live Site
   Palette: Soft Pink (#F9C6D0), Cream (#FFF5F7), Rose (#E8739A)
   Design: Glassmorphism · Mobile-first · Rounded
   ══════════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --pink-50:  #fff0f4;
  --pink-100: #ffe0ea;
  --pink-200: #ffc4d6;
  --pink-300: #f9a8c4;
  --pink-400: #f47fab;
  --pink-500: #e8739a;   /* primary buttons */
  --pink-600: #d45882;
  --pink-700: #b83a68;

  --cream:    #fff8f9;
  --cream-2:  #fff0f4;

  --rose-text: #7a2a45;   /* headings */
  --body-text: #5d3044;   /* body */
  --muted:    #c08090;

  --glass-bg: rgba(255, 240, 244, 0.55);
  --glass-border: rgba(255, 180, 200, 0.35);
  --glass-shadow: 0 8px 32px rgba(232, 115, 154, 0.15);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --font-heading: 'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;

  --transition: 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.18s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--body-text);
  min-height: 100vh;
  overflow-x: hidden;
  /* Subtle bokeh gradient background */
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 10%,  rgba(249,198,208,.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%,  rgba(255,220,235,.50) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%,  rgba(232,115,154,.20) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 85%,  rgba(249,198,208,.35) 0%, transparent 70%);
  background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════════════════ */
.lang-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px 14px;
  box-shadow: var(--glass-shadow);
}

.lang-btn {
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 2px 4px;
  border-radius: 50px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.lang-btn.active,
.lang-btn:hover {
  color: var(--pink-600);
  background: rgba(232,115,154,.15);
}

.lang-divider {
  color: var(--pink-300);
  font-size: 0.75rem;
  user-select: none;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #ffd6e7 0%, #ffb3cb 35%, #e8739a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-text {
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  border: 2px dashed rgba(255,255,255,.5);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.1);
}
/* When you add a real image: */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 220, 230, 0.25) 0%,
    rgba(255, 180, 200, 0.45) 40%,
    rgba(255, 240, 244, 0.88) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 80px 24px 60px;
}

/* Avatar — SVG seal */
.avatar-wrap {
  position: relative;
}
.avatar-svg {
  width: 180px;
  height: 180px;
  display: block;
  overflow: visible; /* allow decorations to render outside viewBox clip */
  /* shadow on svg, NOT on animated wrapper — evita jitter CPU */
  filter: drop-shadow(0 8px 28px rgba(232,115,154,.38));
}

/* Hero background fallback (when image not present, keep gradient) */
.hero-bg {
  background: linear-gradient(160deg, #ffd6e7 0%, #ffb3cb 35%, #e8739a 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Name */
.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 10vw, 5rem);
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 20px rgba(184,58,104,.55), 0 0 60px rgba(255,200,220,.8);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Tagline */
.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(184,58,104,.3);
}

/* LIVE Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(232,115,154,.5);
  border-radius: 50px;
  padding: 10px 22px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,115,154,.3);
  animation: badgePop 0.6s var(--transition) forwards;
}
.live-badge:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 30px rgba(232,115,154,.45);
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 0 rgba(255,59,92,.5);
  animation: livePulse 1.5s ease infinite;
  flex-shrink: 0;
}
.live-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--rose-text);
  letter-spacing: 0.06em;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,92,.6); }
  50%  { box-shadow: 0 0 0 8px rgba(255,59,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); }
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Live schedule line */
.hero-schedule {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(184,58,104,.4);
  margin-top: -4px;
}

/* Scroll indicator */
.hero::after {
  content: '↓';
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 1.4rem;
  color: var(--pink-500);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════ */
.social-section, .media-section, .about-section, .contact-section {
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  color: var(--rose-text);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* ══════════════════════════════════════════════════════════
   SOCIAL LINKS
   ══════════════════════════════════════════════════════════ */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */
.social-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}
.social-btn:hover::before { left: 140%; }
.social-btn:hover { transform: translateY(-3px) scale(1.01); }

.social-btn > * { position: relative; z-index: 1; }

/* TikTok — primary */
.social-btn.tiktok {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: white;
  box-shadow: 0 6px 24px rgba(232,115,154,.45);
}
.social-btn.tiktok:hover { box-shadow: 0 12px 36px rgba(232,115,154,.55); }

/* Instagram */
.social-btn.instagram {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  color: var(--rose-text);
  box-shadow: var(--glass-shadow);
}
.social-btn.instagram:hover { background: rgba(255,220,235,.7); }

/* YouTube */
.social-btn.youtube {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  color: var(--rose-text);
  box-shadow: var(--glass-shadow);
  opacity: 0.75;
}

/* Live btn */
.social-btn.live-btn {
  background: linear-gradient(135deg, #ff3b5c, #e8739a);
  color: white;
  box-shadow: 0 6px 24px rgba(255,59,92,.35);
}
.social-btn.live-btn:hover { box-shadow: 0 12px 36px rgba(255,59,92,.5); }

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.social-btn.tiktok .btn-icon,
.social-btn.live-btn .btn-icon { background: rgba(255,255,255,.25); }

.btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btn-label {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.2;
}
.btn-sub {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.02em;
}
.coming-soon {
  color: var(--muted);
  font-style: italic;
}

.btn-arrow {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.6;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.social-btn:hover .btn-arrow { transform: translateX(4px); opacity: 1; }

.live-pulse-arrow {
  animation: arrowPulse 1s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50%       { transform: translateX(5px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   MEDIA GALLERY
   ══════════════════════════════════════════════════════════ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,115,154,.18);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3 / 4;
}
.media-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 32px rgba(232,115,154,.35);
}

.media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(232,115,154,.4);
}
.ph-icon { font-size: 2rem; }
.ph-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.ph-text small { display: block; font-size: 0.68rem; opacity: .7; }

/* Actual image styling */
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Overlay on hover */
.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184,58,104,.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.media-card:hover .media-overlay { opacity: 1; }
.media-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about-card {
  padding: 32px 24px;
}
.about-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about-emoji-col {
  flex-shrink: 0;
}
.about-big-emoji {
  font-size: 3.5rem;
  display: block;
}
.about-text-col {
  flex: 1;
}
.about-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--rose-text);
  margin-bottom: 10px;
  font-weight: 700;
}
.about-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-500);
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════ */
.contact-form {
  padding: 32px 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 460px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-text);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.7);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--body-text);
  font-size: 0.93rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,115,154,.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .8; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e8739a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  padding: 15px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: white;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(232,115,154,.4);
  margin-top: 4px;
}
.submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 36px rgba(232,115,154,.55);
}
.submit-btn:active {
  transform: scale(0.98);
}

.form-feedback {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.form-feedback.show {
  max-height: 80px;
  padding: 12px 16px;
}
.form-feedback.success {
  background: rgba(249,198,208,.4);
  color: var(--rose-text);
}
.form-feedback.error {
  background: rgba(255,200,200,.4);
  color: #b02020;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  padding: 40px 0 32px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(249,198,208,.3));
  border-top: 1.5px solid var(--glass-border);
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-500);
  display: inline-block;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(232,115,154,.3);
}
.footer-logo-img {
  max-width: 140px;
  margin: 0 auto 18px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: var(--pink-500); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   SPARKLE DECORATION
   ══════════════════════════════════════════════════════════ */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 1.3rem;
  animation: sparkleFade 1.2s ease forwards;
}
@keyframes sparkleFade {
  0%   { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.4) translateY(-40px); }
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP
   ══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { max-width: 580px; }

  .media-grid {
    gap: 16px;
  }

  .hero-name { font-size: 5.5rem; }
}

@media (min-width: 768px) {
  .container { max-width: 680px; }
}

/* ══════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink-300); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-500); }

/* ══════════════════════════════════════════════════════════
   PRINT / reduced-motion
   ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
