/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  background: #111111;
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  transition: transform 0.35s ease;
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 18px;
  padding: 0 20px;

  border-radius: 999px;
  background: rgba(146, 149, 33, 0.44);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  border: 1px solid rgba(146, 149, 33, 0.70);
    
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.site-header.header-scrolled .navbar {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(146,149,33,0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.site-header.header-scrolled .nav-menu a {
  color: rgba(17, 17, 17, 0.86);
}

.site-header.header-scrolled .logo {
  color: #111111;
}

.site-header.header-scrolled .menu-toggle {
  background: rgba(17, 17, 17, 0.06);
}

.site-header.header-scrolled .menu-toggle span {
  background: #111111;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.logo-light {
  opacity: 1;
}

.logo-dark {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.site-header.header-scrolled .logo-light {
  opacity: 0;
}

.site-header.header-scrolled .logo-dark {
  opacity: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: opacity 0.25s ease;
}

.nav-menu a:hover {
  opacity: 0.66;
}

.nav-menu a.active {
  position: relative;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f4f451;
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 22px;
  border-radius: 999px;

  background: #f4f451;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 500;

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image: url("../img/hero-vt.webp");
  background-size: cover;
  background-position: 22% center;
  background-repeat: no-repeat;

  transform: scale(1.12);
  animation: heroZoomOut 4s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.08) 60%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.00) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;

  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.hero-text {
  max-width: 620px;
}

.hero-kicker {
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}/* CSS Document */


@media (max-width: 768px) {
    
  .hero-bg {
    transform: scale(1.06);
    animation: heroZoomOutMobile 3.2s ease-out forwards;
  }

  @keyframes heroZoomOutMobile {
    from {
      transform: scale(1.06);
    }
    to {
      transform: scale(1);
    }
  }
    
  .menu-toggle {
    display: inline-flex;
  }
    
  .mobile-menu {
    display: block;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    z-index: 25;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
    
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 14px;
    border-radius: 24px;

    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  }
    
  .mobile-menu-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;

    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);

    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
  }
    
  .mobile-menu-cta {
    margin-top: 8px;
    text-align: center;
    background: #f4f451;
    color: #111111 !important;
    font-weight: 700;
  }

  .mobile-menu-cta:hover {
    background: #f4f451;
    transform: translateY(-1px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
    
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
    
    .site-header.header-scrolled .mobile-menu-nav {
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(17, 17, 17, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    .site-header.header-scrolled .mobile-menu-nav a {
      color: rgba(17, 17, 17, 0.88);
    }
    
}


@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .hero-text {
    max-width: 560px;
  }

  .hero-content {
    padding-bottom: 56px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .navbar {
    height: 64px;
    margin-top: 14px;
    padding: 0 16px;
  }

  .logo img {
    height: 28px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    background-position: 30% center;
  }

  .hero-content {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 44px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 9vw, 3.3rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.45;
    max-width: 28ch;
  }
}

