* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  background: #111;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 0.8s ease, transform 1.2s ease;
  z-index: 1;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
  z-index: 2;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 10;
}

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

#logo {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d6a84f;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #d6a84f;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 110px);
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 70px;
}

.location {
  margin: 0 0 26px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.tagline {
  margin: 28px 0 42px;
  max-width: 560px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-link {
  min-width: 145px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-link:hover {
  transform: translateY(-4px);
  background: rgba(214, 168, 79, 0.22);
  border-color: #d6a84f;
}

@media (max-width: 760px) {
  .header {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }

  #logo {
    width: 128px;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding-top: 40px;
    justify-content: center;
  }

  .location {
    font-size: 11px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-link {
    width: min(100%, 280px);
  }
}
