/** GENERAL */
:root {
  --font-family: "Righteous", sans-serif;
  --content-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #000;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

/** TYPOGRAPHY */
h1 {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

h1 {
  font-size: clamp(1.80rem, calc(-31.182rem + 164.909vw), 92.50rem);
}

h2 {
  font-size: clamp(1.50rem, calc(0.852rem + 3.239vw), 3.28rem);
}

h3 {
  font-size: clamp(1.40rem, calc(1.000rem + 2.000vw), 2.50rem);
}

h4 {
  font-size: clamp(1.30rem, calc(1.091rem + 1.045vw), 1.88rem);
}

h5 {
  font-size: clamp(1.20rem, calc(1.091rem + 0.545vw), 1.50rem);
}

h6 {
  font-size: clamp(1.10rem, calc(1.000rem + 0.500vw), 1.38rem);
}

p {
  line-height: 1.5;
  margin-bottom: 0;
}

* ~ p {
  margin-top: 1rem;
}

/** SECTIONS */
section {
  padding: 6rem 2rem 6rem;
  background-color: var(--section-bg);
  color: var(--section-text-color);
}

section h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--section-heading-color);
}

.container {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/** HEADER */
header {
  text-align: center;
  padding: 1.5rem;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.site-logo img {
  display: block;
  width: 125px;
  margin-right: auto;
}

nav ul {
  display: flex;
  gap: 1ch;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.75rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .site-logo img {
    width: 75px;
  }

  nav ul {
    font-size: 1rem;
  }
}

/** INTRO*/
.intro {
  --section-bg: #fcb900;
  --section-heading-color: #fcb900;
  --section-text-color: #fff;
  position: relative;
  text-align: center;
  background-image: url(/images/slingers-band.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 60vw;
  background-position: center;
  display: grid;
  align-items: center;
  padding-top: 100px;
}

.intro::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #000, transparent);
}

.intro>* {
  position: relative;
}

.intro h2 {
  font-size: clamp(1.5rem, 5vw, 76px);
}

.intro p {
  font-size: clamp(1rem, 3vw, 30px);
}

@media screen and (max-width: 767px) {
  .intro {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .intro::before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  }
}

/** LIVE */
.live {
  --section-bg: #121258;
  --section-heading-color: #fff;
  --section-text-color: #fff;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin: 2rem auto;
}

.image-grid div {
  display: block;
  position: relative;
}

.image-grid img {
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/** ABOUT */
.about {
  --section-bg: #0d93db;
  --section-heading-color: #fff;
  --section-text-color: #fff;
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-content>* {
  flex: 1 1 calc(50% - 2rem);
}

.section-image img {
  border-radius: 4px;
}

.section-copy {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-content {
    flex-direction: column;
  }
}

/** VIDEO */
.video {
  --section-bg: #800000;
  --section-heading-color: #fff;
  --section-text-color: #fff;
  text-align: center;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin: 3rem 0;
  border-radius: 5px;
  border: 2px solid #000;
  box-shadow: 2cap 2cap 0 #0d93db;
}

/** LINKS */
.links {
  --section-bg: #fcb900;
  --section-heading-color: #000;
  --section-text-color: #000;
  text-align: center;
}

.link-list {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 1rem;
}

.link-list a {
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  display: block;
  padding: 1.5rem;
  text-decoration: none;
}

.link-list a:hover {
  box-shadow: 6px 6px 0 #000;
}

/** FOOTER */
footer {
  background-color: #161616;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

footer p {
  margin: 0;
}