/* General reset and typography */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;    /* clean body text */
  background-color: #0c0c0c;               /* dark backdrop */
  color: #f5f5f5;                          /* light body text */
}

/* Navigation bar styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.logo img {
  height: 60px;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  font-family: 'Cinzel', serif;            /* logo-style font */
  font-weight: 600;
  color: #d4af37;                          /* gold accent */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Hero section with background image */
.hero {
  height: 100vh;
  background: url('images/hero-background.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
}

.overlay h1 {
  font-family: 'Cinzel', serif;            /* consistent with logo */
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-button {
  font-family: 'Cinzel', serif;
  padding: 0.8rem 2rem;
  border: 2px solid #d4af37;
  background-color: transparent;
  color: #d4af37;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #d4af37;
  color: #0c0c0c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }
  .nav-links a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
  .cta-button {
    font-size: 0.9rem;
  }
}
