

   /* =======================
   FONT IMPORT
======================= */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

/* =======================
   RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
   scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #8e8981;
   padding-top: 80px;
}

PADDING HERE 
section {
  padding: 80px 60px;
}

.hero,
.about,
.legal,
.testimonials {
  padding: 80px 60px; /* Specific padding for these sections */
}

.full-image {
  padding: 0;  /* Removes padding from the full image sections */
}

/* =======================
   CONTAINER
======================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* =======================
   HEADER (FIXED STICKY)
======================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(251, 250, 248, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;

  height: 80px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.nav a:hover {
  opacity: 0.6;
}


/* =======================
   NAV ACTIVE STATE
======================= */

.nav a.active {
  opacity: 0.6;
  pointer-events: none;
}
/* =======================
   HERO
======================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background: #fbfaf8;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}


.hero-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 420px;
}
.contact-hero {
  background: #efeae3; /* matches your about section tone */
  padding: 80px 20px;
}

/* =======================
   ABOUT
======================= */
.about {
  background: #efeae3;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about h2,
.offer-inner h2,
.teaching-style h2,
.teaching-experience h2,
.testimonials-inner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 50px;
  text-align: center;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-button {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 22px;
  border: 1px solid #111;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  transition: 0.3s ease;
}

.about-button:hover {
  background: #111;
  color: #fff;
}

.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.teaching-style,
.teaching-experience {
  text-align: center;
}

.teaching-style .container,
.teaching-experience .container {
  max-width: 700px;
  margin: 0 auto;
}

.teaching-style h2,
.teaching-experience h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 50px;
}

.teaching-style p,
.teaching-experience p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.teaching-experience {
  background: #fbfaf8;
  padding: 80px 0;
}
.teaching-style {
  background: #efeae3;
  padding: 80px 0;
}

/* =======================
   FULL IMAGE (BASE - ALL DEVICES)
======================= */
.full-image {
  position: relative;
  width: 100%;
  margin-top: 0px;
  overflow: hidden;
}

.full-image--hero picture,
.full-image--hero img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.full-image--closing picture,
.full-image--closing img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;

  object-position: center 78%;
}

/* overlay base */
.full-image-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;

  color: #fff;
  z-index: 2;
}

/* =======================
   DESKTOP (DEFAULT)
======================= */

/* HERO IMAGE (FIRST) → text higher */
.full-image--hero .full-image-content {
  padding-bottom: 260px;
}

/* CLOSING IMAGE (SECOND) → lower */
.full-image--closing .full-image-content {
  padding-bottom: 96px;
}

.full-image--closing h2 {
  opacity: 0.9;
}

/* heading */
.full-image-content h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
    color: #ffffff; 
  opacity: 1;     
     text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}


/* subtext */
.full-image-subtext {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: 20px;
    color: #ffffff;
  opacity: 1;  
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.legal {
  max-width: 100%;
  margin: 0 auto;
line-height: 1.8;
background: #efeae3;
}

.legal h2 {
  margin-top: 20px;
  margin-bottom: 0px;
}

.legal .container {
  max-width: 980px;
}
/* =======================
   MOBILE LINE BREAK UTILITY
======================= */
.mobile-break {
  display: inline;
}

/* =======================
   TABLET (1023px and below)
======================= */
@media (max-width: 1023px) {

  section {
    padding: 80px 60px;
  }

}

  /* HERO IMAGE */
  .full-image--hero picture,
  .full-image--hero img {
    height: 600px;
  }

  .full-image--hero .full-image-content {
    padding-bottom: 200px;
  }

  /* CLOSING IMAGE */
  .full-image--closing picture,
  .full-image--closing img {
    height: 380px;
    object-position: center 70%;
  }

  .full-image--closing .full-image-content {
    padding-bottom: 30px;
  }

  /* TEXT */
  .full-image-content h2 {
    font-size: 34px;
  }

  .full-image-subtext {
    font-size: 17px;
  }

/* =======================
   MOBILE (768px and below)
======================= */
@media (max-width: 768px) {

  /* HERO IMAGE */
  .full-image--hero picture,
  .full-image--hero img {
    height: 420px; 
    object-position: center 50%; 
  }

  /* CLOSING IMAGE */
  .full-image--closing picture,
  .full-image--closing img {
    height: 350px; 
    object-position: center 60%; 
  }

  /* Adjusting padding for full-image content */
  .full-image--hero .full-image-content {
    padding-bottom: 140px; 
  }

  .full-image--closing .full-image-content {
    padding-bottom: 77px; 
  }

  /* Hero and closing text */
  .full-image-content h2 {
    font-size: 28px; 
    line-height: 1.4;
  }

  .full-image-subtext {
    font-size: 14px; 
  }

  /* Adjust closing text */
  .full-image--closing h2 {
    font-size: 24px; 
    line-height: 1.2;
  }

  /* Break word properly for mobile */
  .mobile-break {
    display: block; /* Ensures text breaks properly on small screens */
  }
}



  /* ✅ FORCE LINE BREAK ONLY ON MOBILE */
  .mobile-break {
    display: block;
  }


/* =======================
   MOBILE: RIGHT ALIGN TEXT
======================= */
@media (max-width: 768px) { 

  .full-image-content {
    align-items: flex-end;
    text-align: right;
    padding-right: 20px;
    padding-left: 20px;
  }

}


/* =======================
   TESTIMONIALS
======================= */
.testimonials {
  background: #f3f0ea;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.testimonial {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: left;
}

.testimonial p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial span {
  font-size: 14px;
  color: #777;
}

/* =======================
   OFFER
======================= */
.offer {
  padding: 100px 60px 40px;
  background: #fbfaf8;
}

.offer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center; 
}

