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

:root {
  --bg:            #0D0020;
  --bg-purple:     #1B0038;
  --bg-blue:       #000D2E;
  --accent:        #BF5FFF;
  --accent-dim:    rgba(191, 95, 255, 0.5);
  --accent-glow:   rgba(191, 95, 255, 0.15);
  --text:          #FFFFFF;
  --text-muted:    rgba(255, 255, 255, 0.65);
  --card-bg:       rgba(255, 255, 255, 0.04);
  --card-border:   rgba(191, 95, 255, 0.18);
  --nav-h:         80px;
  --bottom-nav-h:  64px;
}

html {
  scroll-behavior: smooth;
  /* Firefox */
  scrollbar-color: var(--accent) var(--bg-purple);
  scrollbar-width: thin;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar              { width: 8px; }
::-webkit-scrollbar-track        { background: var(--bg-purple); }
::-webkit-scrollbar-thumb        { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: rgba(191, 95, 255, 0.75); }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--bottom-nav-h);
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }

/* ── Hero brand name ─────────────────────────────────────────────────── */
.hero-brand {
  font-size: unset;
  font-weight: unset;
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
}

.brand-text {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 48px;
  color: rgba(210, 180, 255, 0.88);
  text-shadow: 0 0 40px rgba(160, 100, 255, 0.5);
  letter-spacing: 2px;
}

.brand-sup {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  top: -22px;
  color: rgba(220, 200, 255, 0.85);
  letter-spacing: 1px;
}

.brand-cross {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 80px;
  position: relative;
  top: 7px;
  margin-left: 8px;
  opacity: 0.85;
  color: rgba(210, 180, 255, 0.88);
}

.accent { color: var(--accent); }
a { color: inherit; text-decoration: none; }

/* ── Layout ──────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Desktop Top Nav ─────────────────────────────────────────────────── */
.top-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13, 0, 32, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img { height: 54px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse at 30% 20%, #2D006E 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, #001A5C 0%, transparent 55%),
    var(--bg);
  position: relative;
}

.hero-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 108px;
  height: 108px;
  object-fit: contain;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(191, 95, 255, 0.45)); }
  50%       { filter: drop-shadow(0 0 38px rgba(191, 95, 255, 0.75)); }
}

.hero-content { max-width: 680px; }

.tagline {
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  color: var(--accent);
  font-weight: 600;
  margin: 1rem 0 0.75rem;
  letter-spacing: 0.03em;
}

.sub-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(191, 95, 255, 0.4);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(191, 95, 255, 0.65);
}

.hero-scroll-hint {
  position: absolute;
  bottom: calc(var(--bottom-nav-h) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 1rem; }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ── Shared Section Styles ───────────────────────────────────────────── */
section { padding: 2.5rem 0 3.5rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

/* ── About ───────────────────────────────────────────────────────────── */
.about {
  background: linear-gradient(160deg, var(--bg-purple) 0%, var(--bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: var(--accent-dim);
  background: rgba(191, 95, 255, 0.06);
}

.feature-icon { font-size: 1.65rem; margin-bottom: 0.65rem; }

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Content Preview ─────────────────────────────────────────────────── */
.content-preview {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-blue) 100%);
}

.gallery-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.gallery-arrow {
  display: none; /* shown on desktop via media query */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(13, 0, 32, 0.85);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.gallery-arrow:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
  background: rgba(13, 0, 32, 0.95);
}
.gallery-prev { left: -22px; }
.gallery-next { right: -22px; }

.slides-gallery {
  display: flex;
  gap: 0.875rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.slides-gallery::-webkit-scrollbar { display: none; }

.slide-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s;
  background: var(--card-bg);
}
.slide-item img { width: 100%; height: auto; display: block; }

/* Placeholder when no sample images are present */
.slide-item img[src=""] ,
.slide-item img:not([src]) {
  min-height: 240px;
  background: var(--card-bg);
}

.slide-format {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.format-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.step-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text { display: flex; flex-direction: column; gap: 0.15rem; }
.step-text strong { font-size: 0.9rem; }
.step-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ── Connect / Find Us ───────────────────────────────────────────────── */
.connect {
  background: linear-gradient(160deg, var(--bg-blue) 0%, var(--bg-purple) 100%);
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
a.social-card:hover {
  border-color: var(--accent-dim);
  background: rgba(191, 95, 255, 0.07);
  transform: translateX(5px);
}
.social-card.coming-soon {
  opacity: 0.45;
  cursor: default;
}

.social-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(191, 95, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.social-icon svg { width: 22px; height: 22px; }

.social-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.social-name  { font-weight: 600; font-size: 0.925rem; }
.social-handle { font-size: 0.78rem; color: var(--text-muted); }

.social-status {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.live-badge {
  background: rgba(80, 200, 100, 0.12);
  color: #5BC87A;
  border: 1px solid rgba(80, 200, 100, 0.28);
}
.soon-badge {
  background: rgba(191, 95, 255, 0.1);
  color: var(--accent);
  border: 1px solid var(--card-border);
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.9;
  background: var(--bg);
}
.footer-verse {
  font-style: italic;
  color: rgba(191, 95, 255, 0.55);
  margin-top: 0.3rem;
}

/* ── Mobile Bottom Nav ───────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: rgba(13, 0, 32, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: stretch;
  z-index: 100;
}

.bottom-nav-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.5rem 0 0.4rem;
}
.bottom-nav-item svg { width: 21px; height: 21px; }

.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--accent); }

.bottom-nav-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 8px var(--accent-dim);
}

/* ── Responsive — Tablet & Desktop ──────────────────────────────────── */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
    padding-top: var(--nav-h);
  }

  .brand-text { font-size: 72px; }

  .top-nav { display: flex; }
  .bottom-nav { display: none; }

  section { padding: 5rem 0; }
  .hero-scroll-hint { bottom: 2rem; }

  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

  .slides-gallery { gap: 1.25rem; }
  .slide-item { flex: 0 0 280px; }

  .gallery-wrapper { padding: 0 1rem; }
  .gallery-arrow { display: flex; align-items: center; justify-content: center; }

  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  a.social-card:hover {
    transform: translateY(-3px) translateX(0);
  }
}

@media (min-width: 1024px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { gap: 1.5rem; }
  .slide-item { flex: 0 0 300px; }
}
