/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ----- GLOBAL STYLES ----- */
body {
  font-family: 'Playfair Display', serif;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #bfa14a; /* gold accent */
  transition: color 0.3s ease;
}

a:hover {
  color: #d4af37; /* lighter gold on hover */
}

/* ----- HEADER ----- */
header {
  background: #000;
  color: #fff;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #bfa14a;
}

nav a {
  margin: 0 15px;
  font-size: 16px;
  color: #fff;
}

nav a:hover {
  color: #d4af37;
}

/* ----- HERO SECTION ----- */
.hero {
  background: url('your-image.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}