/*
Theme Name: 053 Radio Glass
Theme URI: https://053radio.nl/
Author: Audiostreamen
Description: Lightweight WordPress theme for 053 Radio with a sharper glass-style layout.
Version: 1.0.0
Text Domain: radio053-glass
*/

@font-face {
  font-family: "SkyRadio";
  src: url("assets/fonts/Sky-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SkyRadio";
  src: url("assets/fonts/Sky-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --r53-blue: #003b78;
  --r53-blue-bright: #0a67b2;
  --r53-blue-deep: #041a34;
  --r53-red: #e20b19;
  --r53-gold: #fbbf24;
  --r53-green: #36e289;
  --r53-paper: #f4f8fc;
  --r53-ink: #102033;
  --r53-muted: #5d6b7d;
  --r53-line: rgba(255, 255, 255, 0.24);
  --r53-dark-line: rgba(4, 26, 52, 0.18);
  --r53-glass: rgba(255, 255, 255, 0.2);
  --r53-glass-strong: rgba(4, 26, 52, 0.82);
  --r53-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--r53-blue-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--r53-ink);
  background:
    linear-gradient(180deg, rgba(246, 250, 253, 0.98), rgba(237, 246, 253, 0.98)),
    url("assets/img/zomer.png") center 12vh / min(920px, 100vw) auto no-repeat fixed;
  font-family: "SkyRadio", "Roboto", "Helvetica", "Arial", sans-serif;
  letter-spacing: 0;
}

body.r53-radio-tools-active {
  padding-bottom: 96px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 26, 52, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(6px);
}

.site-header__inner {
  width: min(100% - 32px, var(--r53-max));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.brand span {
  font-size: 1.03rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.site-nav a {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #f4f9ff;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(251, 191, 36, 0.32);
  outline-offset: 2px;
}

.site-nav__accent,
.button-primary {
  border: 1px solid var(--r53-gold);
  background: var(--r53-gold);
  color: var(--r53-blue-deep);
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.22);
}

.button-secondary {
  border: 1px solid rgba(251, 191, 36, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: var(--r53-gold);
}

.site-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--r53-gold);
  cursor: pointer;
}

.site-menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-main {
  min-height: calc(100vh - 190px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: var(--r53-hero-min-height, 560px);
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(226, 11, 25, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(0, 59, 120, 0.96) 0%, rgba(10, 103, 178, 0.94) 54%, rgba(4, 26, 52, 0.98) 100%),
    url("assets/img/zomer.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%),
    linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.08) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 9px;
  background: linear-gradient(90deg, var(--r53-red), var(--r53-gold), #1793e8);
}

.hero__inner {
  width: min(100% - 32px, var(--r53-max));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 82px) 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 34px;
}

.hero__copy {
  max-width: 650px;
}

.eyebrow,
.hero__copy > p:first-child {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--r53-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.eyebrow::before,
.hero__copy > p:first-child::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--r53-green);
  box-shadow: 0 0 0 6px rgba(54, 226, 137, 0.17);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 7.8vw, 6.6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  background: linear-gradient(135deg, #fff 58%, var(--r53-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead,
.hero__copy > p:not(.eyebrow):not(:first-child),
.page-hero p,
.entry-content p {
  color: rgba(231, 242, 255, 0.96);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.62;
}

.hero__lead,
.hero__copy > p:not(.eyebrow):not(:first-child) {
  max-width: 570px;
  margin: 22px 0 0;
}

.hero__tags,
.hero__copy ul {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.hero__tags span,
.hero__copy li {
  padding: 5px 12px;
  border: 1px solid rgba(251, 191, 36, 0.58);
  border-radius: 8px;
  background: rgba(4, 26, 52, 0.42);
  color: var(--r53-gold);
  font-size: 0.85rem;
  font-weight: 750;
  backdrop-filter: blur(3px);
}

.content-band {
  padding: 42px 0;
  background: rgba(244, 248, 252, 0.98);
}

.content-band__inner {
  width: min(100% - 32px, var(--r53-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.logo-panel,
.entry-shell,
.playlist-shell {
  border: 1px solid rgba(4, 26, 52, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(4, 26, 52, 0.1);
  backdrop-filter: blur(4px);
}

.logo-panel {
  padding: 20px;
}

.logo-panel img {
  width: min(100%, 360px);
  margin: 0 auto;
}

.station-copy h2,
.entry-content h2 {
  margin: 0;
  color: var(--r53-blue);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
}

.station-copy p,
.entry-content p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--r53-muted);
}

.quick-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links__link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 59, 120, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--r53-blue);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(4, 26, 52, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-links__link:hover,
.social-links__link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--r53-gold);
  color: var(--r53-blue-deep);
}

.social-links__link.is-whatsapp {
  border-color: rgba(54, 226, 137, 0.35);
  color: #0b7a46;
}

.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(226, 11, 25, 0.18), transparent 28%),
    linear-gradient(135deg, #003b78 0%, #075ba3 54%, #041a34 100%);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--r53-red), var(--r53-gold), #1793e8);
}

.page-hero__inner {
  width: min(100% - 32px, var(--r53-max));
  margin: 0 auto;
  padding: 58px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  background: linear-gradient(135deg, #fff 58%, var(--r53-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
}

.page-hero__logo {
  width: 136px;
  height: 136px;
  padding: 12px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.entry-band,
.playlist-band {
  padding: 34px 0 48px;
}

.entry-shell,
.playlist-shell {
  width: min(100% - 32px, var(--r53-max));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
}

.site-footer {
  padding: 22px 0 30px;
  background: var(--r53-blue-deep);
  color: #cfe3f8;
}

.site-footer__inner {
  width: min(100% - 32px, var(--r53-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer__social__link {
  color: #dceeff;
  font-size: 0.88rem;
}

.cmplz-cookiebanner .cmplz-title {
  font-size: 1.2rem !important;
  line-height: 1.35 !important;
}

.cmplz-cookiebanner .cmplz-message,
.cmplz-cookiebanner .cmplz-message p,
.cmplz-cookiebanner .cmplz-category,
.cmplz-cookiebanner .cmplz-category p,
.cmplz-cookiebanner .cmplz-category label,
.cmplz-cookiebanner .cmplz-links a {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.cmplz-cookiebanner .cmplz-btn {
  min-height: 48px !important;
  padding: 12px 18px !important;
  font-size: 1rem !important;
  line-height: 1.3 !important;
}

@media (max-width: 860px) {
  body.r53-radio-tools-active {
    padding-bottom: 148px;
  }

  .site-header__inner {
    width: min(100% - 20px, var(--r53-max));
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 64px;
  }

  .site-menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 10px;
    left: 10px;
    z-index: 80;
    width: auto;
    max-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(4, 26, 52, 0.98);
    box-shadow: 0 14px 34px rgba(2, 14, 30, 0.26);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(6px);
    transition: max-height 180ms ease, padding 180ms ease, opacity 160ms ease;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 260px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(226, 11, 25, 0.18), transparent 28%),
      linear-gradient(180deg, #003b78 0%, #075ba3 56%, #041a34 100%);
  }

  .hero__inner {
    width: min(100% - 20px, var(--r53-max));
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0 28px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 18vw, 4.3rem);
  }

  .hero__lead,
  .hero__copy > p:not(.eyebrow):not(:first-child) {
    margin-top: 15px;
    font-size: 0.99rem;
  }

  .hero__tags,
  .hero__copy ul {
    margin-top: 17px;
  }

  .content-band__inner,
  .page-hero__inner {
    width: min(100% - 20px, var(--r53-max));
    grid-template-columns: 1fr;
  }

  .content-band {
    padding: 28px 0;
  }

  .logo-panel {
    padding: 14px;
  }

  .logo-panel img {
    width: min(100%, 260px);
  }

  .quick-links .button {
    width: 100%;
  }

  .social-links__link {
    width: 100%;
  }

  .page-hero__inner {
    padding: 34px 0 30px;
    gap: 18px;
  }

  .page-hero__logo {
    width: 104px;
    height: 104px;
    justify-self: start;
  }

  .entry-shell,
  .playlist-shell {
    width: min(100% - 20px, var(--r53-max));
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .hero__tags span,
  .hero__copy li {
    width: 100%;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 17vw, 4rem);
  }
}
