* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #1d1d1d;
  background: #f7f8f6;
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.hide {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: min(1320px, 92%);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a3d21;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a,
.mobile-menu a {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-menu a:hover,
.mobile-menu a:hover {
  color: #2f7d3c;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: #2f7d3c;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
  border-radius: 10px;
}

.mobile-menu {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 20px 22px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 30, 17, 0.85), rgba(26, 73, 35, 0.65)),
    url("images/events/events-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217, 239, 122, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 25%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.28;
  animation: floatShape 9s ease-in-out infinite;
}

.hero-shape-1 {
  width: 420px;
  height: 420px;
  background: rgba(217, 239, 122, 0.28);
  top: -120px;
  right: -100px;
}

.hero-shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -120px;
  left: -80px;
  animation-delay: 1.2s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-18px) translateX(10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 90%);
  text-align: center;
  color: #fff;
}

.hero-tag,
.section-tag,
.event-label {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d9ef7a;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero p {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: #d9ef7a;
  color: #183419;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #e6f79d;
}

/* LAYOUT */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.event-section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 54px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2f7d3c;
  margin-bottom: 14px;
}

.section-tag.light {
  color: #d9ef7a;
}

.section-heading h2,
.panel-text h2,
.leadership-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #16351c;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-heading p,
.panel-text p,
.leadership-copy p,
.event-content p,
.timeline-content p,
.dark-card-content p,
.award-content p {
  font-size: 1rem;
  color: #4b4f4c;
}

/* STYLE 1 */
.style-split {
  background: linear-gradient(180deg, #f8fbf7 0%, #eef5ee 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.stack-col {
  display: grid;
  gap: 32px;
}

.event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 37, 18, 0.09);
  border: 1px solid rgba(47, 125, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover,
.dark-card:hover,
.timeline-card:hover,
.award-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.event-card.large .event-image {
  height: 420px;
}

.event-card.mini .event-image {
  height: 220px;
}

.event-image img,
.panel-image img,
.timeline-image img,
.dark-card img,
.award-box img,
.leadership-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 28px;
}

.event-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: #2f7d3c;
  margin-bottom: 12px;
}

.event-content h3,
.timeline-content h3,
.dark-card-content h3,
.award-content h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #17361d;
}

/* STYLE 2 */
.style-panel {
  background: #ffffff;
}

.panel-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.panel-text {
  padding: 10px 0;
}

.panel-text p + p {
  margin-top: 16px;
}

.panel-image {
  position: relative;
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
}

/* STYLE 3 */
.style-timeline {
  background: linear-gradient(180deg, #f3f4f0 0%, #ffffff 100%);
}

.timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2f7d3c 0%, #d9ef7a 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 38px;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 30px;
  width: 24px;
  height: 24px;
  background: #2f7d3c;
  border: 4px solid #d9ef7a;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(47, 125, 60, 0.08);
}

.timeline-card {
  margin-left: 44px;
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.timeline-image {
  min-height: 230px;
}

.timeline-content {
  padding: 28px;
}

/* STYLE 4 */
.style-dark {
  background:
    linear-gradient(180deg, #0f1812 0%, #15281a 100%);
  color: #fff;
}

.style-dark .section-heading h2,
.style-dark .section-heading p,
.style-dark .dark-card-content h3,
.style-dark .dark-card-content p {
  color: #fff;
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 239, 122, 0.12);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dark-card:hover {
  border-color: rgba(217, 239, 122, 0.32);
}

.dark-card img {
  height: 260px;
}

.dark-card-content {
  padding: 24px;
}

/* STYLE 5 */
.style-awards {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3e8 100%);
}

.awards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.award-box {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.08);
}

.award-box img {
  height: 320px;
}

.award-content {
  padding: 28px;
}

/* STYLE 6 */
.style-leadership {
  background: linear-gradient(180deg, #edf3ed 0%, #ffffff 100%);
}

.leadership-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.leadership-copy p + p {
  margin-top: 15px;
}

.leadership-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.leadership-gallery img {
  border-radius: 22px;
  min-height: 220px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.leadership-gallery img:last-child {
  grid-column: span 2;
  min-height: 260px;
}

/* CTA */
.events-cta {
  position: relative;
  padding: 100px 0 110px;
  background:
    linear-gradient(135deg, rgba(18, 51, 24, 0.95), rgba(47, 125, 60, 0.9)),
    url("images/events/events-cta.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.events-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 16px 0 16px;
  line-height: 1.08;
}

.events-cta p {
  width: min(760px, 90%);
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
}

/* REVEAL */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .two-col,
  .panel-layout,
  .leadership-shell,
  .awards-wrap,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .event-card.large .event-image,
  .panel-image,
  .award-box img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: 74px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 130px;
    min-height: 88vh;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .event-section {
    padding: 84px 0;
  }

  .section-heading h2,
  .panel-text h2,
  .leadership-copy h2,
  .events-cta h2 {
    font-size: 2rem;
  }

  .event-content,
  .timeline-content,
  .dark-card-content,
  .award-content {
    padding: 22px;
  }

  .timeline {
    padding-left: 22px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-dot {
    left: -6px;
    width: 20px;
    height: 20px;
  }

  .timeline-card {
    margin-left: 28px;
  }

  .leadership-gallery {
    grid-template-columns: 1fr;
  }

  .leadership-gallery img:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .event-card.large .event-image,
  .event-card.mini .event-image,
  .panel-image,
  .dark-card img,
  .award-box img {
    height: 250px;
  }
}