@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: black;
  color: white;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Text", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFEED6;
}

h1 {
  font-size: 60px;
  margin-bottom: 35px;
  font-weight: 700;
}

h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 400;
}

p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 25px;
}

main {
  height: 100vh;
  width: 100%;
  scroll-behavior: smooth;
  position: relative;
}
main video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
main::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.35;
  z-index: 5;
}

.section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  position: relative;
  z-index: 10;
}
.section.active {
  opacity: 1;
  transition-delay: 0.2s;
}

.section-1 .banner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.section-1 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.section-1 .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.section-1 .down-arrow {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: #FFEED6;
  cursor: pointer;
  opacity: 0.9;
  animation: bounce 0.6s ease-in-out infinite;
  animation-iteration-count: infinite;
  animation-play-state: paused;
  z-index: 1000;
}
.section-1 .down-arrow:hover {
  opacity: 1;
}
@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.section-2 .content {
  max-width: 800px;
  z-index: 10;
  position: relative;
}
.section-2 .content h2 {
  font-size: 24px;
}

.section-3 .wrap {
  display: flex;
}
.section-3 .wrap .band-img img {
  max-width: 440px;
  box-shadow: 0px 0px 40px -15px #FFEED6;
  border-radius: 50%;
}
.section-3 .wrap .links {
  padding-left: 150px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.section-3 .wrap .links h2 {
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 10px;
}
.section-3 .wrap .links .social-icons {
  margin-top: 15px;
  margin-bottom: 75px;
}
.section-3 .wrap .links .social-icons a {
  display: inline-block;
  margin-right: 12px;
  position: relative;
  bottom: 0;
  transition: all ease-in 0.1s;
}
.section-3 .wrap .links .social-icons a:last-of-type {
  margin-right: 0;
}
.section-3 .wrap .links .social-icons a img {
  height: 25px;
  max-width: 35px;
}
.section-3 .wrap .links .social-icons a:hover {
  bottom: 2px;
}
.section-3 .wrap .links .mail {
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.section-3 .wrap .links .mail img {
  width: 30px;
  margin-right: 12px;
  position: relative;
  top: 3px;
}
.section-3 .wrap .links .mail:hover {
  color: #FFEED6;
}

.nav-arrows {
  position: fixed;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 100;
}
.nav-arrows button {
  background: none;
  border: none;
  color: #FFEED6;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}
.nav-arrows button:first-of-type {
  bottom: 0;
}
.nav-arrows button:first-of-type:hover {
  bottom: 3px;
}
.nav-arrows button:last-of-type {
  top: 0;
}
.nav-arrows button:last-of-type:hover {
  top: 3px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 15px 25px;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 2000;
  border-top: 1px solid #FFEED6;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner p a {
  color: #FFEED6;
  text-decoration: underline;
}
.cookie-banner .actions {
  display: flex;
  gap: 10px;
}
.cookie-banner .actions button {
  background: #FFEED6;
  border: none;
  color: black;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-banner .actions button:hover {
  opacity: 0.85;
}
.cookie-banner .actions button:last-of-type {
  background: transparent;
  border: 1px solid #FFEED6;
  color: #FFEED6;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  justify-content: center;
  align-items: center;
}
.cookie-modal .cookie-modal-content {
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  border: 1px solid #FFEED6;
}
.cookie-modal .cookie-modal-content h2 {
  margin-bottom: 15px;
  color: #FFEED6;
}
.cookie-modal .cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}
.cookie-modal .cookie-modal-content label input {
  transform: scale(1.2);
}
.cookie-modal .cookie-modal-content .modal-actions {
  text-align: right;
}
.cookie-modal .cookie-modal-content .modal-actions button {
  background: #FFEED6;
  border: none;
  color: black;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-modal .cookie-modal-content .modal-actions button:hover {
  opacity: 0.85;
}

@media (max-width: 1200px) {
  body {
    overflow: auto;
  }
  h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
  }
  .section {
    height: auto;
    min-height: 100vh;
    opacity: 1;
    transition: none;
  }
  .section-1 {
    height: 100vh;
  }
  .section-2, .section-3 {
    padding: 60px 20px;
  }
  .section-2 {
    padding-bottom: 0px;
  }
  .section-3 .wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-3 .wrap .band-img {
    margin-bottom: 40px;
  }
  .section-3 .wrap .band-img img {
    max-width: 280px;
  }
  .section-3 .wrap .links {
    padding: 0;
    align-items: center;
  }
  .section-3 .wrap .links h2 {
    font-size: 24px;
  }
  .section-3 .wrap .links .social-icons {
    margin-bottom: 40px;
  }
  .section-3 .wrap .links .social-icons a img {
    height: 22px;
  }
  .section-3 .wrap .links .mail {
    font-size: 18px;
  }
  .nav-arrows {
    display: none !important;
  }
  .section-1 .down-arrow {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */