/* ========== General Styles ========== */
body {
  margin: 0;
  font-family: 'Comic Neue', 'Quicksand', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3 {
  color: #064420; /* dark green */
  font-family: 'Comic Neue', 'Quicksand', Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ========== Header & Navigation ========== */
header {
  background: #064420; /* dark green */
  padding: 20px 30px; /* adjusted for bigger logo */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 150px; /* bigger logo */
  width: auto;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .logo {
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-height: 80px;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-weight: bold;
  color: #fff; /* white links for visibility on all pages */
  padding: 5px 10px;
  border-radius: 10px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffcc00; /* yellow hover/active */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ========== Home Page Content Centering ========= */
.home-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.home-content p,
.home-content h2,
.home-content h3 {
  margin: 0 auto 20px auto;
  display: inline-block;
  text-align: center;
}

/* ========== Hero Section ========== */
.hero {
  background: #f0f0f0;
  color: #064420;
  text-align: center;
  padding: 120px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px #ffcc00;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #064420;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffcc00;
  color: #064420;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ========== Page Header Section ========= */
.page-header {
  text-align: center;
  padding: 60px 20px;
  background: #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ========== About Page Section ========= */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========== Admissions Page Section ========= */
.admissions-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.admissions-hero img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.admissions-text {
  flex: 1;
  text-align: center;
}

/* ========== Programs Page Section ========= */
.programs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.program {
  background: #fff9e6;
  border: 2px solid #ffcc00;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.program-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* ========== Contact Page Section ========= */
.contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========== Call to Action Section ========= */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #ffcc00;
  color: #064420;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta .btn {
  background: #064420;
  color: #ffcc00;
  padding: 15px 35px;
  font-weight: bold;
}

.cta .btn:hover {
  background: #fff;
  color: #064420;
  transform: translateY(-3px);
}

/* ========== Footer Section ========= */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #064420;
  color: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
}

/* ========== Misc Fun / Bubbly Touches ========= */
img {
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 40px;
}
