/* Home Page Specific Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('https://cdn.phototourl.com/free/2026-06-09-ab181203-5158-4080-9124-effda93a4aa1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.45), rgba(30, 27, 75, 0.25));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-text-white);
  padding: 2rem;
  max-width: 800px;
}

.school-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  background-color: white;
}

.title-main {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.title-sub {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #a5b4fc; /* Soft Indigo */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.title-school {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 3rem;
  opacity: 0.85;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-enter {
  font-size: 1.15rem;
  padding: 1rem 3rem;
  border-radius: var(--border-radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-tertiary));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-enter:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.55);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .title-main { font-size: 2.5rem; }
  .title-sub { font-size: 1.35rem; }
  .title-school { font-size: 1.1rem; }
  .school-logo { width: 110px; height: 110px; }
  .btn-enter { padding: 0.85rem 2.25rem; font-size: 1.05rem; }
}
