/* -----------------------------------
   COLOUR PALETTE AND GENERAL SETTINGS
----------------------------------- */

:root {
  --blue: #2f74c0;
  --blue-dark: #1e548e;
  --blue-light: #eaf5ff;

  --yellow: #ffd84d;
  --yellow-dark: #e8ae00;
  --yellow-light: #fff8d9;

  --green: #68ad5c;
  --green-dark: #397c42;
  --green-light: #eaf7e7;

  --cream: #fffdf5;
  --white: #ffffff;
  --ink: #223248;
  --text: #566479;
  --border: #dce5ec;

  --shadow-soft: 0 20px 50px rgba(34, 50, 72, 0.12);
  --shadow-card: 0 12px 30px rgba(34, 50, 72, 0.09);

  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 38px;

  --container-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family:
    "Trebuchet MS",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 27px;
  height: 4px;
  background: var(--yellow);
  border-radius: 100px;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(47, 116, 192, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: rgba(47, 116, 192, 0.18);
}

.button-secondary:hover {
  box-shadow: var(--shadow-card);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button-yellow:hover {
  background: #ffe377;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}


/* -----------------------------------
   ANNOUNCEMENT BAR
----------------------------------- */

.announcement-bar {
  padding: 8px 0;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}


/* -----------------------------------
   HEADER
----------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.93);
  border-bottom: 1px solid rgba(220, 229, 236, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.logo-placeholder {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(57, 124, 66, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a:not(.nav-button):hover {
  color: var(--blue);
}

.main-nav .nav-button {
  padding: 10px 19px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}


/* -----------------------------------
   HERO
----------------------------------- */

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 216, 77, 0.35), transparent 25%),
    radial-gradient(circle at 8% 80%, rgba(104, 173, 92, 0.18), transparent 23%),
    linear-gradient(145deg, #f8fcff 0%, #fffdf5 56%, #f7fce9 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  padding-top: 65px;
  padding-bottom: 105px;
}

.hero-content h1 span {
  display: block;
  color: var(--blue);
}

.hero-description {
  max-width: 610px;
  margin-bottom: 31px;
  font-size: 1.15rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 43px;
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-highlights span {
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.large-image-placeholder {
  position: absolute;
  inset: 10px 20px 10px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  overflow: hidden;
  color: var(--blue-dark);
  background:
    linear-gradient(rgba(234, 245, 255, 0.75), rgba(234, 245, 255, 0.75)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(47, 116, 192, 0.06) 18px,
      rgba(47, 116, 192, 0.06) 36px
    );
  border: 11px solid var(--white);
  border-radius: 48% 52% 38% 62% / 43% 38% 62% 57%;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.large-image-placeholder::after {
  position: absolute;
  right: 13%;
  bottom: 9%;
  width: 90px;
  height: 90px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: 0.55;
}

.large-image-placeholder span {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.large-image-placeholder small {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.placeholder-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  color: var(--yellow-dark);
  font-size: 3rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 190px;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border: 5px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.floating-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.3;
}

.floating-icon {
  font-size: 1.4rem;
}

.floating-card-yellow {
  top: 90px;
  left: -5px;
  background: var(--yellow-light);
  transform: rotate(-5deg);
}

.floating-card-green {
  right: -10px;
  bottom: 80px;
  background: var(--green-light);
  transform: rotate(4deg);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
}

.hero-decoration-one {
  top: 100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(47, 116, 192, 0.06);
}

.hero-decoration-two {
  bottom: 60px;
  left: -70px;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(255, 216, 77, 0.18);
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -70px;
  left: -5%;
  height: 140px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}


/* -----------------------------------
   ABOUT
----------------------------------- */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
}

.about-images {
  position: relative;
  min-height: 520px;
}

.small-image-placeholder {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-light);
  border: 9px solid var(--white);
  box-shadow: var(--shadow-card);
  font-weight: 800;
  text-align: center;
}

.image-one {
  top: 0;
  left: 0;
  width: 68%;
  height: 360px;
  border-radius: var(--radius-large);
  transform: rotate(-3deg);
}

.image-two {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 290px;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: var(--radius-medium);
  transform: rotate(4deg);
}

.leaf-decoration {
  position: absolute;
  right: 14%;
  top: 42%;
  z-index: 3;
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  background: var(--yellow);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  font-size: 2rem;
}

.about-content > p {
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list span {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.check-list p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}


/* -----------------------------------
   FEATURES
----------------------------------- */

.features-section {
  background: var(--blue-light);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading .section-label {
  justify-content: center;
}

.section-heading p {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 38px 31px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  content: "";
  opacity: 0.17;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.feature-blue::after {
  background: var(--blue);
}

.feature-yellow::after {
  background: var(--yellow);
}

.feature-green::after {
  background: var(--green);
}

.feature-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 20px;
  font-size: 2rem;
}

.feature-blue .feature-icon {
  background: var(--blue-light);
}

.feature-yellow .feature-icon {
  background: var(--yellow-light);
}

.feature-green .feature-icon {
  background: var(--green-light);
}

.feature-card p {
  margin-bottom: 0;
}


/* -----------------------------------
   DAILY PROGRAM
----------------------------------- */

.daily-program {
  background: var(--cream);
}

.program-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
}

.schedule {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.schedule-number {
  display: grid;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 900;
}

.schedule-item h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.schedule-item p {
  margin: 0;
  font-size: 0.9rem;
}

.program-image-wrap {
  position: relative;
  min-height: 610px;
}

.tall-image-placeholder {
  position: absolute;
  inset: 0 35px 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--green-dark);
  background:
    linear-gradient(rgba(234, 247, 231, 0.82), rgba(234, 247, 231, 0.82)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(104, 173, 92, 0.06) 20px,
      rgba(104, 173, 92, 0.06) 40px
    );
  border: 10px solid var(--white);
  border-radius: 48px;
  box-shadow: var(--shadow-soft);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.tall-image-placeholder small {
  margin-top: 7px;
  font-weight: 500;
}

.program-badge {
  position: absolute;
  right: -8px;
  bottom: 55px;
  display: flex;
  width: 155px;
  height: 155px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--yellow);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transform: rotate(7deg);
}

.program-badge strong {
  font-size: 1.35rem;
}

.program-badge span {
  font-weight: 800;
}

.program-badge small {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}


/* -----------------------------------
   GALLERY
----------------------------------- */

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.gallery-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: var(--radius-medium);
  font-weight: 900;
}

.gallery-placeholder:nth-child(2) {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.gallery-placeholder:nth-child(3) {
  color: #7b6200;
  background: var(--yellow-light);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  color: var(--blue-dark);
  background:
    linear-gradient(
      135deg,
      var(--blue-light),
      var(--green-light)
    );
  grid-column: span 2;
}


/* -----------------------------------
   CONTACT
----------------------------------- */

.contact-section {
  padding: 100px 0;
  background:
    linear-gradient(
      180deg,
      var(--white) 0%,
      var(--white) 50%,
      var(--blue-dark) 50%,
      var(--blue-dark) 100%
    );
}

.contact-card {
  display: grid;
  padding: 55px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 216, 77, 0.23), transparent 24%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 1.08fr 0.92fr;
  gap: 65px;
}

.contact-card h2 {
  max-width: 610px;
  color: var(--white);
}

.contact-content > p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.85);
}

.section-label-light {
  color: var(--yellow);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 20px;
}

.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.contact-details strong {
  display: block;
  margin-bottom: 2px;
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}


/* -----------------------------------
   FOOTER
----------------------------------- */

.site-footer {
  padding: 35px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-logo {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p,
.copyright {
  margin: 0;
  font-size: 0.86rem;
}


/* -----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */

@media (max-width: 980px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid,
  .about-grid,
  .program-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .about-grid,
  .program-grid {
    gap: 55px;
  }

  .about-images {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .program-image-wrap {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-card {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 75px 0;
  }

  .announcement-bar {
    font-size: 0.8rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .logo-placeholder {
    width: 49px;
    height: 49px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .main-nav a:not(.nav-button) {
    display: none;
  }

  .main-nav .nav-button {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero-grid {
    padding-top: 45px;
  }

  .hero-highlights {
    gap: 24px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .large-image-placeholder {
    inset: 10px;
  }

  .floating-card-yellow {
    top: 30px;
    left: -4px;
  }

  .floating-card-green {
    right: -4px;
    bottom: 35px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-large {
    min-height: 380px;
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .contact-card {
    padding: 38px 27px;
    border-radius: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand-text {
    max-width: 155px;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-highlights div {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 13px;
    text-align: center;
  }

  .hero-highlights strong {
    font-size: 0.92rem;
  }

  .hero-highlights span {
    font-size: 0.73rem;
  }

  .hero-visual {
    min-height: 410px;
  }

  .floating-card {
    max-width: 155px;
    padding: 10px 12px;
  }

  .floating-card p {
    font-size: 0.72rem;
  }

  .about-images {
    min-height: 425px;
  }

  .image-one {
    width: 78%;
    height: 285px;
  }

  .image-two {
    width: 68%;
    height: 230px;
  }

  .leaf-decoration {
    right: 10%;
    width: 61px;
    height: 61px;
  }

  .program-image-wrap {
    min-height: 470px;
  }

  .tall-image-placeholder {
    inset: 0 15px;
  }

  .program-badge {
    right: -5px;
    bottom: 30px;
    width: 125px;
    height: 125px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder,
  .gallery-large,
  .gallery-wide {
    min-height: 260px;
    grid-column: auto;
  }
}