/*
Theme Name: Radio Limburg Sjoske
Theme URI: https://radiolimburg.eu/
Author: Audiostreamen
Description: Compact one-page WordPress theme for the Radio Limburg / DJ Sjoske landing page.
Version: 1.0.0
Text Domain: radiolimburg-sjoske
*/

:root {
  --rl-bg: #050505;
  --rl-panel: rgba(0, 0, 0, 0.76);
  --rl-panel-strong: rgba(0, 0, 0, 0.9);
  --rl-text: #f6f1df;
  --rl-muted: #b7b2a5;
  --rl-accent: #f7b500;
  --rl-line: rgba(255, 255, 255, 0.12);
  --rl-max: 980px;
  --rl-header-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--rl-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--rl-text);
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.46)),
    url("assets/mixer-bg.jpg") center / cover fixed;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  background: #000;
  border-bottom: 1px solid var(--rl-line);
}

.site-header__inner {
  width: min(100% - 32px, var(--rl-header-max));
  min-height: 190px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #a7a7a7;
  font-size: clamp(2.6rem, 5vw, 4.05rem);
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-height: 74px;
}

.site-nav a {
  min-width: 102px;
  padding: 29px 16px;
  border-left: 1px solid var(--rl-line);
  color: #e8e8e8;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.site-nav a:last-child {
  border-right: 1px solid var(--rl-line);
}

.site-nav__accent,
.site-nav__cartwall {
  color: var(--rl-accent);
}

.site-main {
  min-height: calc(100vh - 280px);
  padding: 0 0 78px;
}

.hero {
  width: min(100% - 32px, var(--rl-max));
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.62)),
    url("assets/mixer-bg.jpg") center / cover;
}

.hero__copy {
  max-width: 860px;
  padding: clamp(46px, 7vw, 76px) clamp(32px, 7vw, 60px);
}

.hero h1 {
  margin: 0;
  color: var(--rl-accent);
  font-size: clamp(1.9rem, 3.6vw, 2.45rem);
  font-weight: 300;
  line-height: 1.42;
}

.hero h1 span {
  font-size: clamp(2.55rem, 4.8vw, 3.25rem);
}

.site-footer {
  background: #202020;
  border-top: 1px solid var(--rl-line);
}

.site-footer__inner {
  width: min(100% - 32px, var(--rl-max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #d6d6d6;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 14px;
  color: #fff;
  font-weight: 700;
}

.footer-social span {
  width: 20px;
  text-align: center;
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 0;
    padding: 36px 0 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav a {
    min-width: 0;
    flex: 1 1 50%;
    padding: 18px 14px;
    border-top: 1px solid var(--rl-line);
  }

  .hero {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  body {
    background-attachment: scroll;
  }

  .site-header__inner,
  .site-main,
  .site-footer__inner {
    width: min(100% - 24px, var(--rl-max));
  }

  .brand {
    font-size: clamp(2.5rem, 15vw, 4rem);
    white-space: normal;
  }

  .site-nav a {
    flex-basis: 100%;
    text-align: left;
  }

  .hero {
    width: min(100% - 24px, var(--rl-max));
    min-height: 540px;
  }

  .hero__copy {
    padding: 34px 24px;
  }

  .site-footer__inner {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
