/* Student Life page styles - inherits global styles from style.css */

/* ================= HERO SECTION ================= */
.student-life-hero {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}

.student-life-hero .banner-desktop {
  position: relative;
}

.student-life-hero .banner-desktop .student-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: min(92%, 980px);
  text-align: center;
}

.student-life-hero .banner-desktop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.student-hero-content {
  max-width: 860px;
  text-align: center;
  z-index: 2;
}

.student-hero-content h2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

.student-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  max-width: 820px;
  margin: 0 auto 28px;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-hero-primary {
  background: #E8402A;
  color: #ffffff;
  border: 2px solid #E8402A;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.9);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-hero-primary:hover {
  background: #A70000;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #E8402A;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .student-hero-content h2 {
    font-size: 44px;
  }

  .student-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .student-life-hero .banner-text-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 25px 20px 30px;
  }

  .student-life-hero .banner-text-mobile h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .student-life-hero .banner-text-mobile p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #ffffff;
  }

  .student-life-hero .banner-text-mobile .hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* ================= SECTION 2: LIFE AT VIJETHA ================= */

.life-vijetha-section {
  padding: 80px 0 50px;
  background: #F7F6EC;
}

.life-vijetha-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #E8402A;
  text-transform: uppercase;
}

.life-vijetha-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #111111;
  max-width: 560px;
  margin-bottom: 14px;
}

.life-vijetha-points {
  display: grid;
  gap: 12px;
}

.life-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: #222222;
  font-weight: 500;
}

.life-point i {
  color: #E8402A;
  margin-top: 4px;
}

.life-vijetha-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,0.15);
}

.life-vijetha-media img {
  width: 100%;
  object-fit: cover;
}

.life-vijetha-media-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.72);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .life-vijetha-section {
    padding: 60px 0;
  }

  .life-vijetha-title {
    font-size: 28px;
  }

  .life-vijetha-desc {
    font-size: 14.5px;
  }

  .life-point {
    font-size: 14px;
  }
}
/* ================= SECTION 3: EVENTS & CELEBRATIONS ================= */

.events-section {
  padding: 80px 0 50px;
  background: #F7F6EC;
}

.events-title {
  font-size: 38px;
  font-weight: 800;
  color: #E8402A;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.events-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #111111;
}

.events-key-list-wrap {
  margin: 18px auto 6px;
  max-width: 820px;
}

.events-key-label {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 10px;
}

.events-key-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.events-key-list li {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 13px;
  color: #333333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.events-key-list li i {
  color: #E8402A;
}

.event-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.event-image {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.event-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.event-card h5,
.event-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.event-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: #E8402A;
  margin: 16px 0 10px;
}

.event-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #111111;
  margin: 0 0 18px;
}

.events-footer-text {
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #333333;
  max-width: 640px;
}

/* ================= SECTION 4: CLUBS & SKILL DEVELOPMENT ================= */

.clubs-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.clubs-title {
  font-size: 38px;
  font-weight: 800;
  color: #E8402A;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.clubs-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #111111;
}

.club-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #F7F6EC;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
}

.club-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.club-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #E8402A;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.club-icon i {
  font-size: 26px;
  color: #ffffff;
}

.club-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.club-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

.clubs-footer-text {
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #333333;
  max-width: 640px;
}

/* Club Card - Image Variant */
.club-card.has-image {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.club-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.club-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.club-card.has-image:hover .club-image img {
  transform: scale(1.08);
}

.club-card.has-image .club-content {
  padding: 24px;
}

@media (max-width: 991px) {
  .clubs-section {
    padding: 70px 0 50px;
  }

  .clubs-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .clubs-section {
    padding: 55px 0 40px;
  }

  .clubs-title {
    font-size: 24px;
  }

  .clubs-subtitle {
    font-size: 14px;
  }

  .club-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px 20px;
  }
  
  .club-card.has-image {
    padding: 0;
    text-align: left;
  }
  
  .club-image {
    height: 220px;
  }
  
  .club-card.has-image .club-content {
    padding: 20px;
    text-align: center;
  }

  .club-icon {
    width: 54px;
    height: 54px;
  }

  .club-icon i {
    font-size: 22px;
  }

  .club-content h5 {
    font-size: 18px;
  }

  .club-content p {
    font-size: 14px;
  }
}

/* ================= SECTION 5: CAMPUS FACILITIES ================= */

.facilities-section {
  padding: 80px 0 60px;
  background: #F7F6EC;
}

.facilities-title {
  font-size: 38px;
  font-weight: 800;
  color: #E8402A;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.facilities-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #111111;
}

