body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #650000;
  color: #fff;
  overflow-x: hidden;
  background-image: url("img/cfrnodashopacity1.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
 /* background-size: 1720px 780px; */
 background-size: contain;
}

.cfr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #000;
  border-bottom: 1px solid rgba(255, 69, 0, 0.25);
}

.cfr-logo .cflame {
  filter: drop-shadow(0 0 6px #ff4500);
  transition: transform 0.2s ease;
}

.cfr-logo .cflame:hover {
  transform: scale(1.08);
}

.cfr-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cfr-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.cfr-nav a:hover {
  color: #ff6a00;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #f4c542;
  text-decoration: none;
  font-weight: 600;
}

.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}


.main-content {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 880px; /* or whatever fits nicely beside the 300px sidebar */
  margin-right: 2rem;
}

/* Player */
.player-sidebar {
  flex: 0 0 300px;
  max-width: 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  overflow: hidden;
  box-sizing: border-box;
}

/* ------------------------------
   HERO SECTION — Transparent Version
   ------------------------------ */

.cfr-hero {
  width: 100%;
  padding: 80px 20px;
  background: transparent; /* Transparent background */
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 69, 0, 0.25);
}

/* Floating ember particles */
.cfr-hero::before,
.cfr-hero::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.35), transparent 70%);
  border-radius: 50%;
  animation: heroEmber 8s linear infinite;
  pointer-events: none;
}

.cfr-hero::before {
  top: -40px;
  left: 20%;
  animation-delay: 0s;
}

.cfr-hero::after {
  bottom: -40px;
  right: 25%;
  animation-delay: 3s;
}

@keyframes heroEmber {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-60px) scale(0.8); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 520px; /* Increased size */
  max-width: 95%;
  filter: drop-shadow(0 0 14px rgba(255, 69, 0, 0.55));
  margin-bottom: 22px;
}

.hero-tagline {
  font-size: 24px;
  color: #ffb366;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg, #ff4500, #ff8c00);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 69, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.6);
}


/* OLD HERO SECTION
.hero {
  background: url('firey-facebook-background.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero-buttons a {
	color: #ffffff;
}

.hero-buttons a:hover{
	color: #000000;
}
 OlD HERO SECTION */

.bands-cta {
  text-align: center;
  margin-top: 24px;
}

.bands-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg, #ff4500, #ff8c00);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 69, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bands-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.6);
  color: #fff8e6; /* brighter warm white */
  text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.listen {
  background-color: #f4c542;
  color: #000;
}

.submit {
  background-color: #ff6f3c;
  color: #fff;
}

.featured-bands, .schedule, .on-demand, .community {
  padding: 2rem;
  background: #2a2a2a;
  margin-top: 1rem;
}

.footer {
  background: #111;
  padding: 2rem;
  text-align: center;
}

.footer-links, .social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.social-icons img {
	width: 50px;
	height: 50px;
	padding: 4px;
    transition: filter 0.2s ease;
	border-radius: 6px;
}

.social-icons img:hover{
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #ff4500);
}


.footer-links a {
  color: #F4C542;
  text-decoration: none;
  font-size: 0.9rem;
  /* #FF6F3C For Hover */
}

.tagline {
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .page-wrapper {
    display: block; /* override flex */
    width: 100%;
    padding: 1rem;
	background-size: contain;
	background-position: center top;
  }

  .main-content,
  .player-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .player-sidebar {
    position: static !important; /* fully disables sticky */
    top: auto;
    margin-top: 2rem;
    z-index: auto;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* adds spacing between buttons */
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin-top: 1rem;
  }

  nav a {
    font-size: 1rem;
    text-align: center;
  }

}

* {
  box-sizing: border-box;
}

/* Global link styling */
a {
  color: #F4C542;          /* golden yellow */
  text-decoration: none;   /* removes underline for a cleaner look */
  transition: color 0.3s ease; /* smooth hover effect */
}

a:hover {
  color: #FF6F3C;          /* fiery orange on hover */
  text-decoration: underline; /* optional: underline on hover for clarity */
}

/* Navigation links in the header */
header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #F4C542;              /* golden yellow */
  text-transform: uppercase;   /* bold, all caps */
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover effect with glow */
header nav a:hover {
  color: #FF6F3C;              /* fiery orange */
  text-shadow: 0 0 8px #FF6F3C, 0 0 12px #FF6F3C; /* glowing effect */
}

