/*
Theme Name: Astra Child - NWANC Professional
Template: astra  
Version: 4.0.0
Description: NWA Natural Championships - Professional Design System
Author: Ghost Design Studio
*/

/* =====================================================
   NWANC PROFESSIONAL DESIGN SYSTEM
   Based on naturalstatesavages.com aesthetic
   ===================================================== */

:root {
  /* Brand Colors - Crimson Palette */
  --nwanc-primary: #9D2235;
  --nwanc-primary-dark: #7A1B2A;
  --nwanc-primary-light: #B8334A;
  --nwanc-accent: #D4AF37;
  --nwanc-accent-light: #E8C547;
  
  /* Neutrals - Professional Grade */
  --nwanc-dark: #1a1a1a;
  --nwanc-gray-900: #212529;
  --nwanc-gray-800: #343a40;
  --nwanc-gray-700: #495057;
  --nwanc-gray-600: #6c757d;
  --nwanc-gray-300: #dee2e6;
  --nwanc-gray-100: #f8f9fa;
  --nwanc-white: #ffffff;
  
  /* Typography Scale */
  --nwanc-font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nwanc-font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing System */
  --nwanc-space-xs: 0.5rem;   /* 8px */
  --nwanc-space-sm: 1rem;     /* 16px */
  --nwanc-space-md: 1.5rem;   /* 24px */
  --nwanc-space-lg: 2rem;     /* 32px */
  --nwanc-space-xl: 3rem;     /* 48px */
  --nwanc-space-2xl: 4rem;    /* 64px */
  
  /* Shadows */
  --nwanc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --nwanc-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --nwanc-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  
  /* Border Radius */
  --nwanc-radius-sm: 6px;
  --nwanc-radius-md: 12px;
  --nwanc-radius-lg: 20px;
  
  /* Transitions */
  --nwanc-transition-fast: 0.15s ease-out;
  --nwanc-transition-base: 0.3s ease-out;
  --nwanc-transition-slow: 0.5s ease-out;
}

/* =====================================================
   BASE STYLES - PROFESSIONAL FOUNDATION
   ===================================================== */

/* Import Professional Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Clean Body with Subtle Background */
body {
  font-family: var(--nwanc-font-family-body);
  line-height: 1.6;
  color: var(--nwanc-gray-800);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow-x: hidden;
}

/* SUBTLE Razorback Background - Professional Implementation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../../../uploads/2026/02/razorbacks w logo.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.03; /* VERY SUBTLE - barely visible watermark */
  z-index: -1;
  pointer-events: none;
}

/* Crimson Accent Overlay - Sophisticated */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, 
    rgba(157, 34, 53, 0.02) 0%, 
    rgba(122, 27, 42, 0.04) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Professional Header */
.ast-masthead {
  background: linear-gradient(135deg, 
    var(--nwanc-primary) 0%, 
    var(--nwanc-primary-dark) 100%) !important;
  box-shadow: var(--nwanc-shadow-md);
  position: relative;
  z-index: 100;
}

.ast-masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

/* Professional Navigation */
.main-header-menu {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-header-menu a {
  color: var(--nwanc-white) !important;
  transition: var(--nwanc-transition-base);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-header-menu a:hover {
  color: var(--nwanc-accent) !important;
  transform: translateY(-1px);
}

/* Professional Content Areas */
.ast-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--nwanc-radius-md);
  box-shadow: var(--nwanc-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: var(--nwanc-space-lg) auto;
  position: relative;
  z-index: 1;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nwanc-font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--nwanc-dark);
  margin-bottom: var(--nwanc-space-sm);
}

h1 { 
  font-size: 3rem;
  font-weight: 800;
  color: var(--nwanc-primary);
}

h2 { 
  font-size: 2.25rem;
  color: var(--nwanc-primary-dark);
}

h3 { 
  font-size: 1.875rem;
}

/* Professional Button System */
.nwanc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--nwanc-space-sm) var(--nwanc-space-lg);
  background: linear-gradient(135deg, var(--nwanc-primary), var(--nwanc-primary-dark));
  color: var(--nwanc-white);
  text-decoration: none;
  border-radius: var(--nwanc-radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--nwanc-transition-base);
  box-shadow: var(--nwanc-shadow-sm);
  border: none;
  cursor: pointer;
}

.nwanc-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--nwanc-shadow-lg);
  color: var(--nwanc-white);
}

.nwanc-btn-secondary {
  background: linear-gradient(135deg, var(--nwanc-accent), var(--nwanc-accent-light));
  color: var(--nwanc-dark);
}

/* Professional Card System */
.nwanc-card {
  background: var(--nwanc-white);
  border-radius: var(--nwanc-radius-md);
  box-shadow: var(--nwanc-shadow-sm);
  padding: var(--nwanc-space-lg);
  transition: var(--nwanc-transition-base);
  border: 1px solid rgba(157, 34, 53, 0.1);
}

