body {
  margin: 0;
  padding-top: 80px;
  background: black;
  color: white;
  font-family: 'Inter', sans-serif;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  z-index: 1000;
  box-sizing: border-box;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.nav a:hover {
  color: red;
}

/* HERO */
.hero {
  text-align: center;
  padding: 140px 20px 80px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
}

/* BUTTON */
.btn {
  background: white;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* BG TEXT */
.bg-text {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 50px;
  color: #c9a96e;
  letter-spacing: 3px;
  font-family: 'Sedgwick Ave Display', cursive;
  opacity: 0.5;
  z-index: -0;
  pointer-events: none;
}

/* GALLERY (if used later) */
.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
}

.gallery-scroll img {
  height: 300px;
  border-radius: 10px;
}