.facility-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: #E8402A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.facility-icon i {
  font-size: 28px;
  color: #ffffff;
}

.facility-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.facility-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #444444;
  margin: 0;
}

/* Facility Card - Image Variant */
.facility-card.has-image {
  padding: 0;
  overflow: hidden;
}

.facility-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-card.has-image:hover .facility-image img {
  transform: scale(1.08);
}

.facility-content {
  padding: 20px 16px;
  text-align: center;
}

.facility-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.facility-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

@media (max-width: 991px) {
  .facilities-section {
    padding: 70px 0 50px;
  }

  .facilities-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .facilities-section {
    padding: 55px 0 40px;
  }

  .facilities-title {
    font-size: 24px;
  }

  .facilities-subtitle {
    font-size: 14px;
  }

  .facility-icon {
    width: 60px;
    height: 60px;
  }

  .facility-icon i {
    font-size: 24px;
  }

  .facility-card h5 {
    font-size: 17px;
  }

  .facility-card p {
    font-size: 13.5px;
  }
  
  .facility-image {
    height: 160px;
  }
  
  .facility-content {
    padding: 18px 14px;
  }
  
  .facility-content h5 {
    font-size: 16px;
  }
  
  .facility-content p {
    font-size: 13px;
  }
}

/* ================= SECTION 6: ADMISSIONS CTA ================= */

.admissions-cta-section {
  padding: 90px 0;
  background: #E8402A;
}

.admissions-cta-box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.admissions-cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.admissions-cta-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
}

.admissions-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #ffffff;
  color: #E8402A;
  border: 2px solid #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #ffffff;
  color: #E8402A;
  border-color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .admissions-cta-section {
    padding: 70px 0;
  }

  .admissions-cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .admissions-cta-section {
    padding: 55px 0;
  }

  .admissions-cta-title {
    font-size: 26px;
  }

  .admissions-cta-text {
    font-size: 15px;
  }

  .admissions-cta-text br {
    display: none;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 12px 26px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .events-section {
    padding: 70px 0 40px;
  }

  .events-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 55px 0 30px;
  }

  .events-title {
    font-size: 24px;
  }

  .events-subtitle,
  .events-footer-text {
    font-size: 14px;
  }

  .events-key-list {
    justify-content: flex-start;
    gap: 8px;
  }

  .event-card {
    text-align: center;
  }

  .event-image {
    height: 180px;
  }

  .event-card h5 {
    font-size: 17px;
    margin-top: 14px;
  }

  .event-card p {
    font-size: 13px;
    text-align: left;
    margin-bottom: 16px;
  }
}
/* ================= LEGACY OF ENGAGEMENT ================= */

.engagement-section {
  padding: 70px 0 40px;
  background: #000000;
  color: #ffffff;
}

.engagement-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.engagement-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: #FFFFFF;
}

/* Stats */
.engagement-stat h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

.engagement-stat span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .engagement-section {
    padding: 60px 0;
  }

  .engagement-title {
    font-size: 26px;
  }

  .engagement-stat h3 {
    font-size: 26px;
  }
}
/* ================= VOICES OF VIJETHA ================= */
/* Uses global styles from style.css */

/* ================= VALUES & DISCIPLINE CTA ================= */

.values-cta-section {
  padding: 70px 0 40px;
  background: #F7F6EC;
}

.values-cta-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px;
  border-radius: 20px;
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.values-cta-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.values-cta-text {
  font-size: 15.5px;
  color: #000000;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Buttons */
.values-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark-primary {
  background: #E8402A;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-dark-primary:hover {
  background: #A70000;
  color: #ffffff;
}

.btn-light-secondary {
  background: #FAEBD7;
  color: #E8402A;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-light-secondary:hover {
  background: #F08C1C;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .values-cta-box {
    padding: 40px 20px;
  }

  .values-cta-title {
    font-size: 22px;
  }
  
  /* Student Life sections padding */
  .life-vijetha-section,
  .events-section,
  .clubs-section,
  .facilities-section,
  .admissions-cta-section {
    padding: 50px 0 30px;
  }
  
  /* Event cards mobile */
  .event-card,
  .club-card,
  .facility-card {
    margin-bottom: 15px;
  }
  
  .event-image,
  .club-image,
  .facility-image {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }
  
  .event-card h5,
  .club-content h5,
  .facility-content h5 {
    font-size: 16px;
  }
  
  .event-card p,
  .club-content p,
  .facility-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .life-vijetha-section,
  .events-section,
  .clubs-section,
  .facilities-section {
    padding: 40px 0 25px;
  }
  
  .event-image,
  .club-image,
  .facility-image {
    height: 150px;
  }
}
