@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Sora:wght@100..800&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --bs-body-bg: #000;
  --bs-body-color: #fff;
  --bs-emphasis-color: #fff;
  --bs-secondary-color: rgba(255, 255, 255, 0.75);
  --bs-tertiary-color: rgba(255, 255, 255, 0.55);
  --bs-border-color: rgba(255, 255, 255, 0.2);
  --bs-link-color: #fff;
  --bs-link-hover-color: #d9d9d9;
}

body {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

/* Ensure common typography inherits white text */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
label,
small {
  color: inherit;
}

a {
  color: var(--bs-link-color);
}

a:hover,
a:focus {
  color: var(--bs-link-hover-color);
}
/* Navigation menu styling */
.navbar-nav {
  font-family: "Source Code Pro", monospace;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
  color: var(--bs-body-color) !important;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
  padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-link-hover-color) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
/* Podcast network icons styling */
.navbar-dark .nav-link i {
  color: #c41e3a; /* Dark red base */
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.navbar-dark .nav-link:hover i {
  transform: scale(1.2);
  color: #1db954; /* Spotify green on Spotify, etc. */
}

.navbar-dark .nav-link[title="Spotify"]:hover i {
  color: #1db954;
}

.navbar-dark .nav-link[title="Apple Podcasts"]:hover i {
  color: #fa243c;
}

.navbar-dark .nav-link[title="YouTube"]:hover i {
  color: #ff0000;
}

.navbar-dark .nav-link[title="SoundCloud"]:hover i {
  color: #ff8800;
}

.redFab {
  color: #d7082a;
  transition: color 0.3s ease;
}

/* Hero section with main image */
.hero-section {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-section img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
