/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #333; /* Dark grey main background */
  color: #fff;
}

/* Header Styles */
header {
  background-color: #3498db; /* Blue background */
  padding: 20px 0;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#logo {
  width: 200px;  /* Adjust for a larger logo */
  height: auto;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
}

/* Nav Styles */
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Hero Section Styles */
.hero-mystery {
  position: relative;
  height: 90vh;
  background: url('../images/hero-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.cta-button {
  background: transparent;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Main Content Styles */
main {
  padding: 40px 0;
}

.main-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

/* Footer Styles */
footer {
  background-color: #3498db; /* Blue background matching the header */
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container a {
  color: #fff;
  text-decoration: underline;
}

/* Styling for links within dark sections to improve contrast */
section a {
  color: #3498db;          /* A bright blue that stands out */
  text-decoration: underline;
  transition: color 0.3s;
}

section a:hover {
  color: #fff;             /* Change to white on hover for extra clarity */
}
