/* Unawkward Social - Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: hsl(12, 88%, 48%);
  --primary-hover: hsl(12, 88%, 42%);
  --primary-light: hsl(12, 88%, 96%);
  --bg: hsl(0, 0%, 98%);
  --card: hsl(0, 2%, 96%);
  --card-border: hsl(0, 2%, 88%);
  --text: hsl(0, 0%, 12%);
  --muted: hsl(0, 0%, 35%);
  --border: hsl(0, 0%, 88%);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* NAV */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--card-border);
  padding: 0 1.5rem;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--primary);
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-hover) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text); }

/* HERO */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80), rgba(0,0,0,.50), rgba(0,0,0,.30));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem 1.5rem; }
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff; margin-bottom: 1.25rem; line-height: 1.15;
}
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-meta { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; }
.hero-meta svg { color: var(--primary); flex-shrink: 0; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 999px;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  border: none; transition: all .2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.22); }
.btn-solid { background: var(--primary); color: #fff; border-radius: 8px; padding: 0.85rem 2rem; }
.btn-solid:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* SECTIONS */
section { padding: 5rem 1.5rem; }
.section-alt { background: var(--card); }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; text-align: center; margin-bottom: 1rem; color: var(--text);
}
.section-sub { text-align: center; color: var(--muted); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* GRID */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-2-lg { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* CARDS */
.card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 10px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.card-body { padding: 1.75rem; }
.card-center { text-align: center; }
.card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.card-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text); }
.card-text { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* EVENT DETAIL CARDS */
.detail-card { background: var(--bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 1.5rem; text-align: center; }
.detail-card svg { width: 36px; height: 36px; color: var(--primary); margin: 0 auto 1rem; display: block; }
.detail-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; color: var(--text); }
.detail-card p { color: var(--muted); font-size: 0.95rem; }

/* TWO-COL FEATURE */
@media (max-width: 768px) { .grid-2-lg { grid-template-columns: 1fr; } }
.feature-img { border-radius: 12px; width: 100%; height: auto; object-fit: cover; }

/* TESTIMONIALS */
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-name { font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.85rem; color: var(--muted); }
.testimonial-text { color: var(--muted); font-size: 0.95rem; line-height: 1.7; font-style: italic; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.03); }

/* FAQ */
.faq-item { border: 1px solid var(--card-border); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer; font-size: 1rem;
  font-weight: 600; color: var(--text); display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--sans);
}
.faq-question:hover { background: var(--primary-light); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-icon { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* REGISTER CARD */
.register-card { background: #fff; border: 1px solid var(--card-border); border-radius: 12px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.register-card h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.register-card .subtitle { text-align: center; color: var(--muted); margin-bottom: 2rem; }
.price-badge { color: var(--text); font-size: 1.25rem; font-weight: 700; }

/* PAYMENT HIGHLIGHT */
.payment-highlight {
  background: var(--primary-light); border: 1.5px solid hsl(12,88%,80%);
  border-radius: 10px; padding: 1.5rem; text-align: center; margin-bottom: 1.5rem;
}
.payment-highlight .amount { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.payment-highlight p { color: var(--muted); margin-top: 0.4rem; font-size: 0.9rem; }

/* FORM */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 1rem; font-family: var(--sans);
  background: var(--bg); color: var(--text); transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.checkbox-group { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem; border: 1.5px solid var(--border); border-radius: 8px; }
.checkbox-group input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.consent-label { font-size: 0.9rem; color: var(--muted); }
.consent-label strong { color: var(--text); }
.form-note { background: hsl(0,0%,95%); padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.form-note a { color: var(--primary); }

/* SHARE */
.share-section { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.share-label { font-weight: 500; color: var(--muted); }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; border: none; color: #fff;
  transition: opacity .2s; text-decoration: none;
}
.share-btn:hover { opacity: .85; }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-li { background: #0A66C2; }

/* CTA BANNER */
.cta-banner { background: var(--primary-light); border-radius: 14px; padding: 3rem 2rem; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-banner p { color: var(--muted); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { color: var(--muted); font-size: 0.95rem; margin-top: 0.25rem; }

/* PAST EVENT */
.past-event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .past-event-grid { grid-template-columns: 1fr; } }
.past-event-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.past-event-meta span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--muted); }
.past-event-meta svg { color: var(--primary); width: 16px; height: 16px; }
.highlight-list { list-style: none; }
.highlight-list li { display: flex; gap: 0.75rem; padding: 0.4rem 0; font-size: 0.95rem; color: var(--muted); }
.highlight-list li::before { content: '•'; color: var(--primary); font-weight: 700; }
.past-gallery { display: grid; gap: 0.75rem; }
.past-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; }

/* LEGAL */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-content .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal-content h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; }
.legal-content a { color: var(--primary); }

/* FOOTER */
footer { background: hsl(0, 2%, 14%); color: rgba(255,255,255,.75); padding: 3rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.85rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,.65); margin-bottom: 0.5rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--card-border); padding: 1rem 1.5rem 1.5rem; gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { min-height: 480px; }
  .grid-2-lg { grid-template-columns: 1fr; }
}
