* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

header img {
  height: 50px;
}

.locations {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.25rem;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

.tag {
  background: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #333;
  cursor: pointer;
  transition: background 0.2s;
}

.tag:hover {
  background: #2a2a2a;
}

.description-box {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 600px;
  color: #ccc;
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  display: none;
}

.hero-image {
  margin-top: 2rem;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  filter: brightness(0.2); /* 0 = noir complet, 1 = normal */
}

.main-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.main-heading h1 {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}

.main-heading .locations {
  font-size: 1rem;
  color: #aaa;
  font-weight: 400;
}

.tag.active {
  background: #ffffff;
  color: #0e0e0e;
  border-color: #ffffff;
}
