/* ==========================================================================
   🌸 ANIMEBABES.US - CYBERPUNK ANIME & COSPLAY THEME SYSTEM
   ========================================================================== */

:root {
  --bg-dark: #0d0c15;
  --panel-dark: #141324;
  --panel-glass: rgba(20, 19, 36, 0.7);
  --neon-pink: #ff007f;
  --neon-cyan: #00f0ff;
  --neon-purple: #8b00ff;
  --text-primary: #e5e5f0;
  --text-muted: #9594b5;
  --border-neon: rgba(255, 0, 127, 0.2);
  --font-primary: 'Outfit', sans-serif;
  --font-accent: 'Orbitron', sans-serif;
}

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

body.cosplay-theme {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   📡 NEON HEADER BRANDING
   ========================================================================== */

.site-header {
  background-color: rgba(13, 12, 21, 0.95);
  border-bottom: 2px solid var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 2rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.neon-logo {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 8px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.site-title {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
}

/* ==========================================================================
   ⚡ CYBER NEON HERO AREA
   ========================================================================== */

.cosplay-hero {
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 0, 255, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.hero-title {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.btn-neon-pink {
  background-color: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 15px var(--neon-pink);
}

.btn-neon-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--neon-pink), 0 0 40px var(--neon-pink);
}

.btn-neon-cyan {
  background-color: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.2), 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-neon-cyan:hover {
  transform: translateY(-2px);
  background-color: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 25px var(--neon-cyan);
}

/* ==========================================================================
   🖼️ GRID STRUCTURE & MAIN CONTENT
   ========================================================================== */

.cosplay-main {
  padding: 4rem 2rem;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ==========================================================================
   🌸 SPOTLIGHT CARD & GALLERY
   ========================================================================== */

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spotlight-card {
  display: flex;
  background-color: var(--panel-dark);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.spotlight-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
}

.card-image-wrap {
  position: relative;
  flex: 1;
  min-height: 350px;
}

.spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--neon-pink);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--neon-pink);
}

.card-info {
  flex: 1.2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .spotlight-card {
    flex-direction: column;
  }
  .card-image-wrap {
    min-height: 250px;
  }
}

.card-category {
  font-family: var(--font-accent);
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.card-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.card-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-stats {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
}

.stat-item {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.stat-item strong {
  color: var(--neon-pink);
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.5);
}

/* ==========================================================================
   🗳️ GLASS PANELS & SIDEBAR
   ========================================================================== */

.glass-panel {
  background-color: var(--panel-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.panel-header {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon {
  color: var(--neon-pink);
  font-size: 1.1rem;
}

.panel-header h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.panel-body {
  padding: 1.5rem;
}

.subpage-padding {
  padding: 2.5rem;
}

.post-article h1,
.post-article h2,
.post-article h3 {
  font-family: var(--font-accent);
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.post-article p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.post-article ul {
  list-style-type: square;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   📅 SIDEBAR & BOOKING FORMS
   ========================================================================== */

.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--panel-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.8rem;
}

.sidebar-widget h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--neon-pink);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sidebar-widget p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-booking {
  margin-top: 0.5rem;
  background-color: var(--neon-pink);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.7rem;
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 0 12px var(--neon-pink);
  border: none;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-booking:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px var(--neon-pink);
}

/* Convention list styles */
.con-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.con-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
}

.con-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.con-date {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  min-width: 65px;
  background-color: rgba(0, 240, 255, 0.03);
}

.con-info {
  display: flex;
  flex-direction: column;
}

.con-info strong {
  font-size: 0.9rem;
  color: #fff;
}

.con-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   🌸 DYNAMIC FOOTER SYSTEM
   ========================================================================== */

.cosplay-footer {
  background-color: #08070d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.disclaimer-text {
  font-style: italic;
  font-size: 0.8rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
