:root{
  --text:#f2f7f1; 
  --muted:#bcd5c6; 
  --accent:#ffd84d; 
  --border:#1e5d46;
}

body {
  background: url("../images/background.jpeg") center top / cover no-repeat fixed !important;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
}

/* ================== LANDING PAGE ONLY ================== */

/* Hero Section Layout */
.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
  padding: 60px 0 80px;
}

/* Eyebrow Heading */
.eyebrow {
  font-family: 'Lora', serif;
  font-size: 15pt;
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}

/* Right-side button links (Book Now, Internship, etc.) */
.right-title {
  text-align: left;
  margin-bottom: 20px;
}
.right-title a {
  display: inline-block;
  padding: 6px 14px;
  margin: 6px 4px;
  background: #FFD700;      /* golden yellow */
  color: #222 !important;   /* dark text */
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.right-title a:hover {
  background: #FFB400;      /* darker hover */
  color: #fff !important;
}

/* About paragraphs */
.left p {
  font-family: 'Lora', serif;
  font-size: 13pt;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.9;
  margin: 0 0 18px;
  text-align: justify;
  text-indent: 28px;
}

/* Left CTA button (Book Appointment Now) */
.left .cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-family: "Lora", serif;
  font-size: 13pt;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ccc;
  margin-top: 18px;
}
.left .cta:hover {
  background: #f7f7f7;
}

/* Inline highlight */
.hl {
  color: #ffd84d;
  font-style: italic;
  font-weight: 600;
}

/* Main CTA (used elsewhere too) */
.cta {
  display: block;
  margin: 24px auto 0;
  font-family: 'Lora', serif;
  font-size: 12pt;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 4px;
  border: 1px solid #2c4d7a;
  background: #ffffff;
  color: #2c4d7a;
  text-align: center;
  text-decoration: none;
  width: auto;
}
.cta:hover {
  background: #f0f6ff;
  border-color: #1a3a66;
  color: #1a3a66;
}

/* Flyer image (right-side card) */
.flyer-img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  min-height: 800px;   /* keeps height balance with text */
  border-radius: 4px;
  margin: 0 auto;
}

/* ================== RESPONSIVE ================== */
@media(max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 60px;
  }

  .left {
    text-align: center;
  }

  .left p {
    font-size: 14px;
    text-indent: 0;
    text-align: center;
  }

  .left .cta {
    width: auto;
    padding: 12px 24px;
    margin-inline: auto;
  }

  .right-title {
    text-align: center;
  }

  .right-title a {
    display: inline-block;
    margin: 6px 6px;
    font-size: 14px;
    padding: 8px 14px;
  }

  .flyer-img {
    max-width: 100%;
    min-height: auto;
    border-radius: 6px;
  }
}

@media(max-width: 500px) {
  .hero-wrap {
    padding: 30px 0 50px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .left p {
    font-size: 13px;
  }

  .right-title a {
    font-size: 13px;
    padding: 6px 12px;
  }
}
