/* style.css */

body {
  margin: 0;
  font-family: 'Rock Salt', cursive;
  background-color: #0a0a0a;
  color: #f2f2f2;
}

header {
  background: #111;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid crimson;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: crimson;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: crimson;
}

.hero {
  background: url('https://images.unsplash.com/photo-1587293852726-70cdb56c2864?auto=format&fit=crop&w=1470&q=80') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px black;
}

.hero h1 {
  font-size: 4em;
  margin: 0;
}

.hero p {
  font-size: 1.5em;
}

section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: crimson;
  margin-bottom: 20px;
}

.show-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.show-list li {
  margin-bottom: 10px;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  border-top: 3px solid crimson;
}

footer a {
  color: crimson;
  text-decoration: none;
}
