
body {
  margin: 0;
  background-color: #0A0908;
  color: #FEFAE0;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  position: relative;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  overflow: hidden;
}
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(10, 9, 8, 0.7);
  z-index: -1;
}

header {
  background: rgba(50, 45, 41, 0.9);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
}

nav a {
  color: #FEFAE0;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1.1rem;
}

nav a:hover {
  color: #D9D9D9;
}

section {
  padding: 3rem 2rem;
  max-width: 960px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.headline {
  font-size: 1.8rem;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-feed {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.instagram-feed iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border-radius: 16px;
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form select, form textarea {
  font-family: 'Space Grotesk', sans-serif;
  padding: 0.75rem;
  border: none;
  border-radius: 14px;
  background: #FEFAE0;
  color: #0A0908;
}

form button {
  background-color: #322D29;
  color: #FEFAE0;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #0D2B1D;
}

a {
  color: #FEFAE0;
}

.headline {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 3rem;
}
.highlight-box h2 {
  font-size: 3rem;
  font-family: 'Unbounded', sans-serif;
  margin: 0;
}
.highlight-box p {
  margin: 0;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #D9D9D9;
}

@media (max-width: 768px) {
  .video-background video {
    height: 100vh;
    object-fit: cover;
  }
}

header {
  background-color: #1E1E1E;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #FEFAE0;
  font-size: 0.9rem;
  opacity: 0.6;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #FEFAE0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    align-items: flex-end;
    background-color: #1E1E1E;
    position: absolute;
    right: 2rem;
    top: 70px;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    display: none;
  }

  nav.show {
    display: flex;
  }
}

section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
