/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: var(--nav-height);
  background: rgba(30, 26, 21, 0.7);
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(30, 26, 21, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../banner.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 26, 21, 0.15) 0%,
    rgba(30, 26, 21, 0.35) 60%,
    var(--bg-deep) 100%
  );
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-chevron {
  position: absolute;
  bottom: 2rem;
  z-index: 2;
  color: var(--gold);
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.6;
}

/* === SECTIONS === */
section {
  padding: 5rem 2rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

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

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer a {
  color: var(--text-muted);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}
