/* ===== GLOBAL ===== */

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f5f7fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container.section {
  flex: 1;
}

/* ===== HEADINGS ===== */

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #333;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #333;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #333;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #333;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  color: #333;
}

/* ===== NAVBAR ===== */

.navbar {
  background: #7952b3; /* pastel pink */
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  color: white !important;
  font-weight: 600;
  font-size: 20px;
}

.nav-link {
  color: white !important;
  margin-left: 18px;
  font-weight: 500;
}

.nav-link:hover {
  color: white !important;
}

/* ===== HERO SECTION ===== */

.hero {
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  position: relative;
}

/* Hero headings should be white */
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6 {
  color: white;
}

/* overlay to darken photo */

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.45);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* ===== SECTIONS ===== */

.section {
  padding: 80px 0;
}

.section-light {
  background: white;
}

.section-grey {
  background: #eef2f7;
  border-top: 1px solid #e1e1e1;
}

/* ===== CARDS ===== */

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.facility-card {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== TEAM ===== */
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  background: #f8f9fa;
}

.team-img:hover {
  transform: scale(1.05);
}

/* ===== GALLERY ===== */

.gallery-slide {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== FOOTER ===== */

footer {
  background: #7952b3; /* pastel pink */
  padding: 30px;
  margin-top: auto;
  color: white;
}

footer > div {
  max-width: 1140px; /* Bootstrap container-lg max width */
  margin: 0 auto;
  padding: 0 15px;
}

footer h5 {
  margin-bottom: 10px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

footer a:hover {
  color: white;
}
