/* =============================================
   KINK EVENTS & EXPERIENCES BY KANDY GODDESS
   styles.css — Shared stylesheet for all pages
   =============================================
   Color scheme: Black + #FF00FF + #6A0DAD + #0000FF
   =============================================
   Table of Contents:
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Scrollbar
   4.  Navigation Header
   5.  Mobile Nav Drawer
   6.  Utility Classes
   7.  Buttons
   8.  Event Cards (home + events)
   9.  Event List Items (events + sidebars)
   10. Modal Overlay
   11. Footer
   12. ---- HOME PAGE ----
   13. Hero Section
   14. Featured Events Strip
   15. Welcome Section
   16. ---- EVENTS PAGE ----
   17. Calendar Widget
   18. Calendar Sidebar
   19. ---- ABOUT PAGE ----
   20. About Hero Band
   21. About Body
   22. Info Cards
   23. Animations
   24. Responsive / Media Queries
============================================= */

/* =============================================
   0. AGE GATE
============================================= */
.age-gate-overlay {
  position:        fixed;
  inset:           0;
  z-index:         99999;
  background:      #000;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         1rem;
}
.age-gate-overlay.hidden { display: none; }
.age-gate-box {
  background:    var(--clr-surface, #1a1a2e);
  border:        1px solid var(--clr-border, #333);
  border-radius: 16px;
  padding:       2.5rem 2rem;
  max-width:     420px;
  width:         100%;
  text-align:    center;
  box-shadow:    0 0 40px rgba(255, 0, 255, 0.15);
}
.age-gate-box h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size:   1.6rem;
  margin-bottom: 0.75rem;
}
.age-gate-box p {
  font-size:     0.95rem;
  color:         #aaa;
  margin-bottom: 1.5rem;
  line-height:   1.5;
}
.age-gate-buttons {
  display: flex;
  gap:     1rem;
  justify-content: center;
}
.age-gate-buttons button {
  padding:       0.75rem 2rem;
  border-radius: 8px;
  font-weight:   600;
  font-size:     0.95rem;
  cursor:        pointer;
  border:        1px solid transparent;
  transition:    all 0.2s ease;
}
.age-gate-enter {
  background:   linear-gradient(135deg, #ff00ff, #6a0dad);
  color:        #fff;
  border-color: #ff00ff;
}
.age-gate-enter:hover { opacity: 0.85; }
.age-gate-exit {
  background:   transparent;
  color:        #aaa;
  border-color: #555;
}
.age-gate-exit:hover { color: #fff; border-color: #888; }

/* =============================================
   1. CSS CUSTOM PROPERTIES
============================================= */
:root {
  /* Backgrounds */
  --clr-bg:          #000000;
  --clr-surface:     #080808;
  --clr-surface-2:   #111118;

  /* Primary accent — magenta */
  --clr-gold:        #FF00FF;
  --clr-gold-light:  #FF66FF;
  --clr-gold-dim:    #880088;

  /* Secondary A — purple */
  --clr-jewel:       #6A0DAD;
  --clr-jewel-light: #9B3FDB;
  --clr-jewel-deep:  #2A0550;

  /* Secondary B — blue */
  --clr-accent:      #0000FF;

  /* Text */
  --clr-text:        #F0ECFF;
  --clr-text-muted:  #9090C0;

  /* Borders */
  --clr-border:      #1E0A3C;

  --font-display: 'Cinzel Decorative', cursive;
  --font-body:    'Rajdhani', sans-serif;

  --nav-h:     70px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-gold: 0 0 20px rgba(255, 0, 255, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.7);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }


body {
  background:  var(--clr-bg);
  color:       var(--clr-text);
  font-family: var(--font-body);
  font-size:   16px;
  line-height: 1.7;
  min-height:  100vh;
}

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

a {
  color: var(--clr-gold);
  text-decoration: none;
}
a:hover { color: var(--clr-gold-light); }

/* =============================================
   3. SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--clr-gold-dim);
  border-radius: 3px;
}

/* =============================================
   4. NAVIGATION HEADER
============================================= */
.site-header {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    100;
  height:     var(--nav-h);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  display:    flex;
  align-items: center;
  justify-content: space-between;
  padding:    0 2rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size:   clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color:       var(--clr-gold-light);
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width:   260px;
  text-decoration: none;
}
.site-logo:hover { color: var(--clr-gold-light); }

.site-logo span {
  display:     block;
  font-size:   0.7em;
  font-weight: 400;
  font-style:  italic;
  color:       var(--clr-text-muted);
}

/* Desktop nav tabs */
.nav-tabs {
  display:    flex;
  gap:        0.25rem;
  list-style: none;
}

.nav-tabs a {
  display:     inline-block;
  color:       var(--clr-text-muted);
  font-family: var(--font-body);
  font-size:   0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding:     0.5rem 1.2rem;
  border-radius: var(--radius);
  cursor:      pointer;
  transition:  color var(--transition), background var(--transition);
  position:    relative;
  text-decoration: none;
}

.nav-tabs a::after {
  content:  '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height:   2px;
  background: var(--clr-gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px;
}

.nav-tabs a:hover              { color: var(--clr-text); }
.nav-tabs a:hover::after       { left: 20%; right: 20%; }

.nav-tabs a.active {
  color:      var(--clr-gold-light);
  background: rgba(255, 0, 255, 0.08);
}
.nav-tabs a.active::after { left: 10%; right: 10%; }

/* Hamburger button */
.hamburger {
  display:    none;
  flex-direction: column;
  justify-content: space-around;
  width:  28px;
  height: 22px;
  background: none;
  border:  none;
  cursor:  pointer;
  padding: 0;
}
.hamburger span {
  display:  block;
  width:    100%;
  height:   2px;
  background: var(--clr-gold-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =============================================
   5. MOBILE NAV DRAWER
============================================= */
.mobile-nav {
  display:  none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding:  1rem;
  z-index:  99;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  display:     block;
  color:       var(--clr-text-muted);
  font-family: var(--font-body);
  font-size:   1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding:     0.85rem 1rem;
  text-align:  left;
  border-radius: var(--radius);
  transition:  color var(--transition), background var(--transition), border-color var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color:       var(--clr-gold-light);
  background:  rgba(255, 0, 255, 0.08);
  border-left-color: var(--clr-gold);
}

/* =============================================
   6. UTILITY CLASSES
============================================= */
.page-wrap {
  padding-top: var(--nav-h);
  min-height:  100vh;
}

.container {
  width:      100%;
  max-width:  1140px;
  margin:     0 auto;
  padding:    0 1.5rem;
}

.section { padding: 5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size:   clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color:       var(--clr-gold-light);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color:     var(--clr-text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.divider {
  width:  60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}

.gold-text   { color: var(--clr-gold-light); }
.jewel-text  { color: var(--clr-jewel-light); }

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size:  0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* badge-gold → magenta */
.badge-gold {
  background: rgba(255, 0, 255, 0.12);
  border: 1px solid var(--clr-gold-dim);
  color: var(--clr-gold-light);
}
/* badge-jewel → purple */
.badge-jewel {
  background: rgba(106, 13, 173, 0.25);
  border: 1px solid var(--clr-jewel);
  color: var(--clr-jewel-light);
}
/* badge-accent → blue */
.badge-accent {
  background: rgba(0, 0, 255, 0.15);
  border: 1px solid var(--clr-accent);
  color: #6699FF;
}

/* =============================================
   7. BUTTONS
============================================= */
.btn {
  display:     inline-flex;
  align-items: center;
  gap:         0.5rem;
  padding:     0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif !important;
  font-size:   0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor:      pointer;
  border:      none;
  text-decoration: none;
  transition:  transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:active { transform: scale(0.97); }

/* Primary button — magenta → purple gradient */
.btn-gold {
  background: linear-gradient(135deg, #FF00FF, #6A0DAD);
  color:      #ffffff;
  box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FF66FF, #FF00FF);
  box-shadow: 0 6px 28px rgba(255, 0, 255, 0.6);
  transform:  translateY(-2px);
  color:      #ffffff;
}

/* Primary button — blue gradient */
.btn-blue {
  background: linear-gradient(135deg, #00BFFF, #1A0DAD);
  color:      #ffffff;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
}
.btn-blue:hover {
  background: linear-gradient(135deg, #66D9FF, #00BFFF);
  box-shadow: 0 6px 28px rgba(0, 191, 255, 0.6);
  transform:  translateY(-2px);
  color:      #ffffff;
}

/* Primary button — purple gradient */
.btn-purple {
  background: linear-gradient(135deg, #A855F7, #6A0DAD);
  color:      #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}
.btn-purple:hover {
  background: linear-gradient(135deg, #C084FC, #A855F7);
  box-shadow: 0 6px 28px rgba(168, 85, 247, 0.6);
  transform:  translateY(-2px);
  color:      #ffffff;
}

/* Outline button — magenta border */
.btn-outline {
  background: transparent;
  border:     1.5px solid var(--clr-gold-dim);
  color:      var(--clr-gold-light);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  background:   rgba(255, 0, 255, 0.08);
  transform:    translateY(-2px);
  color:        var(--clr-gold-light);
}

/* =============================================
   8. EVENT CARDS (home + events pages)
============================================= */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--clr-surface-2);
  border:     1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow:   hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor:     pointer;
}
.event-card:hover {
  transform:   translateY(-4px);
  box-shadow:  var(--shadow-card), 0 0 0 1px var(--clr-gold-dim);
  border-color: var(--clr-gold-dim);
}

/* Card header — deep purple → deep blue */
.event-card-header {
  background: linear-gradient(135deg, #2A0550 0%, #0A0030 100%);
  padding:    1.5rem;
  position:   relative;
  overflow:   hidden;
}
.event-card-header::before {
  content:  '';
  position: absolute;
  top: -20px; right: -20px;
  width:  100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 0, 255, 0.08);
}

/* Date badge — magenta → purple */
.event-date-badge {
  display:        inline-flex;
  flex-direction: column;
  align-items:    center;
  background:     linear-gradient(135deg, #FF00FF, #6A0DAD);
  color:          #ffffff;
  border-radius:  8px;
  padding:        0.4rem 0.7rem;
  min-width:      52px;
  font-weight:    700;
}
.event-date-badge .month {
  font-size:      0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-date-badge .day {
  font-size:   1.4rem;
  line-height: 1;
}

.event-card-body { padding: 1.25rem 1.5rem; }

.event-card-body h3 {
  font-family:   var(--font-display);
  font-size:     1.1rem;
  color:         var(--clr-text);
  margin-bottom: 0.5rem;
}
.event-card-body p {
  font-size:     0.85rem;
  color:         var(--clr-text-muted);
  line-height:   1.6;
  margin-bottom: 1rem;
}

.event-meta {
  display:   flex;
  gap:       1rem;
  font-size: 0.78rem;
  color:     var(--clr-text-muted);
  flex-wrap: wrap;
}
.event-meta span {
  display:     flex;
  align-items: center;
  gap:         0.3rem;
}

/* =============================================
   9. EVENT LIST ITEMS (sidebars / all-events)
============================================= */
.event-list-item {
  display:  flex;
  gap:      1rem;
  padding:  0.85rem 0;
  border-bottom: 1px solid rgba(30, 10, 60, 0.6);
  cursor:   pointer;
  transition: opacity var(--transition);
}
.event-list-item:last-child  { border-bottom: none; padding-bottom: 0; }
.event-list-item:hover       { opacity: 0.75; }

.event-list-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--clr-jewel-light);
  margin-top:    7px;
  flex-shrink:   0;
}

.event-list-info h4 {
  font-size:     0.9rem;
  font-weight:   600;
  color:         var(--clr-text);
  margin-bottom: 0.2rem;
  line-height:   1.3;
}
.event-list-info p {
  font-size: 0.78rem;
  color:     var(--clr-text-muted);
}

.no-events {
  text-align:  center;
  color:       var(--clr-text-muted);
  font-size:   0.875rem;
  font-style:  italic;
  padding:     1rem 0;
}

/* =============================================
   10. MODAL OVERLAY
============================================= */
.modal-overlay {
  position:        fixed;
  inset:           0;
  background:      rgba(0, 0, 0, 0.85);
  z-index:         200;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         1.5rem;
  backdrop-filter: blur(4px);
  opacity:         0;
  pointer-events:  none;
  transition:      opacity var(--transition);
}
.modal-overlay.open {
  opacity:        1;
  pointer-events: all;
}

.modal {
  background:    var(--clr-surface);
  border:        1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding:       2.5rem;
  max-width:     520px;
  width:         100%;
  max-height:    85vh;
  overflow-y:    auto;
  box-shadow:    var(--shadow-card), var(--shadow-gold);
  transform:     translateY(16px);
  transition:    transform var(--transition);
  position:      relative;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position:    absolute;
  top: 1.2rem; right: 1.2rem;
  background:  rgba(255, 255, 255, 0.05);
  border:      1px solid var(--clr-border);
  color:       var(--clr-text-muted);
  width:  32px;
  height: 32px;
  border-radius: 50%;
  cursor:      pointer;
  font-size:   1.1rem;
  display:     flex;
  align-items: center;
  justify-content: center;
  transition:  background var(--transition), color var(--transition);
}
.modal-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--clr-text); }

.modal h2 {
  font-family:   var(--font-display);
  font-size:     1.6rem;
  color:         var(--clr-gold-light);
  margin-bottom: 0.75rem;
}

.modal-date-badge { margin-bottom: 1rem; }

.modal-desc {
  font-size:     0.95rem;
  color:         var(--clr-text-muted);
  line-height:   1.8;
  margin-bottom: 1.5rem;
}

.modal-detail-grid {
  display:    grid;
  grid-template-columns: 1fr 1fr;
  gap:        0.75rem;
  margin:     1.5rem 0;
}

.modal-detail-item {
  background:    var(--clr-surface-2);
  border:        1px solid var(--clr-border);
  border-radius: var(--radius);
  padding:       0.85rem 1rem;
}
.modal-detail-item label {
  display:        block;
  font-size:      0.7rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color:          var(--clr-gold-dim);
  margin-bottom:  0.25rem;
}
.modal-detail-item span {
  font-size: 0.9rem;
  color:     var(--clr-text);
}


/* =============================================
   11. FOOTER
============================================= */
.site-footer {
  border-top:  1px solid var(--clr-border);
  background:  var(--clr-surface);
  padding:     2.5rem 0;
  text-align:  center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size:   1.1rem;
  font-weight: 700;
  font-style:  italic;
  color:       var(--clr-gold-light);
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size:     0.8rem;
  color:         var(--clr-text-muted);
  margin-bottom: 1rem;
}

.footer-gold-line {
  width:      80px;
  height:     1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-dim), transparent);
  margin:     0 auto 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color:     rgba(144, 144, 192, 0.5);
}

/* =============================================
   12. HOME PAGE — Hero Section
============================================= */
.hero {
  position:   relative;
  min-height: calc(100vh - var(--nav-h));
  display:    flex;
  align-items: center;
  overflow:   hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(106,13,173,0.4)  0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,0,255,0.2)     0%, transparent 55%),
    linear-gradient(160deg, #000000 0%, #0A0020 50%, #080808 100%);
}

/* Ambient glow orbs */
.hero::before,
.hero::after {
  content:      '';
  position:     absolute;
  border-radius: 50%;
  filter:       blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(106,13,173,0.5) 0%, transparent 70%);
}
.hero::after {
  width: 350px; height: 350px;
  bottom: -80px; left: -50px;
  background: radial-gradient(circle, rgba(255,0,255,0.2) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index:  1;
  display:  flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap:      2rem;
}

.hero-eyebrow {
  font-size:      0.8rem;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-content: center;
  color:          var(--clr-gold);
  margin-bottom:  1.2rem;
  display:        flex;
  align-items:    center;
  gap:            0.75rem;
}
.hero-eyebrow::before {
  content:    none;
}

.hero-title {
  font-family:   var(--font-display);
  font-size:     clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight:   900;
  line-height:   1.1;
  margin-bottom: 1.5rem;
}

/* Gradient headline: magenta → blue → purple */
.hero-title .line-highlight {
  display:    block;
  background: linear-gradient(135deg, #FF66FF 0%, #0000FF 55%, #9B3FDB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color:         var(--clr-text-muted);
  font-size:     1.05rem;
  max-width:     600px;
  margin-left:   auto;
  margin-right:  auto;
  margin-bottom: 2.5rem;
  line-height:   1.8;
}

.hero-cta {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero visual card */
.hero-visual {
  position:        relative;
  display:         flex;
  justify-content: center;
  align-items:     center;
}

/* Card: deep purple → dark blue */
.hero-card {
  width:         100%;
  max-width:     380px;
  aspect-ratio:  3/4;
  border-radius: var(--radius-lg);
  background:    linear-gradient(145deg, #2A0550 0%, #14003A 40%, #0A000A 100%);
  border:        1px solid var(--clr-border);
  position:      relative;
  overflow:      hidden;
  box-shadow:    var(--shadow-card), var(--shadow-gold);
  display:       flex;
  flex-direction: column;
  align-items:   center;
  justify-content: flex-end;
  padding:       2rem;
  text-align:    center;
}
.hero-card::before {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 30%, rgba(106,13,173,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(255,0,255,0.12)  0%, transparent 55%);
}

/* KG monogram: magenta → blue */
.hero-monogram {
  position:   absolute;
  top:  50%; left: 50%;
  transform:  translate(-50%, -60%);
  font-family: var(--font-display);
  font-size:  5rem;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, #FF66FF, #0000FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  opacity:    0.8;
}

.hero-card-content       { position: relative; z-index: 1; }
.hero-card-content h3 {
  font-family:   var(--font-display);
  font-size:     1.3rem;
  color:         var(--clr-gold-light);
  margin-bottom: 0.4rem;
}
.hero-card-content p {
  font-size: 0.825rem;
  color:     var(--clr-text-muted);
}

.hero-stat-pill {
  position:    absolute;
  background:  rgba(0, 0, 0, 0.9);
  border:      1px solid var(--clr-border);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding:     0.6rem 1.2rem;
  font-size:   0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:  var(--shadow-card);
}
.hero-stat-pill span { color: var(--clr-gold-light); font-weight: 700; }
.hero-stat-pill:nth-child(1) { top: 15%;    left:  -15%; }
.hero-stat-pill:nth-child(2) { bottom: 25%; right: -12%; }

/* =============================================
   13. HOME PAGE — Featured Events Strip
============================================= */
.featured-events {
  background:    var(--clr-surface);
  border-top:    1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding:       4rem 0;
}

.view-all-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   14. HOME PAGE — Welcome Section
============================================= */
.welcome-section { background: var(--clr-bg); }

.welcome-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap:     4rem;
  align-items: center;
}

.welcome-card-stack {
  position: relative;
  height:   360px;
}

/* Back layer: purple → blue */
.welcome-card-back {
  position:      absolute;
  top: 24px; left: 24px;
  width:         calc(100% - 24px);
  height:        calc(100% - 24px);
  border-radius: var(--radius-lg);
  background:    linear-gradient(135deg, #6A0DAD 0%, #0000FF 100%);
  opacity:       0.25;
}

.welcome-card-front {
  position:        absolute;
  inset:           0;
  border-radius:   var(--radius-lg);
  background:      linear-gradient(145deg, var(--clr-surface-2) 0%, var(--clr-surface) 100%);
  border:          1px solid var(--clr-border);
  overflow:        hidden;
  box-shadow:      var(--shadow-card);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             1rem;
}
.welcome-card-front .crown {
  font-size: 4rem;
  filter:    drop-shadow(0 0 16px rgba(255, 0, 255, 0.6));
}
.welcome-card-front .welcome-brand {
  font-family: var(--font-display);
  font-size:   1.4rem;
  font-weight: 700;
  font-style:  italic;
  text-align:  center;
  color:       var(--clr-gold-light);
  padding:     0 2rem;
}
/* Accent line: magenta */
.welcome-card-front .gold-line {
  width:      50px;
  height:     2px;
  background: linear-gradient(90deg, transparent, #FF00FF, transparent);
}

.welcome-text h2 {
  font-family:   var(--font-display);
  font-size:     clamp(2rem, 3.5vw, 2.8rem);
  font-weight:   700;
  margin-bottom: 0.5rem;
  line-height:   1.25;
}
.welcome-text p {
  color:         var(--clr-text-muted);
  margin-bottom: 1.25rem;
  font-size:     1rem;
  line-height:   1.8;
}

/* Quote box: purple → blue */
.highlight-box {
  background:  linear-gradient(135deg, rgba(106,13,173,0.15) 0%, rgba(0,0,255,0.08) 100%);
  border:      1px solid rgba(106, 13, 173, 0.4);
  border-left: 4px solid var(--clr-jewel-light);
  border-radius: var(--radius);
  padding:     1.25rem 1.5rem;
  margin:      1.5rem 0;
  font-size:   0.95rem;
  color:       var(--clr-text-muted);
  font-style:  italic;
}

/* =============================================
   15. EVENTS PAGE — Calendar Widget
============================================= */
.calendar-section { padding: 3.5rem 0 5rem; }

.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap:     2.5rem;
  align-items: start;
}

.cal-widget {
  background:    var(--clr-surface);
  border:        1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow:      hidden;
  box-shadow:    var(--shadow-card);
}

/* Calendar header: deep purple → deep blue */
.cal-header {
  background: linear-gradient(135deg, #2A0550 0%, #0A003A 100%);
  padding:    1.5rem 1.5rem 1rem;
  display:    flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--clr-border);
}

.cal-month-label {
  font-family: var(--font-display);
  font-size:   1.2rem;
  font-weight: 700;
  color:       var(--clr-gold-light);
}

/* Nav buttons: magenta tint */
.cal-nav-btn {
  background:    rgba(255, 0, 255, 0.1);
  border:        1px solid var(--clr-gold-dim);
  color:         var(--clr-gold-light);
  width:  34px;
  height: 34px;
  border-radius: 8px;
  cursor:        pointer;
  font-size:     1rem;
  display:       flex;
  align-items:   center;
  justify-content: center;
  transition:    background var(--transition), border-color var(--transition);
}
.cal-nav-btn:hover {
  background:   rgba(255, 0, 255, 0.2);
  border-color: var(--clr-gold);
}

.cal-grid { padding: 1rem; }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}
.cal-days-header span {
  text-align:     center;
  font-size:      0.7rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          var(--clr-gold-dim);
  padding:        0.4rem 0;
}

.cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap:     3px;
}

.cal-cell {
  aspect-ratio: 1;
  display:      flex;
  align-items:  center;
  justify-content: center;
  border-radius: 8px;
  font-size:    0.82rem;
  font-weight:  500;
  cursor:       pointer;
  transition:   background var(--transition), color var(--transition);
  color:        var(--clr-text-muted);
  position:     relative;
}
.cal-cell:hover:not(.empty):not(.today):not(.other-month) {
  background: rgba(255, 0, 255, 0.1);
  color:      var(--clr-text);
}
.cal-cell.empty        { cursor: default; }
.cal-cell.other-month  { color: rgba(144, 144, 192, 0.3); cursor: default; }

/* Today: magenta → purple */
.cal-cell.today {
  background:  linear-gradient(135deg, #FF00FF, #6A0DAD);
  color:       #ffffff;
  font-weight: 800;
}

/* Event dot: purple */
.cal-cell.has-event::after {
  content:       '';
  position:      absolute;
  bottom: 3px;   left: 50%;
  transform:     translateX(-50%);
  width:  4px;   height: 4px;
  border-radius: 50%;
  background:    var(--clr-jewel-light);
}
.cal-cell.has-event.today::after { background: #ffffff; }

/* Selected: purple tint */
.cal-cell.selected:not(.today) {
  background: rgba(106, 13, 173, 0.3);
  color:      var(--clr-jewel-light);
  border:     1px solid var(--clr-jewel);
}

/* =============================================
   16. EVENTS PAGE — Calendar Sidebar
============================================= */
.cal-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
}

.sidebar-panel {
  background:    var(--clr-surface);
  border:        1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow:      hidden;
}

/* Sidebar header: purple → dark */
.sidebar-panel-header {
  background:    linear-gradient(135deg, rgba(106,13,173,0.3) 0%, rgba(0,0,20,0.9) 100%);
  padding:       1rem 1.25rem;
  border-bottom: 1px solid var(--clr-border);
}
.sidebar-panel-header h3 {
  font-family: var(--font-display);
  font-size:   1rem;
  color:       var(--clr-gold-light);
}

.sidebar-panel-body { padding: 1.25rem; }

/* =============================================
   17. ABOUT PAGE — Hero Band
============================================= */
/* Purple → dark surface */
.about-hero-band {
  background:    linear-gradient(160deg, #2A0550 0%, #080808 100%);
  border-bottom: 1px solid var(--clr-border);
  padding:       4rem 0;
}

.about-hero-inner {
  display:     grid;
  grid-template-columns: auto 1fr;
  gap:         3rem;
  align-items: center;
}

/* Avatar circle: purple gradient with magenta glow ring */
.about-avatar {
  width:         200px;
  height:        200px;
  border-radius: 50%;
  background:    linear-gradient(145deg, #6A0DAD 0%, #2A0550 100%);
  border:        3px solid var(--clr-gold-dim);
  box-shadow:    0 0 0 6px rgba(255, 0, 255, 0.12), var(--shadow-card);
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     5rem;
  flex-shrink:   0;
}

/* Name: magenta → purple gradient text */
.about-hero-text h1 {
  font-family:   var(--font-display);
  font-size:     clamp(2rem, 4vw, 3.2rem);
  font-weight:   900;
  margin-bottom: 0.5rem;
  background:    linear-gradient(135deg, #FF66FF, #9B3FDB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-text .title-tag {
  font-size:     0.9rem;
  color:         var(--clr-jewel-light);
  font-weight:   600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.about-hero-text p {
  font-size:  1.05rem;
  color:      var(--clr-text-muted);
  max-width:  600px;
  line-height: 1.8;
}

/* =============================================
   18. ABOUT PAGE — Body Content
============================================= */
.about-body { padding: 4rem 0; }

.about-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap:     3rem;
}

.about-text h2 {
  font-family:   var(--font-display);
  font-size:     1.8rem;
  color:         var(--clr-gold-light);
  margin-bottom: 1rem;
}
.about-text p {
  color:         var(--clr-text-muted);
  font-size:     1rem;
  line-height:   1.85;
  margin-bottom: 1.25rem;
}

.values-list {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            0.75rem;
  margin:         1.5rem 0;
}
.values-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.85rem;
  flex-wrap:   nowrap;
  font-size:   0.95rem;
  color:       var(--clr-text-muted);
}
.values-list li::before {
  content:     '✦';
  color:       var(--clr-gold);
  font-size:   0.7rem;
  margin-top:  5px;
  flex-shrink: 0;
}

/* =============================================
   19. ABOUT PAGE — Sidebar Info Cards
============================================= */
.about-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
}

.info-card {
  background:    var(--clr-surface);
  border:        1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding:       1.75rem;
}
.info-card h3 {
  font-family:   var(--font-display);
  font-size:     1.1rem;
  color:         var(--clr-gold-light);
  margin-bottom: 1.25rem;
  display:       flex;
  align-items:   center;
  gap:           0.6rem;
}

.info-row {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         0.65rem 0;
  border-bottom:   1px solid rgba(30, 10, 60, 0.5);
  font-size:       0.875rem;
}
.info-row:last-child  { border-bottom: none; }
.info-row .label      { color: var(--clr-text-muted); }
.info-row .value      { color: var(--clr-text); font-weight: 600; }

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

.social-link {
  display:     flex;
  align-items: center;
  gap:         1rem;
  padding:     0.75rem 1rem;
  background:  var(--clr-surface-2);
  border:      1px solid var(--clr-border);
  border-radius: var(--radius);
  color:       var(--clr-text-muted);
  font-size:   0.875rem;
  font-weight: 500;
  transition:  border-color var(--transition), color var(--transition), background var(--transition);
  cursor:      pointer;
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--clr-gold-dim);
  color:        var(--clr-gold-light);
  background:   rgba(255, 0, 255, 0.05);
}

.social-link-icon {
  width:           32px;
  height:          32px;
  border-radius:   8px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1rem;
  flex-shrink:     0;
}

/* =============================================
   20. ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up   { animation: fadeInUp 0.6s ease 0s    both; }
.fade-in-up-2 { animation: fadeInUp 0.6s ease 0.12s both; }
.fade-in-up-3 { animation: fadeInUp 0.6s ease 0.24s both; }
.fade-in-up-4 { animation: fadeInUp 0.6s ease 0.36s both; }

/* =============================================
   21. RESPONSIVE / MEDIA QUERIES
============================================= */
@media (max-width: 900px) {
  /* Nav */
  .nav-tabs     { display: none; }
  .hamburger    { display: flex; }

  /* Hero */
  .hero-inner   { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc    { margin-left: auto; margin-right: auto; }
  .hero-cta     { justify-content: center; }
  .hero-visual  { display: none; }

  /* Welcome */
  .welcome-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-visual  { display: none; }

  /* Calendar */
  .calendar-layout { grid-template-columns: 1fr; }
  .cal-sidebar     { order: -1; }

  /* About */
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .about-avatar       { margin: 0 auto; width: 150px; height: 150px; font-size: 3.5rem; }
  .about-hero-text p  { margin: 0 auto; }
  .about-cols         { grid-template-columns: 1fr; }

  /* Modal */
  .modal-detail-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero               { padding: 2rem 0; }
  .section            { padding: 3.5rem 0; }
  .hero-stat-pill     { display: none; }
  .events-grid        { grid-template-columns: 1fr; }
  .site-logo          { font-size: 0.875rem; max-width: 200px; }
}
