/* ---------- Global Reset & Typography ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #192032;
  color: #e3eaf8;
}

h1, h2 {
  margin: 0 0 1rem;
  color: #49a8ff;
  font-weight: 800;
}

p, ul, ol {
  margin: 0 0 1rem;
  color: #e3eaf8;
}

a {
  color: #3366ff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #49a8ff;
  text-decoration: underline;
}

/* ---------- Section Separator (Glowing) ---------- */
.section-separator {
  height: 2px;
  background: rgba(73,168,255,0.3);
  box-shadow: 0 0 8px rgba(73,168,255,0.6);
  border: none;
  margin: 2rem 0;
}

/* ---------- Header, Navigation & Footer ---------- */
header {
  background: #172045;
  padding: 1rem;
  border-bottom: 2px solid rgba(73,168,255,0.3);
  box-shadow: 0 2px 8px rgba(73,168,255,0.3);
  text-align: center;
}
nav {
  background: #192032;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(73,168,255,0.2);
  text-align: center;
}
nav a {
  color: #e3eaf8;
  margin: 0 1rem;
  font-weight: 600;
}
nav a:hover {
  color: #49a8ff;
}
footer {
  background: #172045;
  color: #c7d7f7;
  padding: 1rem;
  border-top: 1px solid rgba(73,168,255,0.2);
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Main Content ---------- */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: transparent;
}

/* ---------- Hero Slider Overrides ---------- */
#heroCarousel .carousel-inner {
  height: 430px;
}

/* ---------- Intro Layer ---------- */
.intro-layer {
  padding: 3rem 0;
  text-align: center;
}
.intro-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.intro-bar {
  background: #172045;
  padding: 1.5rem 0;
}
.intro-bar p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

/* ---------- Events & Activities (dark + glow) ---------- */
.events-section {
  position: relative;
  background: #172045;            /* match site dark background */
  padding: 3rem 1rem;
  overflow: hidden;
}
.events-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 150%; height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(73,168,255,0.15),
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}
.events-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #49a8ff;                 /* your signature light blue */
  margin-bottom: 2rem;
}
.events-section .event-card {
  min-width: 270px;
  max-width: 270px;
  height: 355px;
  background: #212742;            /* dark card background */
  border-radius: 1rem;
  box-shadow:
    0 0 30px rgba(73,168,255,0.6),  /* strong blue glow */
    0 4px 12px rgba(0,0,0,0.3);      /* subtle drop shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.events-section .event-card:hover {
  transform: translateY(-8px);
}
.events-section .event-card img {
  width: 260px;
  height: 345px;
  object-fit: contain;
  border-radius: 0.75rem;
  filter: drop-shadow(0 0 20px rgba(73,168,255,0.6));
}
.events-section .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #49a8ff;             /* match your glow color */
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(142,151,234,0.16);
  z-index: 2;
}


/* ---------- Partners Section ---------- */
.partners-section {
  background: #212742;
  padding: 4rem 1rem;
}
.partner-card {
  background: #212742;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.partner-logo-wrapper {
  background: #192032;
  border-radius: 50%;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(73,168,255,0.6);
  margin-bottom: 1rem;
}
.partner-logo-wrapper img {
  max-width: 3rem;
  height: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .intro-heading { font-size: 2rem; }
  .events-section .event-card { min-width: 200px; }
  .section-separator { margin: 1.5rem 0; }
}
