:root {
  --primary: #003366; /* Navy Blue */
  --secondary: #f39c12; /* Deep Orange/Gold */
  --neutral: #f5f5f5;
  --heading-font: "Playfair Display", serif;
  --body-font: "Lato", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}
header,
footer {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
}
header {
  background-color: white;
}

header h1 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
}
nav a {
  color: black;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
  text-decoration-color: #f39c12;
}
.hero {
  /* background: url('./images/GroupSuccess.jpg') center/cover no-repeat; */
  color: white;
  text-align: center;
  padding: 0;
  width: 100%;
  height: 500px;
  padding-top: 90px;
}
section.hero.bottom {
  height: 400px;
  padding-top: 70px;
}
.hero-description {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  background-color: rgba(9, 0, 17, 0.514);
}
.hero h2 {
  font-size: 2.5rem;
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}
.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: white;
}
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

section.layoutSection {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-align: center;
}
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.two-col img {
  max-width: 100%;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  height: 400px;
}
.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: var(--neutral);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.program-card h3 {
  margin-top: 0.75rem;
  color: var(--secondary);
}
.highlight {
  background: var(--neutral);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 8px;
}
.carousel {
  text-align: center;
  font-style: italic;
}
footer {
  text-align: center;
  font-size: 0.9rem;
}
footer .links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}
footer a {
  color: #ddd;
  text-decoration: none;
}
@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }
}

.header {
  display: flex; /* Vertically align logo and text */
  justify-content: space-between; /* Space between logo and text */
  align-items: center; /* Center items vertically */
  gap: 5px; /* Space between logo and text */
}

.logo {
  height: 100px; /* Adjust size as needed */
  width: 150px;
  margin-bottom: 0px;
}

.outline {
  color: #1a3263; /* Your main text color */
  font-size: 48px; /* Adjust as needed */
  font-weight: bold;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

section#programs {
  margin-top: -80px; /* Adjust the value as needed */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Makes it responsive */
  margin-bottom: 10px;
}

.contact-info {
  text-align: left;
}

.links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex: 1;
}

.links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

footer p {
  margin: 5px 0;
}

.copyright {
  text-align: left;
  font-size: 14px;
  padding-left: 45%;
}
#mission .ourMission p {
  font-size: 1.2rem; /* Or use px like 18px */
  line-height: 1.6;
}
