
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

/* HEADER / NAV */

header.site-header {
  background-color: #0b3452;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .brand img {
  height: 40px;
  width: auto;
  display: block;
}

header .brand span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

nav.site-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
  font-weight: 500;
}

nav.site-nav a:hover {
  text-decoration: underline;
}

/* HERO */

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.55)),
    url("../assets/hero_park.jpg");
  background-size: cover;
  background-position: center;
  filter: none;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.35), transparent 55%);
  z-index: -1;
}

.hero-inner {
  max-width: 780px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background-color: #f4b000;
  color: #12212f;
}

.btn-primary:hover {
  background-color: #ffc94a;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.09);
}

/* MAIN SECTIONS */

main {
  padding: 40px 20px 60px;
  max-width: 1080px;
  margin: 0 auto;
}

.section {
  margin-bottom: 56px;
}

.section h2 {
  font-size: 26px;
  margin: 0 0 18px;
  color: #102133;
}

.section p {
  margin: 0 0 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 10px 25px rgba(15, 39, 64, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #14324b;
}

.card p {
  margin: 0;
  font-size: 14px;
}

/* SIMPLE LAYOUT FOR INNER PAGES */

.page-hero {
  background-color: #0b3452;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 32px;
}

.page-hero p {
  margin: 0;
  font-size: 16px;
}

/* FOOTER */

footer.site-footer {
  background-color: #0b3452;
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
}

/* SMALL SCREENS */

@media (max-width: 720px) {
  header.site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav.site-nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero {
    min-height: 60vh;
    padding-top: 60px;
  }

  .hero-title {
    font-size: 32px;
  }
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    background-color: #ffcc33;
    color: #000;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
}

.cta-btn:hover {
    background-color: #e6b82e;
}

/* CTA Button */
.cta-center {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    background-color: #ffcc33;
    color: #000;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

.cta-btn:hover {
    background-color: #e6b82e;
    transform: translateY(-2px);
}

/* Active nav item */
.site-nav a.active {
    text-decoration: underline;
    font-weight: 700;
}

/* Ensure CTA button matches Home Page */
.cta-center {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    background-color: #ffcc33;
    color: #000;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
}

.cta-btn:hover {
    background-color: #e6b82e;
    transform: translateY(-2px);
}
