/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #050505;
  background-image: url("images/mogorva_background.png");
  background-repeat: repeat;
  background-position: top left;
  color: #d1d1d1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  padding-top: 30px;
}

.header-inner {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo {
  width: 198px;
  height: auto;
  transition: filter 0.2s ease;
}

.logo:hover {
  filter: brightness(0) saturate(100%) invert(56%) sepia(0%) saturate(0%) hue-rotate(141deg) brightness(94%) contrast(90%);
}

/* =========================
   NAVIGATION
   ========================= */

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 69px;
  margin-top: 30px;
  margin-bottom: 0;
}

.main-nav a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #cea05e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #8f8f8f;
}

/* =========================
   GENERIC CONTENT
   ========================= */

.page {
  padding-bottom: 0;
}

.content-block {
  margin-bottom: 70px;
}

.section-title {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
}

.text-block {
  max-width: 1095px;
}

.text-block p {
  margin: 0 0 4px;
}

.text-block.compact p {
  margin-bottom: 0;
}

.language-label {
  margin: 10px 0 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.gold {
  color: #cea05e;
}

/* =========================
   LINKS
   ========================= */

.read-more,
.inline-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #cea05e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more {
  display: inline-block;
  margin-top: 4px;
}

.read-more:hover,
.inline-link:hover,
.streaming-links a:hover,
.footer-links a:hover,
.contact-email:hover,
.download-link:hover {
  color: #d1d1d1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* =========================
   HOME PAGE
   ========================= */

.hero-block {
  margin-bottom: 70px;
}

.hero-image {
  width: 100%;
}

.video-block {
  margin-bottom: 70px;
}

.video-block a {
  display: block;
  line-height: 0;
}

.video-card {
  width: 100%;
}

.bio-block {
  margin-bottom: 70px;
}

.licensing-block {
  margin-bottom: 70px;
}

/* =========================
   RADIO PAGE
   ========================= */

.radio-banner-block {
  margin-bottom: 48px;
}

.radio-banner {
  width: 100%;
}

.radio-intro-block {
  margin-bottom: 40px;
}

.radio-text {
  max-width: 900px;
}

.radio-download-block {
  margin-bottom: 40px;
}

.radio-download-line {
  font-weight: 700;
}

.download-link {
  color: #cea05e;
  text-decoration: none;
  font-weight: 700;
}

.radio-sep {
  margin: 0 6px;
}

.radio-meta {
  margin-top: 18px;
  margin-bottom: 40px;
}

.radio-meta p,
.radio-legal-text p {
  margin: 0;
}

.radio-legal-text {
  max-width: 900px;
}

.radio-contact-block {
  margin-bottom: 50px;
}

.radio-contact-text {
  font-weight: 700;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 2px 0 52px;
}

.footer-inner {
  text-align: center;
}

.footer-title {
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.6;
  color: #cea05e;
}

.footer-links a {
  color: #cea05e;
  text-decoration: none;
}

.footer-copy {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #d1d1d1;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    width: 190px;
  }

  .main-nav {
    gap: 36px;
  }

  .main-nav a {
    font-size: 30px;
  }

  .section-title,
  .footer-title,
  .project-title {
    font-size: 32px;
  }

  .song-artwork {
    width: 60%;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .site-header {
    padding-top: 28px;
  }

  .header-inner {
    min-height: auto;
  }

  .logo {
    width: 170px;
  }

  .main-nav {
    margin-top: 28px;
    flex-direction: column;
    gap: 28px;
  }

  .main-nav a {
    font-size: 28px;
  }

  .hero-block {
    margin-bottom: 56px;
  }

  .content-block,
  .video-block,
  .radio-intro-block,
  .radio-download-block,
  .radio-contact-block {
    margin-bottom: 56px;
  }

  .section-title,
  .footer-title,
  .project-title {
    font-size: 28px;
  }

  body,
  .language-label,
  .read-more,
  .inline-link,
  .footer-links,
  .footer-copy,
  .radio-contact-text,
  .radio-download-line {
    font-size: 18px;
  }

  .site-footer {
    padding-bottom: 46px;
  }
}