
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('/pictures/pic30.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}



.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}


.logo-text {
  font-family: gueist, gueist fallback;
  cursor: pointer;
}

.logo-text h1 {
  font-size: 22px;
}

.logo-text span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #d9b46a;
}

.hero-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.hero-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.hero-nav ul li a:hover {
  color: #d9b46a;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content .gold {
  color: #d9b46a;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}


.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 1rem;
  background: #d9b46a;
  color: #332618;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}



.scroll-indicator {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  text-align: center;
  color: #d9b46a;
}

.scroll-indicator span {
  font-size: 14px;
  letter-spacing: 4px;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: #d9b46a;
  margin: 8px auto 0;
}


.navbar__toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.navbar__toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px 0;
  background: #d9b46a;
  transition: all 0.3s ease;
}

.navbar__toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar__toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}



@media (max-width: 650px) {

  .hero-header {
    padding: 0 20px;
  }

  .navbar__toggle {
    display: block;
  }

  .hero-nav {
    position: absolute;
    top: 80px;
    right: 20px;

    background: #d9b46a;
    padding: 20px;
    border-radius: 10px;
    display: none;

    z-index: 1000;
  }

  .hero-nav.active {
    display: block;
  }

  .hero-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-nav ul li a {
    color: #332618;
    font-size: 1.1rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
