/*
Theme Name: FSM Theme
Template: astra
Description: A child theme for Astra, customized for Free Speech Media Corp.
Version: 1.0
*/

/*--------------------------------------------------------------
# Global & Base Styles
--------------------------------------------------------------*/
html, body {
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a) !important;
    margin: 0;
    padding: 0;
    min-height: 100dvh
    min-height: 100vh;
    width: 100%;
    background-repeat: no-repeat; /* Prevent the gradient from repeating */
    background-size: cover; /* Stretch it to cover the entire element */
    background-position: center center; /* Center it (optional but often helpful) */
}

.site {
    background: linear-gradient(to bottom left, #494949 0%, #302f2f 50%, #1a1a1a 100%) !important;
    min-height: 100vh;
    min-height: 100svh;
    background-repeat: no-repeat;
}


/*--------------------------------------------------------------
# Site Header & Navigation
--------------------------------------------------------------*/
.site-header {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom left, #494949 0%, #302f2f 50%, #1a1a1a 100%);
    height: auto;
    z-index: 1000;
    border-bottom: 2px solid #444;
    padding: calc(env(safe-area-inset-top) + 1rem) 1rem 1rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.branding {
    text-align: left;
}

.logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.tagline {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-list li {
    position: relative;
}

.main-nav .nav-list li a {
    font-size: 1.6rem;
    color: rgba(255, 235, 59, 0.7);
    text-shadow: 0 0 1px #a38300, 1px 1px 2px #222, -1px -1px 1px #fff9c4;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav .nav-list li a:hover {
    color: #fff59d;
    text-shadow: 0 0 2px #ffeb3b, 1px 1px 2px #111;
}

/* Sub-menu */
.main-nav .nav-list li .sub-menu {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.main-nav .nav-list li:hover > .sub-menu {
    display: block;
}

.main-nav .nav-list li .sub-menu li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 235, 59, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.main-nav .nav-list li .sub-menu li a:hover {
    background-color: #333;
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom left, #24337a, #494949) !important;
    padding: 4rem 2rem;
    text-align: center;
}
/*--------------------------------------------------------------
# Front‑Page Main Video Player
--------------------------------------------------------------*/
/* — Featured Title on Front‑Page — */
#featured-video-title-front {
  font-size: 3.5rem;
  color: #c5ac36;
  margin: 20px 0 10px;
  text-shadow:
    0 0 2px #c4ac39,
    0 0 5px #c4ac39,
    1px 1px 3px rgba(0,0,0,0.5);
}

/* — “More Info & Episodes” Button — */
#featured-more-info {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffd700;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#featured-more-info:hover {
  background-color: #ffe35c;
  transform: translateY(-2px);
}

.main-video {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: visible;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 33px;
  
  /* optional inner padding, adjust if you like: */
}

.video-container iframe {
  width: 100%;
  height: 104%;
  border-radius: 8px;       /* matches the frame’s corners */
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  
}

/* the decorative “TV frame” overlay */
.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%; /* Enough to show the full image */
  background-image: url('http://freespeechmedia.live/wp-content/uploads/2025/07/tv-png-lcd-screen-tv-png-1287-1711163700.png');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* title styling */
.main-video h1 {
  font-size: 3rem;
  color: #ffd700;
  text-shadow:
    0 0 1.25px #c4ac39,
    0 0 2.5px  #c4ac39,
    0 0 5px    #c4ac39,
    2px 2px 1px rgba(0,0,0,0.125);
  margin: -5px 0 20px;
}
/* 2) Basic spacing for the text below */
.video-text {
  text-align: center;
  margin: 20px auto 40px;
  max-width: 800px;
}

.now-watching-label {
  font-size: 1.4rem;
  color: #fff9c4;
  text-shadow: 0 0 2px #000, 0 0 5px #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

#featured-video-title-front {
  font-size: 3.5rem;
  color: #ffd700;
  text-shadow:
    0 0 2px #c4ac39,
    0 0 5px #c4ac39,
    1px 1px 3px rgba(0,0,0,0.5);
  margin: 0.5rem 0 1rem;
}

#featured-more-info {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffd700;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

#featured-more-info:hover {
  background-color: #ffe35c;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Main Content Area & Page Title
--------------------------------------------------------------*/
.main-content {
    display: flex;
    flex-direction: column;
    background: none;
    background: linear-gradient(to bottom right, #24337a, #000000) !important;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: visible;
}

.container > h1 {
    font-size: 3rem;
    padding-left: 20px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 2px #c4ac39, 1px 1px 4px rgba(0,0,0,0.5);
}

/*--------------------------------------------------------------
# Featured Episode Section
--------------------------------------------------------------*/
.featured-episode {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: flex-start;
    align-items: flex-start;
}

.show-featured-video {
    flex: 2 1 60%;
    max-width: 640px;
    padding: 0 20px;
}

.show-featured-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.show-featured-info {
    flex: 1 1 35%;
    max-width: 400px;
    padding: 0 10px;
}

.show-featured-info h2 {
    font-size: 2rem;
    margin-top: 0;
    color: #ffd700;
    text-shadow: 0 0 1px #c4ac39, 1px 1px 2px rgba(0,0,0,0.4);
}
.show-featured-info p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
  margin-top: 10px;
}
.video-overlay-text {
  position: absolute;
  top: 1050px; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px; /* or match your .main-content width */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 3;
  pointer-events: none; /* disables interaction except for child elements that override it */
}

.overlay-left {
  pointer-events: none;
  text-align: left;
  flex: 1 1 auto; /* allow it to shrink and wrap if needed */
  min-width: 0;   /* allows h1 text to wrap properly */
}

.overlay-left .now-playing-label {
  font-size: 3.5rem;
  margin: 0 0 0.2rem;
  color: #ffffff;
  text-shadow:
    0 0 1.25px #c4ac39,
    0 0 2.5px #c4ac39,
    0 0 5px #c4ac39,
    2px 2px 1px rgba(0, 0, 0, 0.125);
}

.overlay-left .episode-title-label {
  font-size: 2.5rem;
  margin: 0;
  color: #000000;
  text-shadow:
    0 0 1.25px #06155f,
    0 0 2.5px #24337a,
    0 0 5px #24337a,
    2px 2px 1px rgba(0, 0, 0, 0.125);
}

.overlay-button {
  pointer-events: auto;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background-color: #ffd700;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;        /* don’t let it shrink */
  white-space: nowrap;   /* keep it on one line */
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.overlay-button:hover {
  background-color: #ffe35c;
  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Episodes Grid
--------------------------------------------------------------*/
.video-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(200px, 1fr)) !important;
    gap: 15px;
    margin-top: 20px;
    max-width: calc(5 * 240px + 4 * 15px) !important;  /* 5 cards × 240px + 4 gaps of 15px */
}

.grid-item {
    background: linear-gradient(to bottom right, #6f7d7d, #1a1a1a);
    padding: 10px;
    border-radius: 5px;
}

.grid-item a {
    text-decoration: none;
}

.grid-item h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 10px 0 0;
    transition: color 0.3s;
}

.grid-item:hover h3 {
    color: #ffeb3b;
    text-shadow: 0 0 2px #fff;
}
/*–––– Recommended Videos Grid ––––*/
.recommended-videos {
  margin: 0 auto 30px;
  width: 100%;
  text-align: center;
  padding-top: 350px;
}
.recommended-videos h2 {
  font-size: 2.5rem;
  color: #ffd700;  /* ensure this is your gold */
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow:
    0 0 1.25px #c4ac39,
    0 0 2.5px #c4ac39,
    0 0 5px #c4ac39,
    2px 2px 1px rgba(0, 0, 0, 0.125);
}

.recommended-videos .video-grid {
  max-width: calc(5 * 240px + 4 * 15px); /* five 240px cards + gaps */
  margin: 20px auto 0;                   /* top 20px, auto L/R centering */
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 15px;
}
/*--------------------------------------------------------------
# Tag-Based Carousels
--------------------------------------------------------------*/
.tag_carousels,
.categories {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.tag,
.category {
    margin-bottom: 20px;
}

.tag h2,
.category h2 {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: left;
    margin-bottom: 10px;
    text-shadow: 0 0 1.25px #c4ac39, 0 0 2.5px #c4ac39, 0 0 5px #c4ac39, 2px 2px 1px rgba(0, 0, 0, 0.125);
    transition: color 0.3s ease, transform 0.3s ease;
}

/*--------------------------------------------------------------
# Carousels (Slick) Styles
--------------------------------------------------------------*/
.carousel {
  overflow: visible !important;
}
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    color: #ffd700 !important;
    transform: translateY(-50%);
    width: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(111, 125, 125, 0.6);
    border: none;
    border-radius: 0;
    font-size: 1.5rem !important;
    cursor: pointer;
    z-index: 1;
}

.slick-prev { left: 0; }
.slick-next { right: 0; }

.slick-prev i,
.slick-next i {
    font-size: 20px;
    line-height: 40px;
    color: #ffd700;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #002244;
}

.slick-track {
    display: flex !important;
    align-items: center;
}

.slick-slide {
    margin-right: 15px;
    width: auto;
}

/*--------------------------------------------------------------
# Thumbnail UI
--------------------------------------------------------------*/
.thumbnails {
    display: flex;
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    gap: 20px;
}

.thumbnail {
    width: 200px !important;
    flex: 0 0 200px;
    text-align: center;
    background: linear-gradient(to bottom right, #6f7d7d 0%, #4a4a4a 30%, #1a1a1a 80%);
    padding: 10px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border-radius: 5%;
}
.thumbnail:hover {
  transform: scale(1.02);
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.thumbnail h3 {
    font-size: 1rem;
    color: #ffffff;
    margin: 8px 0 4px;
}

/* Air date styling underneath each title */
.air-date {
  display: block;               /* ensures it sits on its own line */
  margin-top: 6px;              /* a little breathing room under the title */
  font-size: 0.65rem;           /* slightly smaller than the h3 */
  font-style: italic;           /* give it some character */
  font-family: 'Roboto', sans-serif; /* or whatever fits your brand */
  color: #ffffff;               /* gold, to match your theme */
  opacity: 0.8;                 /* subtle fade‑out effect */
  text-shadow:                  /* just a hint of glow */
    0 0 1px rgba(255,255,255,0.2),
    0 0 2px rgba(255,255,255,0.1);
}

/*--------------------------------------------------------------
# Shows Page
--------------------------------------------------------------*/
.shows-page .shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.show-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.show-card:hover {
  transform: translateY(-4px);
}

.show-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.show-info {
  padding: 1rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.show-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: white;
}

.show-tagline {
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
  color: white;
}


/*--------------------------------------------------------------
# Show Pages
--------------------------------------------------------------*/
/* Make show-header-outer match main.main-content width */

/* Apply the semi‑transparent stripe to the header area */
body.single-show .show-header-outer {
  background: rgba(0, 0, 0, 0.4) !important;
  padding: 0.5rem !important;
  margin-bottom: 1.25rem !important;
  box-sizing: border-box;
  overflow: visible !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}


/* Strip inner background so only outer shows the stripe */
body.single-show .show-header-outer .ast-container > .show-header {
  background: none !important;
  padding: 0 !important;
}
/* 2) Re‑center and constrain the inner container */

/* Rest of your flex/grid styling remains the same */


/* 3) Flex‑row for logo, tagline, buttons */
body.single-show .show-header-content {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-x: visible !important;
  gap: 1rem !important;
  max-width: 1200px !important;        /* your desired content width */
  margin: 0 auto !important;           /* center it within the stripe */
  padding: 0 1rem !important;   
}

/* 4) Logo & tagline sizing */
body.single-show .show-logo {
  max-height: 175px !important;
  width: auto !important;
}
body.single-show .show-tagline {
  flex: 1 1 auto !important;
  font-size: 1.5rem !important;
  color: #fff !important;
  margin: 0 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

/* 5) Subscribe buttons grid */
body.single-show .show-subscribe-icons {
  display: grid !important;
  grid-template-columns: auto auto !important;
  grid-template-rows: auto auto !important;
  gap: 0.5rem !important;
  justify-items: center !important;
  justify-content: center !important;
}

/* 6) Button styling */
body.single-show .subscribe-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  font-size: 0.85rem !important;
  color: #fff !important;
  background: rgba(0,0,0,0.5) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: background .2s ease !important;
}
body.single-show .subscribe-btn:hover {
  background: rgba(0,0,0,0.7) !important;
}

/* 7) Icon inside button */
body.single-show .btn-icon {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
}

/* 8) RUMBLE spans two columns */
body.single-show .subscribe-rumble {
  grid-column: 1 / span 2 !important;
  justify-self: center !important;
  padding: 0.5rem 1rem !important;
  width: 100% !important;
  max-width: 200px !important;
  white-space: nowrap !important;
}

/* 9) YT & X positioning */
body.single-show .subscribe-youtube {
  grid-column: 1 !important;
  justify-self: start !important;
  padding: 0.4rem 0.8rem !important;
}
body.single-show .subscribe-twitter {
  grid-column: 2 !important;
  justify-self: end !important;
  padding: 0.4rem 0.8rem !important;
}
body.single-show .subscribe-btn.subscribe-rumble .btn-icon {
  width: 140px !important;
  height: 40px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

/* === About Page Styles === */
.about-page {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  color: #fff; /* or your primary text color */
}

.about-page h1,
.about-page h2 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 1rem;
  color: #ffd700; /* gold accent */
}

.about-page .mission {
  text-align: center;
  margin-bottom: 3rem;
}

.about-page .mission .tagline {
  font-size: 1.25rem;
  font-family: 'Roboto', sans-serif;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.about-page hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 3rem 0;
}

.about-page .our-story p {
  margin-bottom: 1.25rem;
}

.about-page .our-story .highlight {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.about-page .what-we-do ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.about-page .what-we-do li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-page .what-we-do li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd700;
}

.about-page .what-we-do a {
  color: #ffd700;
  text-decoration: none;
}

.about-page .what-we-do a:hover {
  text-decoration: underline;
}

.about-page .get-involved .cta-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-page .get-involved .cta-list li {
  margin-bottom: 0.75rem;
}

.about-page .get-involved .cta-list a {
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.about-page .get-involved .cta-list a:hover {
  text-decoration: underline;
}
/* ─── Donate Page: Tab Layout & Style ─── */
.donate-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Roboto', sans-serif;
}

.donate-header {
  text-align: center;
  margin-bottom: 2rem;
}

.donation-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s;
}

.tab-button:hover {
  background: #555;
}

.tab-button.active {
  background: #ffd700;
  color: #1a1a1a;
}

.donation-tab-content .tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.donation-tab-content .tab-content.active {
  display: block;
}
/* Add at the very end of your style.css */

.donate-page .donation-tab-content .tab-content {
  display: none !important;
}
.donate-page .donation-tab-content .tab-content.active {
  display: block !important;
}
/* ─── Donation QR Codes Row ─── */
.donation-qr-codes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.donation-qr-codes .qr-item {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.donation-qr-codes .qr-item img {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.donation-qr-codes .qr-item span {
  display: block;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 480px) {
  .donation-qr-codes .qr-item img {
    width: 120px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive tweak */
@media (max-width: 480px) {
  .donation-tabs {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background: #111;
    color: #ccc;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid #444;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
# Footer Column Lists (vertical, left‑aligned)
--------------------------------------------------------------*/
.footer-columns .footer-menu {
  display: block !important;       /* override the flex layout */
  padding: 0;
  margin: 0;
}

.footer-columns .footer-menu li {
  margin: 6px 0;                   /* vertical spacing */
}

.footer-columns .footer-menu li a {
  display: block;
  text-align: left;                /* left‑align text */
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-columns .footer-menu li a:hover {
  color: #ffd700;
}

.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.footer-column {
    flex: 0 0 200px;
    max-width: 200px;
    min-width: 180px;
    text-align: left;
}

.footer-column h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Footer Bottom Utility Menu (horizontal, centered)
--------------------------------------------------------------*/
.footer-bottom .footer-menu {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-bottom .footer-menu li {
  margin: 0 10px;                  /* horizontal spacing */
}

.footer-bottom .footer-menu li a {
  color: #ccc;
}

.footer-bottom .footer-menu li a:hover {
  color: #ffd700;
}


.footer-bottom,
.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.8rem;
    color: #777;
}
/* — Center the episode grid on single‑show.php — */
.single-show .video-grid {
  width: 100%;
  max-width: 1200px;    /* whatever total width works for you */
  margin: 0 auto;       /* center the container */
}
/* ───────────────────────────────
   Make Slick overflow & arrows work
───────────────────────────────── */
.carousel,
.carousel.thumbnails {
  overflow: visible !important;
}

.thumbnails {
  /* allow flex‑based carousel slides to overflow */
  overflow: visible !important;
}

/* ───────────────────────────────
   Ultimate Slick‑arrow override
───────────────────────────────── */
.carousel .slick-prev,
.carousel .slick-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  /* sizing & layout */
  width: 40px !important;
  height: 40px !important;
  line-height: 1 !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  /* visuals */
  background-color: rgba(111, 125, 125, 0.6) !important;
  color: #ffd700 !important;
  font-size: 2rem !important;
  border: none !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px rgba(7, 7, 7, 0.6) !important;
  cursor: pointer !important;
  z-index: 999 !important;
}

/* Position the arrows outside the track */
.carousel .slick-prev { left: -20px !important; }
.carousel .slick-next { right: -20px !important; }

/* Hide default pseudo‑elements from slick‑theme.css, use our own glyphs */
.carousel .slick-prev:before,
.carousel .slick-next:before {
  content: '' !important;
}

/* If you’re using < and > inside your <button>… */
.carousel .slick-prev i,
.carousel .slick-next i {
  display: inline-block !important;
  font-size: 1.5rem !important;
  color: #1a1a1a !important;  /* dark glyph on gold button */
}

/* Optional hover effect */
.carousel .slick-prev:hover,
.carousel .slick-next:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8) !important;
}

/* Hide arrows at ends */
.carousel .slick-prev.slick-disabled,
.carousel .slick-next.slick-disabled {
  display: none !important;
}
.shows-carousel.carousel.shows-slick {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
}
.shows-carousel.carousel.shows-slick h2 {
  font-size: 2.5rem;
  color: #ffd700;  /* ensure this is your gold */
  transition: color 0.3s ease, transform 0.3s ease;
  text-shadow:
    0 0 1.25px #c4ac39,
    0 0 2.5px #c4ac39,
    0 0 5px #c4ac39,
    2px 2px 1px rgba(0, 0, 0, 0.125);
}
.shows-track {
  gap: 1rem;
}

.show-card {
  flex: 0 0 220px; /* sets card width */
  max-width: 220px;
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.show-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.show-title {
  font-size: 0.5rem;
  margin: 0;
}

.show-tagline {
  font-size: 0.9rem;
  opacity: 0.85;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .hero { padding: 2rem 1rem; }
    .hero h1 { font-size: 1.8rem; }
    .carousel { flex-direction: column; }
    .main-content { padding-top: 10px !important; }
    .featured-episode { flex-direction: column; align-items: center; }
    .show-featured-video, .show-featured-info { max-width: 100%; text-align: center; }
    .footer-columns { flex-direction: column; align-items: center; text-align: center; }
    .footer-column { width: 100%; max-width: 300px; margin-bottom: 20px; }
    .footer-menu li { display: block; margin: 6px 0; }
}

@media (max-width: 600px) {
    .right-side { display: block !important; }
}

@media (max-width: 480px) {
    .main-content { padding-top: 5px !important; }
    /*————————————
  Mobile & Tablet Tweaks
————————————*/
  /* 1. Header: make it auto‑height and shrink elements */
  .site-header {
    height: auto !important;
    padding: calc(env(safe-area-inset-top) + 0.5rem) 1rem 0.5rem;
  }
  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  /* Keep logo + tagline grouped together */
  .site-branding {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .logo {
    height: 100px !important;
  }
  .tagline {
    font-size: 2rem !important;
  }
  .main-nav {
  overflow-x: visible !important;    /* never scroll horizontally */
}
  .main-nav .nav-list {
  flex-direction: column !important;
  gap: 0.25rem !important;        /* tighter vertical spacing */
}
  .main-nav .nav-list li {
    position: relative !important;
    width: 100% !important;
  }
  .main-nav .nav-list li a {
    display: block !important;
    width: 100% !important;
    padding: 0.25rem 0 !important;  /* less top/bottom padding */
    line-height: 1.2 !important;    /* tighter lines */
  }
    .main-nav .nav-list li .sub-menu {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    right: 100% !important;
    left: auto !important;
    min-width: 120px !important;     /* tweak as needed */
    max-width: 200px !important;     /* optional cap */
    white-space: normal !important;
    background: inherit !important;
    box-shadow: none !important;
    padding: 0.5rem !important;
    z-index: 999 !important;
  }

  /* Show when parent is hovered or tapped */
  .main-nav .nav-list li:hover > .sub-menu,
  .main-nav .nav-list li:focus-within > .sub-menu {
    display: block !important;
  }
  
  /* 2. Main video “TV frame”: shrink and center */
  .video-wrapper {
    padding-top: 68.25%; /* keep 16:9 */
  }
  
    .video-container {
      position: absolute;          /* sit it on top of the .video-wrapper */
      top: 0; left: 0; right: 0; bottom: 16px;
      display: flex !important;    /* enable flex centering */
      align-items: center;         /* vertical center */
      justify-content: center;     /* horizontal center */
      padding: 16px !important;    /* keep your frame padding */
    }
    
    .video-container iframe,
    .video-container video {
      width: 100% !important;
      height: 98% !important;     /* maintain aspect ratio */
      max-height: 100% !important; /* prevent overflow */
      transform: translateY(-5%);
    }
  .frame {
    height: 100% !important;
    background-size: contain !important;
  }

  /* 3. Now‑Playing Overlay: move below video, static flow */
  .video-overlay-text {
    position: static !important;
    transform: none !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .overlay-left .now-playing-label {
    font-size: 1.8rem !important;
  }
  .overlay-left .episode-title-label {
    font-size: 1.4rem !important;
  }
  .overlay-button {
    margin-top: 0.5rem;
  }
    .recommended-videos {
      margin: 0 auto 30px;
      width: 100%;
      text-align: center;
      padding-top: 50px;
    }
  /* 4. Grids: switch to auto‑fill so they wrap and avoid overflow */
  .video-grid,
  .recommended-videos .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    max-width: 100% !important;
  }

  /* 5. Super‑small phones: stack header fully */
  .site-header {
    padding: 0.25rem;
  }
  .logo {
    height: 50px !important;
  }
  .tagline {
    font-size: 0.5rem !important;
  }
  .main-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav .nav-list li a {
    font-size: 1rem !important;
  }

  /* 6. Single‑Show Page header: allow tagline to wrap */
  .show-header-content {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .single-show .show-logo {
    order: 1 !important;
  }
  .show-tagline {
    order: 2 !important;
    font-size: 1rem !important;
    white-space: normal !important;
    width: 100% !important;
  }
   .single-show .show-social-links {
    order: 3 !important;
    display: flex !important;
    gap: 1rem !important;
  }

  /* 7. Video grid on single‑show: one column */
  .single-show .video-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
  }
}
.recommended-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*--------------------------------------------------------------
  #PWA Styling
--------------------------------------------------------------*/
body.pwa-mode {
  padding-top: env(safe-area-inset-top);
  padding-bottom: 80px;
}
.pwa-header {
  padding-top: calc(env(safe-area-inset-top) + 1rem);
  padding: calc(env(safe-area-inset-top) + 1rem) 1rem 1rem;
  background: linear-gradient(to bottom left, #494949 0%, #302f2f 50%, #1a1a1a 100%);
  background-color: black;
  border-bottom: 2px solid #444;
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
}

.pwa-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pwa-header .logo {
  width: 75%;
  height: auto;
  
}

.pwa-header .tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffd700;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.pwa-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000000;
  border-top: 1px solid #444;
  padding: 0.5rem 0 calc(env(safe-area-inset-bottom) + 0.5rem);
  z-index: 1000;
}

.pwa-footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 1rem;
}

.pwa-nav-item {
  flex: 1;
  text-align: center;
  background-color: #6f7d7d;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  margin: 0 0.25rem;
  border: 1px solid #c5ac2f;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pwa-nav-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.pwa-nav-item:active,
.pwa-nav-item:hover {
  color: #ffd700;
}
body.pwa-mode .site-header,
body.pwa-mode .site-footer {
  display: none !important;
}



