* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

body {
  background: #111;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background: #000;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.25em;
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.85;
}

/* SECTIONS */
.section {
  padding: 6rem 10%;
  max-width: 1200px;
  margin: auto;
}

.section.dark {
  background: #000;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.section p {
  max-width: 700px;
  opacity: 0.9;
}

/* ANIMATIONS */
.animate {
  opacity: 0;
}

.animate.show {
  opacity: 1;
}

.animate .headline,
.animate .text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate .text {
  transition-delay: 0.2s;
}

.animate.show .headline,
.animate.show .text {
  opacity: 1;
  transform: translateY(0);
}
/* SECTION LAYOUT WITH MEDIA */
.section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Animate image together with text */
.animate.show .section-media img {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .section-inner {
    grid-template-columns: 1fr;
  }

  .section-media {
    margin-top: 2rem;
  }
}


/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* MOBILE FALLBACK */
@media (max-width: 768px) {
  .hero video {
  }

  .hero {
    background: url("shake-band-live-video-poster.jpg") center / cover no-repeat;
  }
}

.footer-links {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links span {
  margin: 0 0.5rem;
  opacity: 0.4;
}
.hero.small {
  height: 50vh;
}

.hero.small h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/raleway-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/raleway-v37-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
