body {

  margin: 0;

  font-family: 'Inter', sans-serif;

  color: #222;

  overflow-x: hidden;

  background:
    linear-gradient(
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.82)
    ),
    url('video/poster.png');

  background-size: cover;

  background-attachment: fixed;
}

h1, h2 {

  font-family: 'Playfair Display', serif;
}

/* =========================================
   VIDEO SPLASH
========================================= */

#videoSplash {

  position: fixed;

  inset: 0;

  width: 100vw;
  height: 100vh;

  background: black;

  z-index: 9999;

  overflow: hidden;

  display: flex;

  justify-content: center;
  align-items: center;

  transition: opacity 1s ease;
}

/* VIDEO */

#videoSplash video {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center center;
}

#skipBtn {

  position: absolute;

  bottom: 40px;
  right: 40px;

  padding: 12px 24px;

  border: none;

  border-radius: 40px;

  background:
    rgba(255,255,255,0.2);

  color: white;

  cursor: pointer;
}

/* =========================================
   MOBILE VIDEO FIX
========================================= */

@media (max-width: 768px) {

  #videoSplash {

    height: 100dvh;
  }

  #videoSplash video {

    height: 100dvh;
  }
}


/* MUSIC BUTTON */

.music-btn {

  position: fixed;

  top: 20px;
  right: 20px;

  z-index: 10001;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: none;

  background:
    rgba(0,0,0,0.45);

  color: white;

  display: flex;

  justify-content: center;
  align-items: center;

  font-size: 22px;

  cursor: pointer;
}

/* HERO */

.hero {

  height: 100vh;

  background:
    url('images/hero.jpg')
    center/cover fixed;
}

.hero-overlay {

  height: 100%;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(134,31,65,0.85)
    );

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  color: white;

  padding: 0 20px;
}

.hero h1 {

  font-size: clamp(3rem, 8vw, 6rem);
}

.accent {

  color: #E5751F;
}

/* BUTTONS */

.cta {

  margin-top: 20px;

  background:
    linear-gradient(
      135deg,
      #861F41,
      #CF4420
    );

  border: none;

  color: white;

  padding: 14px 30px;

  border-radius: 40px;

  font-size: 1rem;

  cursor: pointer;
}

/* SECTIONS */

.section {

  padding: 90px 20px;

  text-align: center;
}

.feature img {

  width: 100%;

  height: 70vh;

  object-fit: cover;
}

.card {

  background:
    rgba(255,255,255,0.85);

  padding: 30px;

  border-radius: 18px;

  max-width: 400px;

  margin: 0 auto 40px auto;
}

iframe {

  width: 90%;

  max-width: 900px;

  height: 350px;

  border: none;

  border-radius: 16px;

  margin-top: 40px;
}

.grid {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 20px;
}

.grid img {

  width: 280px;

  border-radius: 16px;
}

footer {

  background: #861F41;

  color: white;

  padding: 30px;

  text-align: center;
}

/* ANIMATIONS */

.fade-up {

  opacity: 0;

  transform: translateY(30px);

  animation:
    fadeUp 1s ease forwards;
}

.delay {
  animation-delay: 0.3s;
}

.delay2 {
  animation-delay: 0.6s;
}

.delay3 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {

  to {

    opacity: 1;

    transform: translateY(0);
  }
}