/* 
  =========================================
  RIVER CITY MARTIAL ARTS ACADEMY
  Core Design System & Stylesheets
  Vanilla CSS
  =========================================
*/

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

/* CSS Variables */
:root {
  --notice-height: 40px;
  /* Colors */
  --bg-primary: #F8F9FA;
  --bg-secondary: #FFFFFF;
  --bg-dark: #121416;
  --bg-dark-card: #1A1D20;
  
  --primary: #D32F2F;        /* Crimson Red */
  --primary-hover: #B71C1C;
  --secondary: #D4AF37;      /* Gold Accents */
  --secondary-hover: #C5A028;
  
  --text-dark: #1A1D20;
  --text-light: #F8F9FA;
  --text-muted: #6C757D;
  --text-muted-light: #ADB5BD;
  
  --border-light: #E9ECEF;
  --border-dark: #2D3238;
  --border-accent: #E0A96D;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadow & Transitions */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-premium: 0 12px 30px rgba(211, 47, 47, 0.15); /* Red tinted shadow for CTAs */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 48px 0;
  --container-width: 1200px;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(80px + var(--notice-height));
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.3px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Elegant decorative line under H2 headings */
h2.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

h2.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

/* Grid & Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 30px;
}

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

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

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

/* Utility classes */
.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-muted-light { color: var(--text-muted-light); }
.py-section { padding: var(--section-padding); }
.bg-dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--text-light);
}
.bg-dark-section p {
  color: var(--text-muted-light);
}

/* Header & Sticky Navigation */
.site-header {
  position: sticky;
  top: var(--notice-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px file link to var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: 150px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  transition: var(--transition);
}

.site-header.scrolled .logo-image {
  width: 125px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* Active Hamburger State */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-dark);
}

.btn-secondary:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: var(--bg-dark);
}

.btn-secondary-light {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-light);
}

.btn-secondary-light:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--secondary);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background-color: var(--secondary-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 70vh;
  color: var(--text-dark);
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 100%;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero .subheadline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.hero .intro-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  width: 100%;
  position: relative;
}

.hero-visual-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18), var(--shadow-lg); /* Gold-tinted drop shadow */
  border: 1px solid var(--border-light);
  object-fit: cover;
  max-height: 420px;
}

/* Premium Section Styling */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

/* Grid Cards (General) */
.card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

/* Dark Card Style */
.card-dark {
  background-color: var(--bg-dark-card);
  border-color: var(--border-dark);
  color: var(--text-light);
}

.card-dark h3 {
  color: var(--text-light);
}

.card-dark p {
  color: var(--text-muted-light);
}

/* Program Card Styling */
.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--secondary);
}

.program-card.featured {
  border-top-color: var(--primary);
}

.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-ages {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--primary);
  border-radius: 4px;
}

.program-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 15px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}

.bg-dark-section .program-price {
  color: var(--secondary);
  border-top-color: var(--border-dark);
}

.program-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Benefits Grid */
.benefit-card {
  padding: 25px;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon-wrapper {
  background-color: rgba(211, 47, 47, 0.08);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.benefit-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Short Gallery Preview on Home */
.gallery-preview {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-preview-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark-card) 0%, var(--bg-dark) 100%);
  border: 1px solid var(--border-dark);
  border-left: 6px solid var(--primary);
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}

.cta-banner-content {
  max-width: 60%;
}

