/* ENSURE CSS RESET LOADS BEFORE SITE STYLING */
/* 
  SITE STYLING - YOUR 80S
  (C) SQBX MEDIA GROUP LTD, 2024
  
  Build: 2024-11-19_v3.0.1
*/



:root {
  --default-font: Montserrat, sans-serif;
}
h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 25px 0;
}
h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 15px 0;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px 0;
}
h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px 0;
}
p {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px 0;
  line-height: 1.25;
}
small {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

/* ACCESSIBILITY */
#skipnav {
  position: absolute;
  transform: translateY(-200%);
  padding: 20px;
  background-color: #3070ff;
  color: #000;
  left: 10px;
  top: 10px;
  font-weight: 700;
  transition: transform 275ms ease-in;
  z-index: 9001;
}
#skipnav:focus {
  transform: translateY(0);
  text-transform: uppercase;
}
a:focus-visible {
  outline: 3px solid orange;
  outline-offset: 5px;
  box-shadow: 0 0 0 3px #0077ff;
}

/* HEADER */
header {
  background-color: #050505;
  color: #ffffff;
  min-height: 75px;
}
.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header .logo-wrap {
  max-width: 225px;
  max-height: 75px;
}
header .logo-wrap img {
  width: 100%;
  height: 100%;
}
/* Default desktop navigation */
#main-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}
#close-menu {
  display: none;
}
#main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

#main-nav li {
  margin: 0;
  display: inline-block;
}

#main-nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#main-nav a:hover {
  background-color: white;
  color: black;
}

/* Hamburger button */
#hamburger-menu {
  display: none; /* Hidden for desktop */
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 3px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#hamburger-menu:hover {
  background-color: #fff;
  color: #000;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }

  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background-color: #050505;
    color: white;
    z-index: 1000;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
  }

  #main-nav.active {
    transform: translateX(0);
  }

  #main-nav ul {
    flex-direction: column;
    gap: 8px;
  }

  #main-nav li {
    display: block;
  }

  #main-nav #close-menu {
    background: none;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    display: block;
    padding: 10px 18px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  #main-nav #close-menu:hover {
    background-color: #fff;
    color: #000;
  }

  #hamburger-menu {
    display: block;
  }
}

/* PAGE CONTAINERS */
.contain {
  max-width: 1200px;
  margin: 0 auto;
}
.fullwidth {
  width: 100vw;
}

.content {
  z-index: 100;
}

.white {
  color: #fff;
}
.black {
  color: #000;
}

/* PADDING */
.pad-25 {
  padding: 25px;
}
.pad-x25 {
  padding: 0 25px;
}
.pad-75-25 {
  padding: 75px 25px;
}

/* SECTIONS */
#main-hero {
  min-height: 300px;
}

.button-row {
  display: flex;
  gap: 10px;
}
.button {
  display: inline-block;
  transition: background-color 100ms linear, color 100ms linear;
}
.button:hover {
  cursor: pointer;
}
.button.large {
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 4px;
}
.button.medium {
  padding: 6px 12px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
}
.button.blue {
  background-color: #2030f0;
  color: #fff;
}
.button.hover-black:hover {
  background-color: #050505;
  color: #fff;
}

/* FOOTER */
footer {
  background-color: #202020;
  color: #ffffff;
  min-height: 200px;
}
.icon-list ul {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the left */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px; /* Space between list items */
}

footer nav ul li {
  margin: 5px 0;
}

.icon-list li {
  display: flex;
  align-items: center; /* Align icon and text label to the top */
  gap: 10px; /* Space between icon and text */
}
.icon-list a,
.icon-list span {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.5;
}

.icon-list .address span.address {
  line-height: 1.2;
  font-size: 14px;
  margin: 8px 0;
}

.icon-list a:hover {
  color: #007bff;
}

.icon-list i {
  font-size: 1.25em;
  min-width: 20px; /* Ensures icons have the same width for alignment */
}

