* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #eaeaea;
}


/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, #0c0c0c, #000);
}

.hero-inner {
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: #d4af37;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}

.hero-title sup {
  font-size: 1.6rem;
  vertical-align: super;
  margin-left: 2px;
}


.hero p {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* SECTIONS */
section {
  padding: 40px 16px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #d4af37;
}

/* CARDS */
.card {
  background: #111;
  border: 1px solid rgba(212,175,55,0.15);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.35s ease;
}

.card h3,
.card h4 {
  font-weight: 500;
  margin-bottom: 4px;
}

.card span {
  font-size: 0.85rem;
  opacity: 0.65;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

.highlight {
  max-width: 360px;
  margin: auto;
}

/* STUDENTS */
.students {
  padding-top: 25px;
}

.count {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  justify-items: center;
}


/* FOOTER */
footer {
  text-align: center;
  padding: 18px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.teacher-card img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.6);
}
.teacher-card {
  max-width: 320px;
}

.card:hover img {
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}
.card img {
  max-width: 100%;
}

.student-card { justify-content: space-between; }
.student-card img { width: auto; height: auto; }
.student-card {
  height: 380px;
  display: flex;
  flex-direction: column;
  background: #111;
}

.photo-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.student-card .info {
  padding-top: 10px;
  text-align: center;
}

.student-card h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.student-card span {
  font-size: 0.8rem;
  opacity: 0.6;
}


.student-card {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  padding: 12px;
}


.photo-box {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 6px;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
  text-align: center;
}

.student-card span {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
