@import url('https://fonts.google.com/specimen/Bodoni+Moda');
@import url('https://fonts.google.com/specimen/DM+Serif+Text');

/* Reset & Base- done */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'DM Serif Text', serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #000;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 24px;
  color: gold;
}
.navbar .logo :hover {
    cursor: pointer;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: gold;
}

/* Hero */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-family: 'Bodoni Moda', serif;
  font-size: 48px;
  color: gold;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  color: #fff;
}

/* Sections */
section {
  padding: 80px 5%;
  text-align: center;
}
h1, h2 {
  font-family: 'Bodoni Moda', serif;
  color: gold;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #111;
  padding: 20px 5%;
  text-align: center;
  border-top: 1px solid #444;
}
footer a {
  color: gold;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
}
