/* ===== 2025 DESIGN SYSTEM ===== */

:root {
  /* Color Palette - 2025 Vibrant Theme */
  --primary-color: #FF6B35;
  --primary-dark: #E55A2B;
  --primary-light: #FF8A5C;
  --secondary-color: #2D5016;
  --secondary-dark: #1F3810;
  --secondary-light: #3A6B1E;
  --accent-color: #00D4FF;
  --accent-dark: #00B8E6;
  --accent-light: #33DDFF;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #495057;
  --charcoal: #2C2C2C;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* ===== GLOBAL STYLES ===== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */

.navbar {
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(45, 80, 22, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.98) 0%, rgba(45, 80, 22, 0.98) 100%);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link.btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */

.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/homepage-hero.jpg') no-repeat center center/cover;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 107, 53, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== BUTTONS ===== */

.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* ===== SECTIONS ===== */

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== STATS SECTION ===== */

.stats-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT PREVIEW SECTION ===== */

.about-preview {
  padding: var(--section-padding);
}

.about-content {
  padding: 2rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  color: var(--primary-color);
  transform: translateX(10px);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

.about-image img {
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.about-image:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* ===== FEATURED SESSIONS SECTION ===== */

.featured-sessions {
  background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 107, 53, 0.05) 100%);
  padding: var(--section-padding);
}

.session-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
}

.session-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.session-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.session-card:hover .session-image img {
  transform: scale(1.1);
}

.session-time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.session-content {
  padding: 2rem;
}

.session-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.session-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.session-details {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.session-details .badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 0.85rem;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--white) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

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

.testimonial-content {
  margin-bottom: 2rem;
}

.stars {
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-name {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */

.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--secondary-color) 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: var(--section-padding);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 3rem 0 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== PAGE HEADER ===== */

.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 8rem 0 4rem 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== SCHEDULE TABLE ===== */

.schedule-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.schedule-table {
  margin-bottom: 0;
}

.schedule-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.schedule-table thead th {
  border: none;
  padding: 1.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.schedule-table tbody tr {
  transition: all var(--transition-fast);
}

.schedule-table tbody tr:hover {
  background-color: rgba(255, 107, 53, 0.05);
  transform: scale(1.01);
}

.schedule-table tbody td {
  padding: 1.25rem 1rem;
  border-color: rgba(255, 107, 53, 0.1);
  font-weight: 500;
}

.weekend-session {
  background-color: rgba(0, 212, 255, 0.05);
}

/* ===== SESSION DETAIL CARDS ===== */

.session-detail-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all var(--transition-normal);
}

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

.session-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.session-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.session-detail-card:hover .session-image-wrapper img {
  transform: scale(1.05);
}

.session-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.session-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.session-meta .badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
}

.trainer-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.trainer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.trainer-details h6 {
  margin-bottom: 0.25rem;
  color: var(--charcoal);
  font-weight: 600;
}

.trainer-details p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .session-detail-card {
    padding: 2rem 1.5rem;
  }
  
  .session-image-wrapper img {
    height: 250px;
  }
  
  .trainer-card {
    flex-direction: column;
    text-align: center;
  }
  
  .schedule-table-wrapper {
    overflow-x: auto;
  }
  
  .schedule-table {
    min-width: 600px;
  }
  
  .stats-section .row {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .session-detail-card {
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* ===== ANIMATIONS ===== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== UTILITY CLASSES ===== */

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

.rounded-custom {
  border-radius: var(--radius-xl);
}

.transition-all {
  transition: all var(--transition-normal);
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #FF4500;
    --secondary-color: #000000;
    --charcoal: #000000;
    --gray: #666666;
  }
}

