:root {
  --bg-color: #ffffff;
  --accent-gold: #d4af37;
  --text-main: #ffffff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: var(--space-medium);
  gap: 2rem;
}

.hero-logo {
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 0 2.5rem;
  height: 68px;
  color: rgb(148, 25, 25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-photo {
  width: 100%;
  max-height: 95vh;
  min-height: 400px;
}

.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
