/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2d3e2b;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: #1e3a1e;
  color: #f9f3e2;
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-info span {
  margin-right: 1.5rem;
}
.contact-info i {
  margin-right: 6px;
  color: #e7b42c;
}
.social-icons a {
  color: #f9f3e2;
  margin-left: 1rem;
  transition: 0.3s;
}
.social-icons a:hover { color: #e7b42c; }

/* Header & Nav */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}
.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1e3a1e;
  letter-spacing: -0.5px;
}
.logo p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #e7b42c;
  margin-top: -5px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: #2d3e2b;
  transition: 0.3s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #e7b42c;
  border-bottom: 2px solid #e7b42c;
  padding-bottom: 4px;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://placehold.co/1600x800/e6f0ea/2c5f2d?text=Montessori+Kids') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-content h2 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: #e7b42c;
  color: #1e3a1e;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: #c7951a;
  transform: translateY(-3px);
}
.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: white;
  color: #1e3a1e;
}

/* Features */
.features {
  padding: 80px 0;
  background: #fefcf5;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h3 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #1e3a1e;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.feature-card i {
  font-size: 2.5rem;
  color: #e7b42c;
  margin-bottom: 1rem;
}
.feature-card h4 {
  margin-bottom: 0.8rem;
  color: #1e3a1e;
}

/* CTA */
.cta {
  background: #1e3a1e;
  color: white;
  text-align: center;
  padding: 70px 20px;
}
.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-content p {
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  background: #eef5e6;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  color: #1e3a1e;
  font-family: 'Playfair Display', serif;
}
/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 70px 0;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
  padding: 50px 0 80px;
}
.mission-card {
  background: #fff7ec;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}
.mission-card i {
  font-size: 2rem;
  color: #e7b42c;
  margin-bottom: 1rem;
}
/* Programs */
.programs-list {
  padding: 70px 0;
}
.program-card {
  display: flex;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.8rem;
  margin-bottom: 1.8rem;
  border-radius: 16px;
  transition: 0.2s;
}
.program-icon i {
  font-size: 2.5rem;
  color: #e7b42c;
}
.activities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.activities-grid span {
  background: #eef5e6;
  padding: 8px 18px;
  border-radius: 30px;
}
/* Admissions */
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 60px 0;
}
.step {
  display: flex;
  margin-bottom: 2rem;
  gap: 1rem;
}
.step-num {
  background: #e7b42c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.req-docs ul {
  list-style: none;
}
.req-docs li {
  margin-bottom: 0.8rem;
}
.req-docs i {
  color: #e7b42c;
  margin-right: 0.5rem;
}
.tuition {
  background: #fefcf5;
  padding: 60px 0;
  text-align: center;
}
/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 70px 0;
}
.contact-details-card, .contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.map-placeholder {
  background: #e2e8e0;
  padding: 1rem;
  text-align: center;
  border-radius: 16px;
  margin-top: 1.5rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: inherit;
}
.contact-form textarea {
  border-radius: 20px;
}
/* Footer */
footer {
  background: #0f2b0f;
  color: #e2e8e0;
  padding-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-col h4 {
  color: #e7b42c;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col a {
  color: #ddd;
  text-decoration: none;
  line-height: 2;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a4b2a;
  padding: 1.5rem;
  font-size: 0.8rem;
}
/* Responsive */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 2rem;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: block;
  }
  .about-grid, .admission-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .top-bar-flex {
    flex-direction: column;
    text-align: center;
  }
}