:root {
  --navy: #0A0F24;
  --gold: #C8A74E;
  --white: #FFFFFF;
  --light: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  background-color: var(--white);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 15, 36, 0.95);
  color: var(--white);
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
}

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

/* Hero */
.hero {
  height: 100vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  color: var(--white);
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 1px;
}

.hero-overlay p {
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 6rem 10%;
}

.section.light {
  background-color: var(--light);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

