/* Global Styles */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #1e1e1e;
}
.container {
    max-width: 1340px !important;
}
.uppercase {
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #004165;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #004165, #0b4f7e);
  color: #ffffff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-slide .container {
  z-index: 2;
}

.carousel-item h1,
.carousel-item p {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}



/* Counter Animations */

.counter {
    font-size: 4.25rem;
    font-weight: bold;
    color: #2196F3;
    margin-bottom: 0.25rem;
}

p.neg-margin-top-1 {
    margin-top: -1em;
    font-size: 1.2em;
}


/* News Block */
.swiper-slide .LN-thumb {
  border-radius: 0.5rem;
  height: 200px;
}

.swiper-slide .tw-p-4 {
  background-color: #fff;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.swiper-slide .tw-p-4:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

footer a {
  color: #cdd3d8;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* PAGES */
.page-content p {
  margin-bottom: 1.25rem;
}
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.page-content h2, .page-content h3 {
  margin-top: 2rem;
  font-weight: bold;
  color: #214063;
}

/* END PAGES */

/* TEAMS PAGE */
/* Section Heading */
.section-header {
  font-size: 2rem;
  font-weight: 700;
  color: #11457e; /* deep blue from SchoolSeed logo */
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f5b700; /* accent yellow */
  margin-top: 0.5rem;
  border-radius: 2px;
}

.section-header-page {
    font-size: 5rem;
    font-weight: 700;
    color: #3f3f3f;
    position: relative;
}

.section-header-page::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f5b700;
    margin-top: 0.5rem;
    border-radius: 2px;
    margin: auto;
}
/* Staff Cards */
.staff-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Staff Image */
.staff-img {
  height: 300px;
  object-fit: cover;
}
.section-header {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a3d6d;
}
.staff-card {
  background: #fff;
  transition: transform 0.2s ease-in-out;
}
.staff-card:hover {
  transform: translateY(-5px);
}
/* Staff Details */
.staff-body {
  background: #f9f9f9;
}

.staff-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.staff-title {
  font-size: 0.9rem;
  color: #555;
}

.staff-organization {
  font-size: 0.85rem;
  color: #777;
}
@media (max-width: 750px) {
.section-header-page {
    font-size: 3rem;
}
}
/* END TEAMS PAGE */
