/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* Container */
.container, .container-large {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
 font-family: "Oswald", sans-serif;
}
/* Navigation */
.navbar {
  background: transparent;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: none;
}

.navbar .container {
  max-width: none;
  margin: 0 10px;
  width: 100%;
  padding: 0 32px;
}

.logo {
  display: inline-block;
  width: 250px;        /* Set the width to 100% of the parent container */
  height: 50px;       /* Let the height adjust automatically */
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #f9f9f9;
  max-width: 450px;
}


.nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ff7a00;
}

/* Footer Social Container */

.site-header
{
  margin-bottom: 30px;
}
/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 30px;
  border-radius: 30px;
  overflow: hidden;
  background: url('images/Hero.png') no-repeat center center fixed;
  background-size: cover;  
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .container h1 {
  font-size: 4rem;
  margin-bottom: 32px;
  color: #ff7a00;
  font-weight: 700;
}

.hero .container p {
  font-size: 1.2rem;
  max-width: 80%;
  color: #f9f9f9;
}

/* Button Styles */
.btn {
  padding: 12px 30px !important;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease !important;
  border-radius: 50px !important;
}

.btn-primary {
  background-color: #ff7a00 !important;
  border-color:  #ff7a00 !important;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e06600 !important;
}

.btn-secondary {
  background-color: transparent !important;
  border: #e06600 1px solid !important;
  color: #ff7a00 !important;
  padding: 10px 20px !important;
  transition: background 0.3s ease !important;
}

.btn-secondary:hover {
  background-color: rgba(224, 102, 0, 0.1) !important;
}

/* Episodes Section */
.episodes-section {
  padding: 36px 0;
  background-color: #f9f9f9;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.episodes-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.episode-card {
  background-color: #fff;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.episode-card:hover {
  transform: translateY(-5px);
}
.episode-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.episode-card .card-text {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.episode-card audio {
  width: 100%;
  margin-top: auto;
}
.episode-card img {
  width: 100%;
  display: block;
}


.episode-card h5 {
  margin-top: 0;
  font-size: 1.8rem;
}

.card-text {
  font-size: 1rem;
  margin: 10px 0; 
  color: #777;
}

.episode-card small {
  color: #777;
}

audio {
  width: 100%;
  margin-top: 10px;
}
.image-container {
  position: relative;
}

/* Podcasts CTA Section */
.podcasts-cta_section {
  padding: 36px 0;
  background-color: #fff;
}

.podcasts-cta-wrapper {
  text-align: center;
}

.podcasts-cta_section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.podcasts-cta_section p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Remove blue swoosh effect by omitting any ::before styling on .span-subscribe */
.span-subscribe {
  position: relative;
}

/* Podcasts CTA badges wrapper */
.podcasts-cta-badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.podcasts-button {
  display: inline-block;
  cursor: pointer;
}

.podcast-badge {
  width: 100%;
  height: 3rem;
}

/* Footer */
#social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 260px;
}
#social .col-auto
{
  background-color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  color: #333;
}