/* ============================================================
   SAKURA ROLEPLAY — Shared Stylesheet
   ============================================================ */
:root {
  --pink: #ff4db8;
  --pink-soft: #ff85d6;
  --pink-dark: #c0006e;
  --pink-glow: rgba(255,77,184,0.4);
  --purple: #7b00b8;
  --bg: #0d000f;
  --bg2: #140016;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,77,184,0.2);
  --text: #f0e0ff;
  --text-dim: rgba(240,224,255,0.6);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("Background.png") center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.1);
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(120,0,180,0.25) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(255,77,184,0.10) 0%, transparent 60%),
    rgba(13,0,15,0.7);
}

/* ===== PETALS ===== */
.petal {
  position: fixed;
  top: -60px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  opacity: 0;
  animation: fall linear infinite;
  pointer-events: none;
  z-index: 999;
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(45deg); opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(110vh) translateX(40px) rotate(400deg); opacity: 0; }
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,0,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--pink));
}
.nav-logo span {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-soft);
  background: rgba(255,77,184,0.12);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--pink);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 16px; right: 16px;
}

.nav-btn {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink)) !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 10px 24px !important;
  box-shadow: 0 0 20px var(--pink-glow);
  font-size: 0.85rem !important;
  -webkit-text-fill-color: white !important;
}
.nav-btn:hover {
  box-shadow: 0 0 35px var(--pink-glow) !important;
  transform: translateY(-2px);
}
.nav-btn::after { display: none !important; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--pink-soft);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== SECTION HEADER ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 30px;
}
.section-title h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.section-title .divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.section-title .divider::before,
.section-title .divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--pink));
}
.section-title .divider::after {
  background: linear-gradient(90deg, var(--pink), transparent);
}
.section-title .divider span { font-size: 1.4rem; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--pink-dark), var(--pink));
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 18px var(--pink-glow);
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2.5px);
  box-shadow: 0 4px 30px var(--pink-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--pink-soft);
  padding: 9px 23px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--pink);
  transition: all 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,77,184,0.1);
  transform: translateY(-2.5px);
  box-shadow: 0 4px 18px var(--pink-glow);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
}
footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 0 16px;
}
footer .footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
footer .footer-links a:hover { color: var(--pink-soft); }
footer p {
  color: var(--text-dim);
  font-size: 0.88rem;
  letter-spacing: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GLASS CARD BASE ===== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(13,0,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: 70px;
  min-height: 100vh;
}
