* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8f6f0;
  color: #2b2b2b;
}
.wrapper {
  max-width: 960px;
  margin: auto;
  padding: 0 20px;
}
.navbar {
  background: #1f4d33;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-size: 22px;
  font-weight: 600;
  color: #f1d48b;
}
nav a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

/* FORM */
.contact-page-form h2,
.contact-page-info h2 {
  color: #1f4d33;
  margin-bottom: 10px;
}

.contact-page-form p {
  margin-bottom: 25px;
  color: #555;
}

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

.contact-page-form form input:focus,
.contact-page-form form textarea:focus {
  outline: none;
  border-color: #1f4d33;
}

/* CONTACT INFO */
.contact-page-info {
  background: #f8f6f0;
  padding: 35px;
  border-radius: 18px;
}

.contact-page-info p {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #333;
}

/* MAP */
.contact-page-map {
  width: 100%;
  height: 420px;
  margin-top: 0;
}

.contact-page-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-map {
    height: 320px;
  }
}

/* =========================
   HERO BANNER
========================= */
.hero-banner {
  background: linear-gradient(rgba(31, 77, 51, 0.55), rgba(31, 77, 51, 0.55)),
    url("../img/banner.png") center center / cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.banner-content {
  text-align: left;
}

.hero-banner h1 {
  font-size: 42px;
  line-height: 1.2;
  max-width: 650px;
  margin-bottom: 15px;
}

.hero-banner p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* CTA buttons */
.banner-actions {
  display: flex;
  gap: 15px;
}

.btn {
  background: #f1d48b;
  color: #1f4d33;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid #f1d48b;
  color: #f1d48b;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 380px;
    text-align: center;
  }

  .banner-content {
    text-align: center;
  }

  .hero-banner h1 {
    font-size: 30px;
  }

  .banner-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   HOME ABOUT SECTION
========================= */
.home-about {
  padding: 80px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 34px;
  color: #1f4d33;
  margin-bottom: 15px;
}

.about-lead {
  font-size: 18px;
  color: #c7a14a;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* =========================
   ABOUT PAGE (SCOPED)
========================= */

.about-page-hero {
  background: linear-gradient(120deg, #1f4d33, #c7a14a);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 40px;
  padding: 80px 0;
}

.about-page-card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-page-card.image-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.about-page-card.reverse {
  grid-template-columns: 1.4fr 1fr;
}

.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-text {
  padding: 35px;
}

.about-page-text h2 {
  color: #1f4d33;
  font-size: 26px;
  margin-bottom: 15px;
}

.about-page-book-list {
  list-style: none;
  padding-left: 0;
}

.about-page-book-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.about-page-book-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c7a14a;
}

.about-page-card.highlight {
  border-left: 6px solid #c7a14a;
}

/* SIDEBAR */
.about-page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-page-stat {
  background: #1f4d33;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
}

.about-page-stat span {
  font-size: 36px;
  font-weight: bold;
  color: #f1d48b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-card.image-card,
  .about-page-card.reverse {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOUNDER PAGE
========================= */
.founder-hero {
  background: linear-gradient(120deg, #1f4d33, #c7a14a);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.founder-section {
  padding: 50px 0;
}

.alt-bg {
  background: #f8f6f0;
}

.founder-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-text h2 {
  color: #1f4d33;
  margin-bottom: 15px;
}

.center-title {
  text-align: center;
  margin-bottom: 40px;
  color: #1f4d33;
}

.founder-card.books-list ul li {
  text-align: left;
}

/* TIMELINE */
.timeline {
  display: grid;
  gap: 20px;
  max-width: 700px;
  margin: auto;
}

.timeline-item {
  background: #fff;
  padding: 20px 25px;
  border-left: 5px solid #c7a14a;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.timeline-item span {
  font-weight: bold;
  color: #1f4d33;
}

/* AUTHOR GRID */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.founder-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.founder-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
}

.founder-card h3 {
  color: #1f4d33;
  margin-bottom: 12px;
}

/* AWARDS */
.founder-awards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.award-image img {
  width: 100%;
  border-radius: 16px;
}

/* LEGACY */
.legacy-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-intro,
  .founder-grid,
  .founder-awards {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .about-text h2 {
    font-size: 28px;
  }
}

/* =========================
   HOME PRODUCTS SECTION
========================= */
.home-products {
  padding: 80px 0;
  background: #f8f6f0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 20px;
  color: #1f4d33;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* CTA BUTTON */
.products-cta {
  text-align: center;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  background: linear-gradient(120deg, #1f4d33, #c7a14a);
  color: #fff;
  padding: 80px 0;
}
.hero-inner {
  text-align: center;
}
.section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial {
  font-style: italic;
}
.btn {
  background: #f1d48b;
  color: #1f4d33;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
button {
  background: #1f4d33;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 25px;
}
footer {
  background: #1f4d33;
  color: #fff;
  padding: 30px 0;
}
footer a {
  color: #f1d48b;
  text-decoration: none;
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #1f4d33;
  color: #eaeaea;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 20px;
}

.footer-col h4 {
  color: #f1d48b;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f1d48b;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }
}

.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
