:root {
  --blue: #072f73;
  --deep-blue: #021d49;
  --navy: #001947;
  --gold: #f4a900;
  --white: #ffffff;
  --soft: #f6f8fc;
  --text: #111827;
}

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

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

.container {
  width: min(1100px, calc(100% - 44px));
  margin: auto;
}

/* TOP BAR */
.topbar {
  background: var(--deep-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.topbar .container {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left,
.top-right,
.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* NAVBAR */
.navbar {
  background: #fff;
  height: 78px;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 85px;
  height: auto;
}

.logo-text h1 {
  font-size: 24px;
  line-height: 1;
  color: var(--blue);
  font-weight: 900;
}

.logo-text span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.navlinks {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--gold);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 45px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 610px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(0, 27, 70, .96) 0%,
      rgba(0, 35, 90, .82) 38%,
      rgba(0, 35, 90, .25) 72%
    ),
    url('../assets/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}




.tag {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  height: 28px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title .gold {
  display: block;
  color: var(--gold);
}

.hero p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin: 28px 0;
}

.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  min-width: 132px;
  height: 66px;
  border: 1.5px solid rgba(255,255,255,.8);
  border-radius: 7px;
  background: rgba(0,20,60,.35);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.stat i {
  color: var(--gold);
  font-size: 24px;
}

.stat b {
  font-size: 23px;
  line-height: 1;
  display: block;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
}

/* BIG HERO LOGO */
.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 25px rgba(0,0,0,.25));
}

/* SMOOTH WAVE */
.smooth-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  z-index: 3;
}

.smooth-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.smooth-wave .gold {
  fill: var(--gold);
}

.smooth-wave .white {
  fill: #fff;
}

/* SECTIONS */
section {
  padding: 46px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  color: var(--blue);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 22px;
}

.center {
  text-align: center;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about p {
  color: #263044;
  line-height: 1.55;
  margin-bottom: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e3e8f1;
  border-radius: 10px;
  min-height: 130px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,26,75,.12);
}

.feature-card i {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 12px;
}

.feature-card h4 {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 6px;
}

/* DARK SECTION */
.dark-section {
  background: linear-gradient(180deg, #012762, #001a49);
  color: #fff;
}

.dark-section .section-title {
  color: #fff;
}

/* IMAGE CARDS */
.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.image-card {
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.7);
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,13,42,.9));
}

.image-card.one { background-image: url('../assets/cultural-performance.jpg'); }
.image-card.two { background-image: url('../assets/live-music.jpg'); }
.image-card.three { background-image: url('../assets/art-exhibition.jpg'); }
.image-card.four { background-image: url('../assets/boat-regatta.jpg'); }

.image-content {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.image-content h4 {
  font-size: 16px;
  font-weight: 900;
}

/* COUNTDOWN */
.countdown-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.counter {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,26,75,.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 120px;
  align-items: center;
}

.time-box {
  text-align: center;
  border-right: 1px solid #d6dce7;
}

.time-box:last-child {
  border-right: 0;
}

.time-box b {
  color: var(--blue);
  font-size: 42px;
  font-weight: 900;
  display: block;
}

.time-box span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

/* PROGRAMS */
.programs {
  background: var(--soft);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.program-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px 14px;
  min-height: 120px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.program-card i {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 10px;
}

.program-card h4 {
  color: var(--blue);
  font-weight: 900;
}

/* GALLERY */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-row img {
  height: 90px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 6px 13px rgba(0,0,0,.2);
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.news-card {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
}

.news-card img {
  height: 136px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.news-card small {
  color: var(--gold);
  font-weight: 900;
}

.news-card h4 {
  color: var(--blue);
  font-weight: 900;
  margin: 8px 0;
}

.news-card p {
  font-size: 13px;
  color: #334155;
}

.read-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #e79c00, #f5bd1c);
  color: #fff;
  padding: 34px 0;
}

.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  font-size: 30px;
  font-weight: 900;
}

.cta-actions {
  display: flex;
  gap: 22px;
}

/* FOOTER */
.footer {
  background: #001947;
  color: #fff;
  padding-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr .9fr 1.5fr;
  gap: 32px;
  padding-bottom: 25px;
}

.footer h4 {
  font-size: 13px;
  margin-bottom: 12px;
}

.footer p,
.footer a {
  color: #c7d3e5;
  font-size: 12px;
  line-height: 1.5;
}

.footer a {
  display: block;
  margin-bottom: 7px;
}

.newsletter input {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 4px;
  padding: 0 12px;
  margin-bottom: 8px;
}

.newsletter button {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.16);
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #d7e1ef;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 55px;
  }

  .hero-logo img {
    max-width: 430px;
  }

  .hero-actions,
  .stats {
    justify-content: center;
  }

  .about-grid,
  .countdown-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .cards-row,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .topbar .container {
    height: auto;
    padding: 8px 0;
    flex-direction: column;
    gap: 8px;
  }

  .navbar {
    height: auto;
    padding: 12px 0;
  }

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

  .hero p {
    font-size: 14px;
  }

  .hero-actions,
  .stats,
  .cta-actions {
    flex-direction: column;
  }

  .features,
  .cards-row,
  .program-grid,
  .gallery-row,
  .news-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .counter {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card img {
    height: 190px;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    gap: 7px;
    padding: 12px 0;
  }
}