/* Open Enrollment Page Specific Styles */
.enrollment-hero {
  background: var(--bg-gradient);
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.enrollment-hero h1 {
  font-family: "DM Serif Display", serif;
  color: var(--heading-text-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.enrollment-hero p {
  font-size: 1.2rem;
  color: var(--body-text-color);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.coming-soon-section {
  background: var(--card-bg-color);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-bottom: 3rem;
  text-align: center;
  border-left: 4px solid var(--link-color);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--link-color);
}

.coming-soon-icon i {
  font-size: 2.5rem;
}

.coming-soon-section h2 {
  color: var(--heading-text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "DM Serif Display", serif;
}

.coming-soon-section p {
  color: var(--body-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.coming-soon-section .btn {
  background: var(--link-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.coming-soon-section .btn:hover {
  background: var(--link-hover-color);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.coming-soon-section .btn i {
  color: white;
}

/* Button grid inside Coming Soon section */
.coming-soon-section .btn-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 1000px;
  width: 100%;
}

.coming-soon-section .btn-stack .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.coming-soon-section .btn-stack .btn i {
  font-size: 1.2rem;
}

/* Quick Navigation */
.quick-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.quick-nav .btn {
  background: var(--link-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-nav .btn:hover {
  background: var(--link-hover-color);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.quick-nav .bx {
  color: white;
}

/* Dark Theme Overrides */
[data-theme="dark"] .coming-soon-section {
  background: var(--card-bg-color);
  border-color: #444;
}

[data-theme="dark"] .coming-soon-section .btn {
  background: var(--secondary-color);
  color: var(--light-text-color);
}

[data-theme="dark"] .coming-soon-section .btn:hover {
  background: var(--gold);
  color: white;
}

[data-theme="dark"] .quick-nav .btn {
  background: var(--secondary-color);
  color: var(--light-text-color);
}

[data-theme="dark"] .quick-nav .btn:hover {
  background: var(--gold);
  color: white;
}

/* Tablet Responsiveness */
@media screen and (max-width: 992px) {
  .coming-soon-section .btn-stack {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .coming-soon-section .btn-stack .btn {
    min-height: 55px;
    padding: 0.875rem 1.25rem;
  }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .enrollment-hero {
    padding: 2rem 0;
  }

  .enrollment-hero h1 {
    font-size: 2rem;
  }

  .coming-soon-section {
    padding: 2rem 1.5rem;
  }

  .coming-soon-section h2 {
    font-size: 1.5rem;
  }

  .quick-nav {
    flex-direction: column;
    align-items: center;
  }

  .quick-nav .btn {
    width: 100%;
    max-width: 300px;
  }

  .coming-soon-section .btn-stack {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .coming-soon-section .btn-stack .btn {
    min-height: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .coming-soon-section {
    padding: 1.5rem 1rem;
  }

  .coming-soon-icon {
    width: 60px;
    height: 60px;
  }

  .coming-soon-icon i {
    font-size: 2rem;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus indicators */
.coming-soon-section .btn:focus,
.quick-nav .btn:focus {
  outline: 3px solid var(--link-hover-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .coming-soon-section {
    border: 2px solid var(--heading-text-color);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .coming-soon-section .btn,
  .quick-nav .btn {
    transition: none;
  }
}
