/* Basic skeleton styles — expand this in future changes */
:root {
  --brand: #0d6efd;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  color: #212529;
}

/* Hero spacing */
#hero { 
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Make sure cards look tidy */
.card .card-footer a { text-decoration: none; }

/* Small utility for rounded images in hero */
img.rounded { border-radius: 0.5rem; }

/* Footer small text */
footer small { opacity: .9; }

/* TODO: add responsive typography, color palette, and spacing tokens */
/* HERO STYLING */
#hero {
  position: relative;
  min-height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.6); /* Bootstrap primary with transparency */
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 2.5rem;
}

#hero p.lead {
  max-width: 600px;
}
/* HERO background image */
#hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}/* ========== GENERAL RESET ========== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ========== HERO SECTION ========== */
#hero {
  position: relative;
  height: 100vh; /* full screen height */
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
}

#hero .container {
  position: relative;
  z-index: 2; /* keep text above overlay */
}

#hero h1,
#hero p {
  color: #fff;
}

/* ========== ABOUT SECTION ========== */
#about p {
  max-width: 700px;
}

/* ========== PROGRAMS SECTION ========== */
#programs .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#programs .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* ========== TESTIMONIALS ========== */
#testimonials blockquote {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== CONTACT SECTION ========== */
#contact .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* ========== FOOTER ========== */
footer {
  font-size: 0.9rem;
}

/* ========== TYPOGRAPHY ========== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  color: #555;
}

/* Hero text adjustments */
#hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

#hero p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 600px;
}
.navbar-brand img {
  max-height: 50px;
}
.navbar-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
}
/* ===== Change 6: CTA + Section Styling ===== */

/* Navbar CTA button */
.btn-accent {
  background-color: #f4d35e;
  color: #0d3b66;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
}

.btn-accent:hover {
  background-color: #f1c40f;
  color: #fff;
}

/* Section Headings */
section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d3b66;
}

/* Programs Cards */
#programs .card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#programs .card:hover {
  transform: translateY(-5px);
}/* Contact form */
#contact form .form-control {
  border-radius: 0.4rem;
  box-shadow: none;
  border: 1px solid #ccc;
}

#contact form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Footer links */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header#hero h1 {
    font-size: 2rem;
  }
  header#hero p.lead {
    font-size: 1rem;
  }
  .navbar .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}#testimonials .card {
  border-radius: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#testimonials .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

#testimonials p {
  font-style: italic;
  color: #555;
}
.program-card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  transition: transform 0.3s ease;
}

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

.program-card {
  border-radius: 0.6rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
/* Section background colors */
.bg-section {
  background-color: #f0f7ff; /* light blue tint */
}

.bg-section-alt {
  background-color: #f9f5ff; /* soft lavender tint */
}

/* Hero background overlay tweak */
header#hero {
  position: relative;
  background: url("../images/school hero.jpg") center/cover no-repeat;
  min-height: 90vh;
}

header#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}