.cta-banner h2 {
  color: var(--text-light);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.cta-banner-action {
  flex-shrink: 0;
}

/* Contact Info & Hours Snippet */
.info-snippet-grid {
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  padding: 24px;
}

.info-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Hours Roster Card */
.hours-roster {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.hours-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
  color: var(--text-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row.active {
  font-weight: 700;
  color: var(--primary);
}

.hours-day {
  text-transform: capitalize;
}

.hours-time {
  font-weight: 600;
}

/* Footer Design */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px 0;
  border-top: 4px solid var(--primary);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand .logo-text {
  color: var(--text-light);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--bg-dark-card);
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.social-icon-btn svg {
  color: var(--text-muted-light) !important;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.social-icon-btn:hover svg {
  color: var(--text-light) !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: var(--text-muted-light);
}

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

/* Sub-page Specific Styling Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(18, 20, 22, 0.9) 0%, rgba(26, 29, 32, 0.9) 100%),
              url('../img/river-city-group-class-lineup.jpg') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  border-bottom: 4px solid var(--primary);
}

.page-banner h1 {
  color: var(--text-light);
  margin-bottom: 12px;
}

.page-banner p {
  color: var(--text-muted-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* PDF download block */
.pdf-guide-block {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-sm);
}

.pdf-icon {
  font-size: 3.5rem;
  color: var(--primary);
  background-color: rgba(211, 47, 47, 0.06);
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
  border: 1px dashed rgba(211, 47, 47, 0.3);
}

.pdf-info h3 {
  margin-bottom: 8px;
}

.pdf-info p {
  margin-bottom: 0;
}

/* Instructor Team Styling */
.instructor-card {
  text-align: center;
  padding: 30px 20px;
}

.instructor-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

.instructor-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.specialty-badge {
  background-color: rgba(0, 0, 0, 0.04);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--text-dark);
  font-weight: 500;
  border: 1px solid var(--border-light);
}

.card-dark .specialty-badge {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted-light);
  border-color: var(--border-dark);
}

/* About Layout with Facility Photos */
.facility-grid {
  align-items: center;
}

.facility-text {
  max-width: 550px;
}

.facility-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.facility-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 200px;
  box-shadow: var(--shadow-sm);
}

.facility-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  padding: 8px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-align: center;
  font-weight: 600;
}

/* Gallery Page Layout */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-img-container {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.05);
}

.gallery-card-content {
  padding: 15px 20px;
}

.gallery-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 20, 22, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 2px solid var(--border-dark);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 15px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.lightbox-close:hover {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  transition: var(--transition);
  font-family: monospace;
}

.lightbox-nav:hover {
  background: var(--primary);
  color: var(--text-light);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Contact Grid & Map Placement */
.contact-grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: var(--border-radius);
}

.contact-detail-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}

.contact-detail-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-detail-content a:hover {
  color: var(--primary);
}

.parking-note {
  border-left: 4px solid var(--secondary);
  background-color: rgba(212, 175, 55, 0.06);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  margin-top: 15px;
}

.parking-note h4 {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.parking-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Inline map frame placeholder */
.map-container {
  height: 400px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-secondary);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E9ECEF 0%, #DEE2E6 100%);
  color: var(--text-dark);
  padding: 20px;
  text-align: center;
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.map-placeholder h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 20px;
}

/* Schedule and Policies Table on Contact Page */
.policy-card {
  border-left: 4px solid var(--primary);
  background-color: rgba(211, 47, 47, 0.04);
}

/* Callout Note */
.note-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}

.note-box-icon {
  color: var(--secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.note-box-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Responsive Media Queries */

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .info-snippet-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --notice-height: 56px;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .grid-2, .grid-3, .grid-4, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile menu logic */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: calc(80px + var(--notice-height));
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px - var(--notice-height));
    background-color: var(--bg-secondary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 30px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: left 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
    text-align: center;
  }
  
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Call to action */
  .cta-banner {
    flex-direction: column;
    padding: 40px 25px;
    text-align: center;
    gap: 25px;
  }
  
  .cta-banner-content {
    max-width: 100%;
  }
  
  /* Info snippet */
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  /* About Layout */
  .facility-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .pdf-guide-block {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .pdf-icon {
    margin: 0 auto;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --notice-height: 76px;
  }
  h1 { font-size: 1.85rem; }
  .logo-text { font-size: 1.15rem; }
  .logo-subtext { font-size: 0.65rem; }
  .hero h1 { font-size: 2.1rem; }
  .facility-photos { grid-template-columns: 1fr; }
}

/* RVA Sites Notice Bar Styles */
.rva-notice-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--notice-height);
  background-color: var(--secondary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 8px 16px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rva-notice-bar a {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 800;
  margin-left: 4px;
}

.rva-notice-bar a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}
