/* -----------------------------------------------
   Google Fonts
   ----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

/* -----------------------------------------------
   Custom Properties
   ----------------------------------------------- */
:root {
  --black: #0a0a0a;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --red: #8b2500;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* -----------------------------------------------
   Base Styles
   ----------------------------------------------- */
body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
}

/* -----------------------------------------------
   Typography — Headings
   ----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 400;
}

/* -----------------------------------------------
   Links
   ----------------------------------------------- */
a {
  transition: color 0.3s ease;
}

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

/* -----------------------------------------------
   Button
   ----------------------------------------------- */
.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.9rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b8963f;
  color: var(--black);
}

/* -----------------------------------------------
   Utility Classes
   ----------------------------------------------- */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
