:root {
  --dark-blue: #1d2532;
  --lighter-blue: #2f405a;
  --green: #365c45;
  --gold: #ab8749;
  --pink: #efbfbb;
}

/* Base styles using your wedding colors */
body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  background-color: var(--dark-blue);
  color: var(--gold);
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
}

/* Art Deco Typography Hierarchy */
h1 {
  font-family: 'Poiret One', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--pink);
  text-align: center;
  letter-spacing: 0.1em;
  margin: 2rem 0;
  text-transform: uppercase;
}

h2 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--pink);
  text-align: center;
  letter-spacing: 0.05em;
  margin: 1.5rem 0;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

p {
  font-weight: 300;
  font-size: 1.1rem;
}

a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Site Header */
header {
  text-align: center;
  padding: 2rem 0 1rem 0;
}

.site-title {
  font-family: 'Poiret One', cursive;
  font-size: 4rem;
  font-weight: 400;
  color: var(--pink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

/* Art Deco Navigation */
nav {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem 0;
  border-bottom: 2px solid var(--gold);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

nav li {
  display: inline;
}

nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Image Styling */
img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 2rem auto;
  border: 3px solid var(--gold);
  border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  
  .site-title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
  
  nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.05em;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  main {
    padding: 1rem;
  }
  
  header {
    padding: 1rem 0 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  nav a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
  
  img {
    max-width: 250px;
  }
}

@media (max-width: 320px) {
  img {
    max-width: 200px;
  }
}