body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212; /* Dark background */
  color: white;
}

header {
  position: fixed;
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #FF0080, #FF8C00); /* Gradient background */
  color: white;
  top: 0;
  left: 0;
  transition: top 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* Stack name above nav */
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Shadow for depth */
}

nav {
  margin-top: 10px; /* Space between title and nav */
}

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

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Slightly transparent white */
}

main {
  padding-top: 100px; /* Give space for the fixed header */
}

.card {
  background-color: #3e2723; /* Darker background for cards */
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Shadow effect */
  transition: transform 0.3s;
  max-width: 800px; /* Centering the cards */
}

.card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.card h2 {
  color: #FF0080; /* Pink-violetish for section titles */
}

.event-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #FF0080; /* Same as header */
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}
