/*
Theme Name: Goddess Theme
Theme URI: https://example.com
Author: Custom
Author URI: https://example.com
Description: A dark, luxurious theme for content creators — black, crimson & gold.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: goddess-theme
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --black:      #0a0a0a;
  --deep:       #110e0e;
  --card:       #1a1212;
  --crimson:    #c0122c;
  --crimson-lt: #e8193a;
  --gold:       #c9a84c;
  --gold-lt:    #e8c96a;
  --white:      #f5f0f0;
  --muted:      #9a8a8a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Raleway', 'Helvetica Neue', sans-serif;
  --transition: 0.35s ease;
  --radius:     4px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--crimson); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

p { margin-bottom: 1.2rem; color: var(--muted); }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.text-center { text-align: center; }

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  margin: 18px auto 32px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  text-align: center;
}

.section-title span { color: var(--crimson); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson), #8b0018);
  color: var(--white);
  box-shadow: 0 0 20px rgba(192, 18, 44, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--crimson-lt), var(--crimson));
  box-shadow: 0 0 35px rgba(232, 25, 58, 0.65);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   TOP STICKY BANNER POPUP
   ============================================================ */
#top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0a0a0a 0%, #1e0408 40%, #0a0a0a 100%);
  border-bottom: 1px solid var(--crimson);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 30px rgba(192, 18, 44, 0.35);
}

#top-banner p {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

#top-banner p span { color: var(--gold); font-weight: 700; }

#top-banner .btn { padding: 8px 24px; font-size: 0.78rem; }

#top-banner .banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
#top-banner .banner-close:hover { color: var(--white); }

/* ============================================================
   CENTER MODAL POPUP
   ============================================================ */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeInOverlay 0.6s 1.2s forwards;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

#modal-box {
  background: var(--card);
  border: 1px solid rgba(192, 18, 44, 0.5);
  border-radius: 8px;
  max-width: 500px;
  width: 92%;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(192, 18, 44, 0.35), 0 0 200px rgba(0,0,0,0.9);
  transform: translateY(30px);
  animation: slideUpModal 0.5s 1.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes slideUpModal {
  to { transform: translateY(0); }
}

#modal-box .modal-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

#modal-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
}

#modal-box h2 span { color: var(--crimson); }

#modal-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

#modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
#modal-close:hover { color: var(--crimson); }

.modal-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  margin: 0 auto 24px;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 44px; /* sits below top banner */
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), top var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(192, 18, 44, 0.25);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

#site-header.banner-hidden { top: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.site-logo span { color: var(--crimson); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(192,18,44,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #110808 50%, #0a0a0a 100%);
  z-index: 0;
}

/* Animated grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,18,44,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,18,44,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 0 60px rgba(192,18,44,0.3);
}

.hero h1 .highlight {
  color: var(--crimson);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero Social Links */
.hero-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
  text-decoration: none;
}

.hero-social-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: color var(--transition);
}

.hero-social-link:hover {
  color: var(--white);
  border-color: var(--crimson);
  background: rgba(192,18,44,0.1);
  box-shadow: 0 0 14px rgba(192,18,44,0.25);
}

.hero-social-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  margin: 0 2px;
}

@media (max-width: 500px) {
  .hero-socials { gap: 4px; }
  .hero-social-link { font-size: 0.68rem; padding: 6px 10px; }
  .hero-social-divider { display: none; }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}
.scroll-hint svg { width: 18px; opacity: 0.5; }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TEASER STRIP (Home — 3 icons)
   ============================================================ */
.teaser-strip {
  padding: 60px 0;
  border-top: 1px solid rgba(192,18,44,0.15);
  border-bottom: 1px solid rgba(192,18,44,0.15);
  background: var(--deep);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.teaser-item {
  padding: 30px 20px;
  border-radius: 6px;
  transition: background var(--transition);
}
.teaser-item:hover { background: rgba(192,18,44,0.06); }

.teaser-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.teaser-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

/* ============================================================
   ABOUT PREVIEW (Home)
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a0f0f, #2a0a15);
  border-radius: 6px;
  border: 1px solid rgba(192,18,44,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.about-img-placeholder .icon { font-size: 3rem; opacity: 0.3; }

/* Decorative corner lines */
.about-img-wrap::before,
.about-img-wrap::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--crimson);
  border-style: solid;
  opacity: 0.5;
}
.about-img-wrap::before { top: -12px; left: -12px; border-width: 2px 0 0 2px; }
.about-img-wrap::after  { bottom: -12px; right: -12px; border-width: 0 2px 2px 0; }

.about-text .tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
  display: block;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.about-traits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.about-traits li {
  background: rgba(192,18,44,0.1);
  border: 1px solid rgba(192,18,44,0.3);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 40px;
}

/* ============================================================
   GALLERY PREVIEW (Home)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-cell {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #1a0f0f, #2a0a15);
  border-radius: 4px;
  border: 1px solid rgba(192,18,44,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.gallery-cell:hover {
  transform: scale(1.03);
  border-color: var(--crimson);
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-cell:hover img { transform: scale(1.08); }

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
.gallery-cell-overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

/* Gallery full page */
.gallery-full { columns: 3; column-gap: 16px; }
.gallery-full .gallery-cell {
  break-inside: avoid;
  margin-bottom: 16px;
  aspect-ratio: unset;
  min-height: 220px;
}
.gallery-full .gallery-cell:nth-child(3n+1) { min-height: 320px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(192,18,44,0.12);
  border: 1px solid rgba(192,18,44,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail span { color: var(--muted); font-size: 0.9rem; }
.contact-detail a { color: var(--white); }

.social-links { display: flex; gap: 12px; margin-top: 28px; }

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(192,18,44,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
  box-shadow: 0 0 20px rgba(192,18,44,0.5);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,18,44,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,138,138,0.5); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--crimson);
  background: rgba(192,18,44,0.04);
}

.form-group textarea { min-height: 140px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(192,18,44,0.1) 0%, transparent 70%);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(192,18,44,0.2);
}

.stat-box { text-align: center; }
.stat-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--crimson);
  line-height: 1;
}
.stat-box span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.bike-section {
  background: var(--deep);
  border-top: 1px solid rgba(192,18,44,0.12);
  border-bottom: 1px solid rgba(192,18,44,0.12);
}

.bike-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(192,18,44,0.2);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--crimson); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(154,138,138,0.5); margin: 0; }

.footer-bottom a { color: var(--crimson); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,18,44,0.12) 0%, transparent 70%);
  border-bottom: 1px solid rgba(192,18,44,0.12);
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.breadcrumb a { color: var(--crimson); }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   NOTICE / AGE GATE (optional strip)
   ============================================================ */
.age-notice {
  background: rgba(192,18,44,0.07);
  border: 1px solid rgba(192,18,44,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-preview,
  .contact-wrap,
  .about-full-grid,
  .bike-grid { grid-template-columns: 1fr; gap: 40px; }

  .teaser-grid { grid-template-columns: 1fr; }

  .gallery-grid,
  .gallery-full { columns: 2; display: block; }
  .gallery-grid .gallery-cell { display: inline-block; width: 48%; margin: 1%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(10,10,10,0.98); z-index: 800; align-items: center; justify-content: center; gap: 28px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .gallery-grid, .gallery-full { display: grid; grid-template-columns: 1fr 1fr; columns: unset; }
  .gallery-full .gallery-cell:nth-child(3n+1) { min-height: 160px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  #modal-box { padding: 36px 24px; }

  .hero h1 { font-size: 2.6rem; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }
}
