body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f8f6;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f8f6;
  padding: 1em 2em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  color: #1c1c1c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-link,
.dropdown > a {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
  padding: 0.5em 0.75em;
  border-radius: 4px;
}

.nav-link:hover,
.dropdown:hover > a,
.dropdown:has(.dropdown-content:hover) > a {
  background-color: #e6e6e6;
  color: #005fa3;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.3em;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  display: block;
  padding: 0.75em 1em;
  text-decoration: none;
  color: #1c1c1c;
  transition: background-color 0.3s;
}

.dropdown-content li a:hover {
  background-color: #f0f0f0;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.main-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.concert-info {
  font-size: 2em;
  font-weight: bold;
  margin: 0.2em 0;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.header-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.picture {
	max-width:300px;
	text-align: center;
}1