body {
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
}

.hero-video {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px black;
}

.hero-text img {
  max-height: 80px;
  margin-bottom: 1rem;
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #00ffc8;
}

.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tier {
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 255, 200, 0.2);
  padding: 1.5rem;
  color: white;
}

.add-ons ul, .tier ul {
  padding-left: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #666;
  font-size: 1rem;
  background-color: #222;
  color: white;
}

button {
  padding: 0.75rem;
  background-color: #00ffc8;
  color: #000;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
  background-color: #111;
  color: #aaa;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery img, .gallery video {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