.nwanc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nwanc-shadow-lg);
  border-color: var(--nwanc-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  body::before {
    background-attachment: scroll;
    background-size: contain;
  }
  
  .ast-container {
    margin: var(--nwanc-space-sm) auto;
    padding: var(--nwanc-space-md);
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Focus Accessibility */
*:focus {
  outline: 2px solid var(--nwanc-accent);
  outline-offset: 2px;
}
/* =====================================================
   NWANC PROFESSIONAL COMPONENTS
   Homepage sections and interactive elements
   ===================================================== */

/* Hero Section */
.nwanc-hero {
  background: linear-gradient(135deg, 
    rgba(157, 34, 53, 0.95) 0%, 
    rgba(122, 27, 42, 0.95) 100%);
  color: var(--nwanc-white);
  padding: var(--nwanc-space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.nwanc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../../uploads/2026/02/razorbacks w logo.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.nwanc-hero-content {
  position: relative;
  z-index: 1;
}

.nwanc-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--nwanc-space-sm);
  color: var(--nwanc-white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nwanc-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--nwanc-space-xl);
  opacity: 0.95;
}

.nwanc-hero-cta {
  display: flex;
  gap: var(--nwanc-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.nwanc-btn-large {
  padding: var(--nwanc-space-md) var(--nwanc-space-2xl);
  font-size: 1.1rem;
}

/* Section Titles */
.nwanc-section-title {
  text-align: center;
  margin-bottom: var(--nwanc-space-2xl);
  position: relative;
}

.nwanc-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--nwanc-primary), var(--nwanc-accent));
  border-radius: 2px;
}

/* Professional Slider */
.nwanc-showcase {
  padding: var(--nwanc-space-2xl) 0;
}

.nwanc-slider-professional {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.nwanc-slider {
  display: flex;
  transition: transform var(--nwanc-transition-slow);
  border-radius: var(--nwanc-radius-lg);
  overflow: hidden;
  box-shadow: var(--nwanc-shadow-lg);
}

.nwanc-slide {
  min-width: 100%;
  position: relative;
}

.nwanc-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.nwanc-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--nwanc-space-md);
  margin-top: var(--nwanc-space-lg);
}

.nwanc-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--nwanc-white);
  border: 2px solid var(--nwanc-primary);
  border-radius: 50%;
  color: var(--nwanc-primary);
  cursor: pointer;
  transition: var(--nwanc-transition-base);
  box-shadow: var(--nwanc-shadow-sm);
}

.nwanc-slider-btn:hover {
  background: var(--nwanc-primary);
  color: var(--nwanc-white);
  transform: scale(1.1);
}

.nwanc-slider-dots {
  display: flex;
  gap: var(--nwanc-space-xs);
}

.nwanc-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nwanc-gray-300);
  border: none;
  cursor: pointer;
  transition: var(--nwanc-transition-base);
}

.nwanc-slider-dot.active {
  background: var(--nwanc-primary);
  transform: scale(1.2);
}

/* Events Grid */
.nwanc-events {
  padding: var(--nwanc-space-2xl) 0;
  background: var(--nwanc-gray-100);
}

.nwanc-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--nwanc-space-lg);
}

.nwanc-event-card {
  text-align: center;
  padding: var(--nwanc-space-xl);
}

.nwanc-event-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--nwanc-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nwanc-gray-100), var(--nwanc-white));
  border-radius: 50%;
  box-shadow: var(--nwanc-shadow-sm);
}

.nwanc-event-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.nwanc-event-card h3 {
  margin-bottom: var(--nwanc-space-md);
  color: var(--nwanc-primary);
}

.nwanc-event-card p {
  margin-bottom: var(--nwanc-space-lg);
  color: var(--nwanc-gray-600);
}

/* Featured Content */
.nwanc-featured {
  padding: var(--nwanc-space-2xl) 0;
}

.nwanc-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--nwanc-space-xl);
}

.nwanc-feature-card {
  padding: var(--nwanc-space-xl);
}

.nwanc-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--nwanc-gray-100);
  border-radius: var(--nwanc-radius-md);
  color: var(--nwanc-gray-600);
}

.nwanc-video-icon {
  margin-bottom: var(--nwanc-space-md);
  color: var(--nwanc-primary);
}

.nwanc-poster-preview {
  position: relative;
  border-radius: var(--nwanc-radius-md);
  overflow: hidden;
}

.nwanc-poster-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.nwanc-poster-link img {
  width: 100%;
  height: auto;
  transition: var(--nwanc-transition-base);
}

.nwanc-download-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(157, 34, 53, 0.9);
  color: var(--nwanc-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--nwanc-transition-base);
  font-weight: 600;
  gap: var(--nwanc-space-xs);
}

.nwanc-poster-link:hover .nwanc-download-overlay {
  opacity: 1;
}

/* Sponsors Section */
.nwanc-sponsors {
  padding: var(--nwanc-space-2xl) 0;
  background: var(--nwanc-gray-100);
}

.nwanc-sponsors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nwanc-space-lg);
}

.nwanc-sponsor-placeholder {
  text-align: center;
  padding: var(--nwanc-space-2xl);
  color: var(--nwanc-gray-600);
}

/* CTA Section */
.nwanc-cta {
  padding: var(--nwanc-space-2xl) 0;
}

.nwanc-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--nwanc-space-lg);
}

.nwanc-cta-card {
  text-align: center;
  padding: var(--nwanc-space-xl);
  text-decoration: none;
  color: inherit;
  transition: var(--nwanc-transition-base);
  background: linear-gradient(135deg, var(--nwanc-white), var(--nwanc-gray-100));
}

.nwanc-cta-card:hover {
  color: var(--nwanc-primary);
  background: linear-gradient(135deg, var(--nwanc-white), rgba(157, 34, 53, 0.05));
}

.nwanc-cta-icon {
  margin-bottom: var(--nwanc-space-md);
  color: var(--nwanc-primary);
}

.nwanc-cta-card h3 {
  margin-bottom: var(--nwanc-space-xs);
  color: var(--nwanc-primary);
}

.nwanc-cta-card p {
  color: var(--nwanc-gray-600);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nwanc-hero-title {
    font-size: 2.5rem;
  }
  
  .nwanc-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .nwanc-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .nwanc-slide img {
    height: 300px;
  }
  
  .nwanc-events-grid,
  .nwanc-featured-grid,
  .nwanc-cta-grid {
    grid-template-columns: 1fr;
  }
  
  .nwanc-slider-controls {
    flex-wrap: wrap;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .nwanc-slider {
    transition: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .nwanc-slider-controls,
  .nwanc-cta {
    display: none;
  }
}