/* Optional underline animation */
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #FF6F3C;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}


/* BAND GRID INFO */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  width: 100%;
}



.band-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}


.band-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.band-card h3 {
  margin: 0.5rem 0;
  color: #F4C542;
}

/*.band-card {
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
*/

/* Overlay container */
.band-card::before {
  bottom: -100%;
  height: auto;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
}


/* Hover effects */
.band-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #FF6F3C;
}

.band-card:hover img {
  transform: scale(1.1);
}

.band-card:hover::before {
  bottom: 0; /* slides up into view */
}

.band-card:hover h3 {
  color: #FF6F3C;
}

/* TEMPLATE INFO */
.page-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #ddd;
  line-height: 1.6;
  background-color: #595959;
  background: rgba(89, 89, 89, 0.65);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 
    0 0 22px rgba(255, 90, 0, 0.28),
    0 0 8px rgba(255, 120, 0, 0.18);

}

.page-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffb366;
  text-align: center;
  letter-spacing: 0.05em;
}

.page-content p {
  font-size: 18px;
  margin-bottom: 18px;
}

.page-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #ff8c42;
  letter-spacing: 0.04em;
}

.page-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #ffb366;
}

.page-content ul {
  margin-left: 20px;
  margin-bottom: 18px;
}

.page-content li {
  margin-bottom: 6px;
}

/* for VOD on main */
.latest-vod-box {
  max-width: 260px;        /* keeps it small */
  margin-top: 10px;
}

.latest-vod-box img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 90, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-vod-box img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255, 120, 0, 0.35);
}

.latest-vod-title {
  margin-top: 6px;
  font-size: 14px;
  color: #fff;
}

/* Contact */
.page-content h2 {
  color: #ffb36b;
  text-shadow:
    0 0 6px rgba(255, 120, 40, 0.7),
    0 0 12px rgba(255, 80, 20, 0.5),
    0 0 18px rgba(255, 60, 10, 0.4);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
  animation: emberPulse 2.8s ease-in-out infinite;
}

@keyframes emberPulse {
  0% { text-shadow: 0 0 6px rgba(255,120,40,0.7); }
  50% { text-shadow: 0 0 12px rgba(255,80,20,0.9); }
  100% { text-shadow: 0 0 6px rgba(255,120,40,0.7); }
}

.ember-divider {
  width: 100%;
  height: 2px;
  margin: 1.5rem 0;
  background: linear-gradient(
    90deg,
    rgba(255, 120, 40, 0) 0%,
    rgba(255, 120, 40, 0.8) 50%,
    rgba(255, 120, 40, 0) 100%
  );
  box-shadow: 0 0 8px rgba(255, 120, 40, 0.6);
}

.ember-particles {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.ember-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffb36b 0%, #ff4500 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.8;
  animation: emberFloat linear infinite;
}

@keyframes emberFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-150vh) translateX(20px) scale(0.4);
    opacity: 0;
  }
}

/* Container anchored to bottom-right of Hero */
.cfr-firefox-ember {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    pointer-events: auto;
}

/* Link wrapper */
.cfr-firefox-ember a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    background: rgba(0,0,0,0.35);
    padding: 10px 16px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    transform: translateY(0);
}

/* Ember orb */
.cfr-ember-orb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb45e 0%, #ff5a00 75%, #8b2d00 100%);
    box-shadow: 0 0 12px #ff6a00, 0 0 22px rgba(255, 90, 0, 0.6);
	animation: cfrOrbPulse 1.9s infinite ease-in-out;
    flex-shrink: 0;
}

/* Hidden label until hover */
.cfr-ember-label {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.25s ease;
}

/* Hover expansion */
.cfr-firefox-ember a:hover {
    background: rgba(0,0,0,0.55);
    padding-right: 22px;
    box-shadow: 0 0 18px rgba(255, 90, 0, 0.4);
}

.cfr-firefox-ember a:hover .cfr-ember-label {
    opacity: 1;
    max-width: 260px;
}

/* Ember pulse animation */
@keyframes cfrOrbPulse {
    0% { transform: scale(1); box-shadow: 0 0 12px #ff6a00; }
    50% { transform: scale(1.15); box-shadow: 0 0 20px #ff7a00; }
    100% { transform: scale(1); box-shadow: 0 0 12px #ff6a00; }
}