/* Admission Page Specific Styles */

body {
  background-color: #fafafa;
  color: #333;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(230,200,48,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(230,200,48,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(230,200,48,0.1)"/></svg>')
    repeat;
  opacity: 0.5;
}

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

.badge {
  display: inline-block;
  background-color: #e6c830;
  color: #3e2723;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 200, 48, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(230, 200, 48, 0);
  }
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.school-year {
  color: #e6c830;
  font-size: 1.8rem;
  font-weight: 600;
}

/* Level Cards */
.levels {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

.levels h2 {
  color: #5d4037;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.level-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.level-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}

.level-card:hover,
.level-card.active {
  border-color: #e6c830;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.level-card.active {
  background: linear-gradient(135deg, #fffef5 0%, #fff9e0 100%);
}

.level-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.level-card h3 {
  color: #5d4037;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.level-card p {
  color: #888;
  font-size: 0.9rem;
}

/* Info Section */
.info-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease-out;
}

.info-section.active {
  display: block;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  color: #5d4037;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e6c830, #d4a017);
  border-radius: 2px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card.full-width {
  grid-column: span 2;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: #5d4037;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e6c830;
}

.info-card p {
  color: #555;
  margin-bottom: 0.75rem;
}

.info-card .note {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border-left: 3px solid #e6c830;
}

.warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  border-left: 4px solid #ff9800;
}

/* Schedule Box */
.schedule-box {
  background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  color: #fff;
}

.schedule-box h4 {
  color: #e6c830;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.schedule-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.schedule-item .day {
  font-weight: 600;
}

.schedule-item .time {
  background: #e6c830;
  color: #3e2723;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.schedule-item .note-small {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Recommendations List */
.recommendations {
  list-style: none;
  padding: 0;
}

.recommendations li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #555;
}

.recommendations li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e6c830 0%, #d4a017 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content h2 {
  color: #3e2723;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: #5d4037;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #5d4037;
  color: #fff;
}

.btn-primary:hover {
  background: #3e2723;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #fff;
  color: #5d4037;
  border: 2px solid #5d4037;
}

.btn-secondary:hover {
  background: #5d4037;
  color: #fff;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #e6c830;
  letter-spacing: 1px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e6c830;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive - Page specific styles */
@media (max-width: 768px) {
  .school-year {
    font-size: 1.4rem;
  }

  .level-cards {
    flex-direction: column;
    align-items: center;
  }

  .level-card {
    width: 100%;
    max-width: 300px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card.full-width {
    grid-column: span 1;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
