@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%;
  min-height: 100svh;
  background-image: url("/images/astronauta_main.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  padding: 6rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section > * {
  width: 100%;
}

.hero-section img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

#historias {
  font-family: "Audiowide", cursive;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  font-size: 6vw;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
  text-shadow: 0px 5px 40px rgba(0, 0, 0, 0.5);
}

#podcast-digital {
  font-family: "Sora", sans-serif;
  text-align: center;
  font-size: 1.4vw;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.punto-rojo {
  width: 5px;
  height: 5px;
  color: #d7082a;
  position: relative;
  top: -5px;
}

.nav-fija {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

h2 {
  font-family: "Audiowide", cursive;
  z-index: 2.5;
  text-align: center;
  font-size: 2.5vw;
  font-weight: 700;
}

p {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5vw;
  padding: 0 20%;
  color: #d9d9d9;
  text-align: justify;
}

h6 {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5vw;
  padding: 0 20%;
  color: #d9d9d9;
  text-align: justify;
}

#footer {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5vw;
  text-align: center;
  padding: 20px 0;
  color: #a9a9a9;
  background-color: rgb(30, 30, 30);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-trigger {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.contact-trigger:hover,
.contact-trigger:focus {
  color: #ffffff;
  text-decoration: underline;
}

#contactModal .form-control {
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

#contactModal .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #d7082a;
  box-shadow: 0 0 0 0.2rem rgba(215, 8, 42, 0.25);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100svh;
    padding: 5.5rem 1rem 2rem;
  }
}
