/* ===== Import Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Merriweather:wght@400;500;700&display=swap');

/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: "Merriweather", serif;
  color: #111;
  background-color: #fff;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #f8faf9;
  padding: 10px 10%;
  border-bottom: 1px solid #e5e5e5;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #004b48;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a i {
  color: #11656B;
  font-size: 17px;
}

/* ===== Logo Section ===== */
.logo-section {
  text-align: center;
  position: relative;
  margin: 28px 0 10px;
}

.academy-logo {
  width: 260px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ===== Page Title ===== */
.page-title {
  text-align: center;
  color: #004b48;
  font-family: "Bree Serif", serif;
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 7px;
}

/* ===== Columns Section ===== */
.curriculum-columns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
  gap: 40px;
}

.curriculum-columns .column {
  flex: 1;
}

.column-title {
  font-family: "Bree Serif", serif;
  font-size: 22px; /* changed from 24px */
  line-height: 28px;
  color: #222222;
  margin-bottom: -10px; /* reduced by 30% */
}

.curriculum-columns p {
  font-family: "Merriweather", serif;
  font-size: 18px;
  color: #222;
  line-height: 1.3;
  margin-bottom: 14px;
  text-align: justify;
  color: #222222;
}

/* ===== Opening Date ===== */
.opening-date {
  text-align: center;
  font-weight: 600;
  color: #004b48;
  margin: 25px 0 0px; /* reduced space below by 30% */
  font-size: 20px;
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-top: 2px solid #e0e0e0;
  padding-top: 15px;
  margin-top: 25px;
}

.countdown div {
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 48px;
  font-weight: bold;
  color: #004b48;
}

.countdown small {
  font-size: 15px;
  color: #666;
}

/* ===== After Countdown ===== */
.after-countdown {
  text-align: center;
  width: 70%;
  margin: 30px auto 0;
  font-family: "Merriweather", serif;
  font-size: 16px;
  color: #222;
  line-height: 1.7;
}

.after-countdown p {
  margin-bottom: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .top-bar {
    padding: 10px 5%;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .page-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 5px;
  }

  .curriculum-columns {
    flex-direction: column;
    width: 90%;
    gap: 0px;
  }

  .curriculum-columns p {
    text-align: justify;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 30px;
  }

  .after-countdown {
    width: 90%;
  }
}
