/* Global Styles */
:root {
  --dark-green: #213b2d;
  --light-green: #355946;
  --white-green: #f2fff8;
  --gold: #e6c566;
  --cream: #f5efd7;
  --tan: #d1bd89;
  --text-dark: #222;
  --text-light: #fff;
  --red: #cc522f;
  --grey: #e5e7eb;
  --light-grey: #f8f9fa;
  --blue: #2196f3;
}

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

body {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  word-break: break-word;
}

h1, h2, h3, .serif-font {
  font-family: 'Stoke', serif;
  font-weight: 500;
}
h4 {
  font-family: 'Stoke', serif;
  font-weight: 400;
  font-size: 18px;
  margin: 30px 0 15px;
}
p {
  margin-bottom: 10px;
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
ul { margin-left: 15px; }

.top-notification {
    background: var(--white-green);
    padding: 12px 25px;
    font-weight: 500;
    color: var(--dark-green);
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px dotted var(--light-green);
}


.btn {
  display: inline-block;
  background-color: transparent;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 30px 0;
}

.btn:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--dark-green);
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--dark-green);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--dark-green);
  color: var(--text-light);
}
.location .btn, .hero-content .btn {
  display: inline-block;
  background-color: transparent;
  color: var(--text-light);
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.location .btn:hover, .hero-content .btn:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
}


/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  transition: all 0.3s ease;
}

.logo-img {
  max-height: 80px;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  text-transform: capitalize;
  font-size: 13px;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Sticky Header */
.site-header.sticky {
  background-color: var(--dark-green);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.site-header.sticky .logo-img {
  max-height: 60px;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-content {
  width: 80%;
  max-width: 1200px;
}

.overlay-close {
  position: absolute;
  top: 15px;
  right: 21px;
  font-size: 30px;
  color: var(--text-light);
  cursor: pointer;
}

.overlay-nav ul {
  list-style: none;
  text-align: center;
}

.overlay-nav ul li {
  margin: 20px 0;
}

.overlay-nav ul li a {
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.overlay-nav ul li a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 59, 45, 0.6);
}

.hero-content {
  position: relative;
  color: var(--text-light);
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 4.25rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* Info Blocks Section */
.info-blocks {
  padding: 80px 0;
}

.block-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.application-steps {
    margin-left: 20px;
}

.info-block {
  flex: 0 0 calc(33.333% - 30px);
  padding: 40px;
  border: 1px solid var(--dark-green);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-block h2 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 2rem;
}

.info-block p {
  margin-bottom: 30px;
}

/* Location Section */
.location {
  min-height: 500px;
  padding: 6vw 0;
  background-image: url('../images/location-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 59, 45, 0.7);
}

.location .container {
  position: relative;
}

.location-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.location h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.location .launch {
  font-size: 1.5rem;
  margin-bottom: 10vw;
}

/* Mission Section */
.mission {
  padding: 80px 0;
  background-color: var(--gold);
  text-align: center;
}

.mission h2 {
  font-size: 3rem;
  color: var(--dark-green);
  margin-bottom: 30px;
}

.mission p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background-color: var(--dark-green);
  backgroumd-image: url('../images/banner-bg.jpg');
  background-size: cover;
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo-img {
  max-width: 120px;
}

.footer-nav-section {
  flex: 1 1 150px;
  margin-bottom: 30px;
}

.footer-nav-section h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-nav-section ul {
  list-style: none;
}

.footer-nav-section ul li {
  margin-bottom: 10px;
}

.footer-nav-section ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav-section ul li a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .info-block {
    flex: 0 0 calc(50% - 20px);
  }
  
  .footer-nav-section {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 60px;
    transition: all 0.3s ease;
  }
  .site-header.sticky .logo-img {
    max-height: 50px;
  }
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  
  .info-block {
    flex: 0 0 100%;
  }
  
  .footer-nav-section {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  /* .site-header {
    background-color: var(--dark-green);
  } */
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  
  .location h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
  
  .mission h2 {
    font-size: 2.5rem;
  }
  
  .footer-nav-section {
    flex: 1 1 100%;
  }
}

.hero a.btn {
    margin: 0;
}


/* ===========================================
   Parent Dashboard - Extracted Inline Styles
   =========================================== */

/* Account Deactivated Banner */
.account-deactivated-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 20px;
}

.account-deactivated-banner.inline {
    margin: 20px 0;
}

.account-deactivated-banner .banner-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.account-deactivated-banner h2 {
    color: #991b1b;
    margin-bottom: 12px;
}

.account-deactivated-banner p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Child Tab Inactive State */
.child-tab.inactive {
    opacity: 0.6;
}

/* Inactive Badges */
.inactive-badge-small {
    font-size: 10px;
    background: #fecaca;
    color: #991b1b;
    padding: 1px 5px;
    border-radius: 6px;
    margin-left: 4px;
}

.inactive-badge {
    font-size: 14px;
    background: #fecaca;
    color: #991b1b;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 12px;
    vertical-align: middle;
}

/* Reenrollment Widget Base Styles */
.reenrollment-widget {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.08);
}

.reenrollment-widget h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.reenrollment-widget h3 i {
    margin-right: 6px;
}

.reenrollment-widget .status-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}

.reenrollment-widget .reenroll-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    color: white;
}