.offer-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 60px;
}

.offer-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.offer-item h3 {
  font-size: 18px;
  margin-bottom: 14px;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  line-height: 1.3;
}

.offer-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.offer-note {
  font-size: 16px; 
  line-height: 1.8; 
  margin: 0 auto 20px; 
  text-align: center; 
  max-width: 700px; 
}

/* =======================
   QULAIFICATIONS
======================= */

.qualifications-section {
  padding: 40px 60px 60px;
  text-align: center;
  background: #fbfaf8;
  border-top: 1px solid #eee; /* divider */
}
.qualifications-section .container {
  max-width: 700px;
}

.qualifications-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.qualifications {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: #666;
  line-height: 2;
  letter-spacing: 0.3px;
}

.dots {
  margin: 20px 0; /* 👈 space above and below dots */
  text-align: center;
  letter-spacing: 6px; /* optional: spreads dots nicely */
  color: #999; /* optional: softer look */
}

/* =======================
   FOOTER
======================= */
.footer {
  padding: 40px 20px;
  border-top: 1px solid #eee;
  background: #fbfaf8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-logo img {
  width: 140px;
  display: block;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icons a {
  color: #666;
  text-decoration: none;
}

.footer-bottom {
  font-size: 14px;
  color: #666;
  margin-top: 18px;
  white-space: normal;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
      margin: 0 8px;
}

.footer-bottom a:hover {
  opacity: 0.6;
}
/* =======================
   BURGER MENU
======================= */

.burger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

   

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fbfaf8;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
    border-bottom: 1px solid #eee;
  }

  .nav.active {
    display: flex;
  }
}

/* =======================
   RESPONSIVE LAYOUT
======================= */
@media (max-width: 768px) {

  /* container spacing */
  .container {
    padding: 0 20px;
  }

  /* header override */
  .header .container {
    padding: 0 20px;
  }

  body {
    font-size: 16px;
  }

  .about,
  .offer,
  .hero, 
  .legal,
  .testimonials,
  .teaching-style,
  .teaching-experience {
    padding: 60px 10px;
  }

  .qualifications-section {
    padding: 30px 20px 60px;
  }

  .full-image {
    padding: 0;
  }

  /* headings */
 .about h2,
.offer-inner h2,
.teaching-style h2,
.teaching-experience h2,
.testimonials-inner h2 {
  font-size: 24px;
  line-height: 1.3;
}

  /* paragraph text */
  p {
    font-size: 15px;
    line-height: 1.7;
  }


 /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p { text-align: center; }

  .hero-text h2 {
    font-size: 28px;
    line-height: 1.8;
    
  }

 /* OFFER + TESTIMONIAL */
  .testimonial,
  .offer-item {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-cards,
  .offer-grid {
    gap: 20px;
  }
  /* FOOTER */
  .footer-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

   /* Full-width buttons on mobile */
  .about-button,
  .offer-item .button,
  .footer .button { /* Add specific button classes as needed */
    width: 100%;
    padding: 15px;
  }
}
