/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STUDENTS PAGE — Shree Studio
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* BACK BUTTON */
.students-back {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.students-back:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.3);
  color: #c9a96e;
}

/* HERO */
.students-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.students-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 169, 110, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(229, 9, 20, 0.12) 0%, transparent 50%);
}
.students-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.students-free-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 50px;
  color: #e50914;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.students-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50px;
  color: #c9a96e;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: studentsFlip 0.8s ease both;
}
.students-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  animation: studentsFadeUp 0.9s ease 0.1s both;
}
.students-hero-title span { color: #c9a96e; }
.students-hero-sub {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  margin: 20px auto 36px;
  max-width: 520px;
  line-height: 1.7;
  animation: studentsFadeUp 0.9s ease 0.2s both;
}
.students-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #c9a96e, #a8884f);
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: studentsFadeUp 0.9s ease 0.3s both;
}
.students-hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201, 169, 110, 0.35);
}

/* PHOTOS */
.students-photos {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.students-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.students-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.students-photo-card:hover img { transform: scale(1.07); }
.students-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
}
.students-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
}

/* OFFERINGS */
.students-offerings {
  padding: 60px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.students-section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 14px;
}
.students-section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}
.students-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.students-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.4s ease;
}
.students-card:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-6px);
}
.students-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: #c9a96e;
}
.students-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.students-card p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* CTA SECTION */
.students-cta-section {
  padding: 80px 40px;
  text-align: center;
  background: rgba(201, 169, 110, 0.04);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.students-cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 42px);
  color: #fff;
  margin-bottom: 14px;
}
.students-cta-section p {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ANIMATIONS */
@keyframes studentsFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes studentsFlip {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .students-photos { grid-template-columns: 1fr; padding: 40px 20px; }
  .students-cards { grid-template-columns: 1fr; }
  .students-offerings { padding: 40px 20px 60px; }
  .students-cta-section { padding: 60px 20px; }
}