.reenrollment-widget .reenroll-message {
    margin: 0;
    font-size: 14px;
}

.reenrollment-widget .reenroll-message.with-margin {
    margin: 0 0 12px;
}

.reenrollment-widget .survey-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--dark-green, #2c5530);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
}

.reenrollment-widget .thank-you-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* Reenrollment Widget Status Colors */
.reenrollment-widget.status-not-started {
    background: #fef3c7;
}
.reenrollment-widget.status-not-started h3,
.reenrollment-widget.status-not-started .status-label,
.reenrollment-widget.status-not-started .reenroll-message {
    color: #92400e;
}
.reenrollment-widget.status-not-started .reenroll-btn {
    background: #92400e;
}

.reenrollment-widget.status-family-verified,
.reenrollment-widget.status-in-progress {
    background: #dbeafe;
}
.reenrollment-widget.status-family-verified h3,
.reenrollment-widget.status-family-verified .status-label,
.reenrollment-widget.status-family-verified .reenroll-message,
.reenrollment-widget.status-in-progress h3,
.reenrollment-widget.status-in-progress .status-label,
.reenrollment-widget.status-in-progress .reenroll-message {
    color: #1e40af;
}
.reenrollment-widget.status-family-verified .reenroll-btn,
.reenrollment-widget.status-in-progress .reenroll-btn {
    background: #1e40af;
}

.reenrollment-widget.status-pending-payment {
    background: #fef9c3;
}
.reenrollment-widget.status-pending-payment h3,
.reenrollment-widget.status-pending-payment .status-label,
.reenrollment-widget.status-pending-payment .reenroll-message {
    color: #854d0e;
}
.reenrollment-widget.status-pending-payment .reenroll-btn {
    background: #854d0e;
}

.reenrollment-widget.status-fee-paid,
.reenrollment-widget.status-tuition-paid {
    background: #d1fae5;
}
.reenrollment-widget.status-fee-paid h3,
.reenrollment-widget.status-fee-paid .status-label,
.reenrollment-widget.status-fee-paid .reenroll-message,
.reenrollment-widget.status-fee-paid .thank-you-label,
.reenrollment-widget.status-tuition-paid h3,
.reenrollment-widget.status-tuition-paid .status-label,
.reenrollment-widget.status-tuition-paid .reenroll-message,
.reenrollment-widget.status-tuition-paid .thank-you-label {
    color: #065f46;
}

/* Subject/Assignment Dynamic Colors via CSS Custom Property */
.assignment-item {
    --subject-color: #355946; /* default fallback */
}

.assignment-icon {
    color: var(--subject-color);
}

.feedback-item {
    --subject-color: #355946;
}

.feedback-icon {
    color: var(--subject-color);
}

.subject-item {
    --subject-color: #355946;
    border-left-color: var(--subject-color);
}

.subject-icon {
    color: var(--subject-color);
}
.dashboard-reenrollment {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  position: relative;
}
.dashboard-reenrollment h3 {
    margin: 0 0 15px;
}
