﻿:root {
  --primary-green: #81a121;
  --bg-dark: #0f100e;
  --bg-panel: rgba(255, 255, 255, 0.04);
  --bg-panel-strong: rgba(255, 255, 255, 0.08);
  --text-light: #ffffff;
  --text-muted: #b7b7b7;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-accent: rgba(129, 161, 33, 0.28);
  --font-main: 'Trebuchet MS', 'Aptos', 'Segoe UI', sans-serif;
  --nav-height: 80px;
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 5%;
  background: rgba(15, 16, 14, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background 0.25s ease, color 0.25s ease;
}

.language-switch a.active,
.language-switch a:hover {
  background: var(--primary-green);
  color: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  background: var(--primary-green);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: #000;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(15, 16, 14, 0.46) 0%, rgba(15, 16, 14, 0.14) 42%, rgba(15, 16, 14, 0.34) 100%),
    radial-gradient(circle at center, rgba(15, 16, 14, 0) 12%, rgba(15, 16, 14, 0.1) 58%, rgba(15, 16, 14, 0.34) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 860px;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero-kicker {
  margin-bottom: 12px;
  color: var(--primary-green);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.section-pad {
  padding: 110px 5%;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--bg-panel-strong);
  border-color: rgba(129, 161, 33, 0.34);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.card p {
  color: var(--text-muted);
}

.media-shell {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #090909;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.media-shell iframe,
.media-shell img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.media-landscape {
  aspect-ratio: 16 / 9;
}

.media-portrait {
  max-width: 440px;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
}

.event-slideshow {
  padding: 22px;
}

.slideshow-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 520px;
}

.slideshow-track {
  position: relative;
  min-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.slideshow-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  color: var(--text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.slideshow-control:hover {
  background: rgba(129, 161, 33, 0.3);
  border-color: rgba(129, 161, 33, 0.55);
}

.slideshow-control.prev {
  left: 16px;
}

.slideshow-control.next {
  right: 16px;
}

.slideshow-control span {
  font-size: 2rem;
  line-height: 1;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slideshow-dot.is-active {
  background: var(--primary-green);
  transform: scale(1.3);
}

.form-field {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font: inherit;
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

textarea.form-field {
  resize: vertical;
  min-height: 120px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 34px 5%;
  border-top: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--primary-green);
}

.legal-content {
  max-width: 880px;
}

.legal-content h3 {
  margin: 30px 0 12px;
  color: var(--primary-green);
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 12px 0 20px 20px;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .nav-meta {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 96px 5% 80px;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card {
    padding: 28px 22px;
  }

  .event-slideshow {
    padding: 16px;
  }

  .slideshow-viewport,
  .slideshow-track {
    min-height: 420px;
  }

  .slideshow-control {
    width: 42px;
    height: 42px;
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