.icon-list .address span {
  display: inline-block;
  line-height: 1.4; /* Controls line height for address text */
  margin-top: 0px; /* Aligns address label text with other labels */
  white-space: nowrap; /* Keeps address lines from breaking unnecessarily */
}

/* COLUMNS */
.columns-3 {
  display: flex;
  gap: 20px;
}
.columns-3 section {
  flex: 1;
}

/* SQBX BANNER */
.footer-copyright {
  background-color: #060606;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  min-height: 200px;
}
.footer-copyright img {
  max-width: 200px;
}
.copyright-notice {
  color: #707070;
  padding: 10px 0 0 0;
  margin: 0;
  font-size: 14px;
}
.copyright-notice a {
  text-decoration: none;
  border-bottom: 1px dotted;
}
.align-center {
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
}

hr {
  margin: 15px 0;
}

.hero {
  position: relative;
  overflow: hidden; /* Hides any overflow from .section-bg */
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Places .section-bg behind the main content */
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area */
  object-position: center; /* Centers the image */
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Darkening effect */
  backdrop-filter: blur(8px); /* Blurring effect */
  z-index: 1; /* Ensures overlay is above image but below content */
}

.margin-t-50 {
  margin-top: 50px;
}
.margin-t-30 {
  margin-top: 30px;
}
.margin-t-20 {
  margin-top: 20px;
}

.onair {
  /* display: flex -- JS changes this */
  display: none;
  margin: 0 0 10px 0;
  align-items: center;
}
@-webkit-keyframes livedot {
  0% {
    opacity: 1;
    background-color: #ff0000;
  }
  10% {
    opacity: 1;
    background-color: #ffa8a8;
  }
  20% {
    opacity: 1;
    background-color: #ffa8a8;
  }
  30% {
    opacity: 1;
    background-color: #ff0000;
  }
  100% {
    opacity: 1;
    background-color: #ff0000;
  }
}
.onair .dot {
  height: 25px;
  width: 25px;
  background-color: #ff0000;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: livedot 8s infinite; /* Safari 4+ */
  -moz-animation: livedot 8s infinite; /* Fx 5+ */
  -o-animation: livedot 8s infinite; /* Opera 12+ */
  animation: livedot 8s infinite; /* IE 10+, Fx 29+ */
  animation-direction: forwards; /* or: normal */
  animation-timing-function: ease-out;
  animation-delay: 5s;
}
.live-now-msg {
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  color: #ffffffaa;
}

.episodes-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 columns */
  gap: 25px; /* Space between cards */
  padding: 0px;
}

.episode-card {
  text-align: center;
  padding: 12px;
  border-radius: 4px;
}
a .episode-card:hover {
  background-color: #e0e0e0;
  transition: background-color 100ms linear;
}

.img-wrap img {
  width: 50%;
  height: auto;
  border-radius: 2px;
  margin: 0 auto;
}

span.ep-num {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  font-size: 20px;
  color: #333;
}
span.ep-num:before {
  content: "Episode ";
}
span.ep-date {
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  color: #707070;
}
span.ep-title-short {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
span.ep-desc-short {
  display: block;
  margin-top: 8px;
  color: #333;
}

.columns-2-70-30 {
  display: flex;
  gap: 25px;
}
.break-s {
  padding: 20px 0 0 0;
}
.break-m {
  padding: 30px 0 0 0;
}
ul.normal-list {
  list-style-type: disc;
  list-style-position: inside;
  margin: 5px 0 20px 0;
  font-size: 18px;
  color: black;
}
p.smaller {
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 1099px) {
  .episode-card .img-wrap img {
    width: 100%;
  }
}

a.stylelink {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .episodes-list {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
  }
  .episode-card .img-wrap img {
    max-width: 75%;
  }
  .columns-3 {
    flex-direction: column;
    gap: 20px;
  }
  .columns-3 section {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .episodes-list {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .columns-2-70-30 {
    flex-direction: column;
  }
  .columns-2-70-30 .col {
    width: 100%;
  }
  .columns-2-70-30 img {
    margin-top: 20px;
  }
  .mob-small {
    max-width: 60%;
    margin: 0 auto;
  }
}