/* ============================================
   FEMBOY JANTA PARTY — Official Stylesheet
   "Soft Toh Hoga"
   ============================================ */

:root {
  --saffron: #FF6B1A;
  --pink: #E91E8C;
  --hot-pink: #FF2D78;
  --soft-pink: #FFD6E8;
  --cream: #FFF8F0;
  --dark: #1A0A12;
  --mid: #3D1A2E;
  --gold: #FFD700;
  --white: #FFFFFF;
  --text-light: rgba(255,255,255,0.85);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mukta', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--dark);
  color: var(--soft-pink);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family: var(--font-body);
}
.ticker {
  display: inline-block;
  animation: tickerMove 40s linear infinite;
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4rem;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--soft-pink);
  box-shadow: 0 2px 20px rgba(233,30,140,0.08);
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.emblem {
  font-size: 1.6rem;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--pink);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink);
  color: white;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--hot-pink); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #fff0f8 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.s1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; right: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}
.s2 {
  width: 300px; height: 300px;
  background: var(--saffron);
  bottom: 50px; left: -80px;
  animation: drift 9s ease-in-out infinite alternate-reverse;
}
.s3 {
  width: 200px; height: 200px;
  background: var(--hot-pink);
  top: 60%; left: 40%;
  animation: drift 15s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 20px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: var(--saffron);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .t1 { color: var(--saffron); display: block; }
.hero-title .t2 { color: var(--dark); display: block; }
.hero-title .t3 {
  color: var(--pink);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--pink);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(233,30,140,0.3);
}
.btn-primary:hover {
  background: var(--hot-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--soft-pink); }
.hero-footnote {
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 0.08em;
}
/* Flag */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.flag-container { text-align: center; }
.flag {
  width: 280px;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.5);
  animation: flagWave 4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes flagWave {
  0%, 100% { transform: skewY(0deg); }
  25% { transform: skewY(1deg); }
  75% { transform: skewY(-0.5deg); }
}
.flag-stripe { display: flex; align-items: center; justify-content: center; }
.s-saffron { background: var(--saffron); height: 60px; }
.s-pink { background: var(--hot-pink); height: 60px; }
.s-white { background: white; height: 60px; position: relative; }
.flag-chakra { font-size: 2rem; }
.flag-label {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: #999;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ---- FOUNDER BANNER ---- */
.founder-banner {
  background: var(--dark);
  border-bottom: 2px solid var(--pink);
  padding: 1.2rem 4rem;
}
.founder-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}
.founder-label {
  background: var(--saffron);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 2px;
}
.founder-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.founder-info strong {
  color: var(--soft-pink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.founder-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ---- ABOUT ---- */
.about {
  padding: 6rem 4rem;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.light h2 { color: white; }
.section-header.light .section-tag { color: var(--soft-pink); background: rgba(255,255,255,0.15); }
.section-tag {
  display: inline-block;
  background: var(--soft-pink);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
}
.section-header h2 em {
  font-style: italic;
  color: var(--pink);
}
.section-desc {
  color: rgba(255,255,255,0.7);
  margin-top: 0.8rem;
  font-size: 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.about-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(233,30,140,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.ac1::before { background: var(--saffron); }
.ac2::before { background: var(--pink); }
.ac3::before { background: var(--hot-pink); }
.ac4::before { background: var(--gold); }
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233,30,140,0.12);
}
.ac-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.about-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--mid);
  padding: 6rem 4rem;
  color: white;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-list { display: flex; flex-direction: column; gap: 0; }
.m-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
  cursor: default;
}
.m-item:last-child { border-bottom: none; }
.m-item:hover .m-num { color: var(--soft-pink); }
.m-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
  line-height: 1;
  padding-top: 4px;
}
.m-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--soft-pink);
  margin-bottom: 0.5rem;
}
.m-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ---- LEADERS ---- */
.leaders {
  padding: 6rem 4rem;
  background: white;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.leader-card {
  border: 1px solid var(--soft-pink);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s;
  background: var(--cream);
}
.leader-card.featured {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(233,30,140,0.3);
}
.leader-card:hover { transform: scale(1.06); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.leader-card.featured:hover { transform: scale(1.08); }
.leader-avatar { font-size: 3rem; margin-bottom: 0.8rem; }
.leader-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark);
}
.leader-card.featured h3 { color: white; }
.leader-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 0.8rem;
}
.leader-card.featured .leader-title { color: rgba(255,255,255,0.75); }
.leader-card p { font-size: 0.88rem; color: #666; line-height: 1.55; font-style: italic; }
.leader-card.featured p { color: rgba(255,255,255,0.85); }

/* ---- JOIN SECTION ---- */
.join-section {
  background: linear-gradient(135deg, #1A0A12 0%, var(--mid) 100%);
  padding: 6rem 4rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.join-section::before {
  content: '🌸';
  position: absolute;
  font-size: 20rem;
  opacity: 0.03;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.join-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.join-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.join-inner h2 em { color: var(--soft-pink); font-style: italic; }
.join-inner > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.webring-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 2rem !important;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}
.webring-link {
  color: var(--soft-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s;
}
.webring-link:hover { color: white; }
.join-form { display: flex; flex-direction: column; gap: 0.8rem; }
.join-form input,
.join-form select {
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: white;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
}
.join-form input::placeholder { color: rgba(255,255,255,0.4); }
.join-form select option { background: var(--dark); color: white; }
.join-form input:focus,
.join-form select:focus { border-color: var(--soft-pink); }
.join-form .btn-primary { margin-top: 0.4rem; font-size: 1.05rem; }
.join-success {
  display: none;
  padding: 2.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--soft-pink);
  border-radius: 8px;
  animation: fadeUp 0.5s ease forwards;
}
.join-success.visible { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.join-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--soft-pink); margin-bottom: 0.5rem; }
.join-success p { color: rgba(255,255,255,0.7); line-height: 1.65; font-size: 0.92rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 4rem;
  text-align: center;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
}
.footer-logo .emblem { animation: spin 10s linear infinite; font-size: 1.1rem; }
.footer-tagline {
  font-style: italic;
  color: var(--soft-pink);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--soft-pink); }
.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .navbar { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .about { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 4rem 1.5rem; }
  .m-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .leaders { padding: 4rem 1.5rem; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-card.featured { transform: scale(1); }
  .join-section { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-links { flex-direction: column; gap: 0.7rem; }
}
