/*Google Font*/
* {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h5, .nav-link {
  color: var(--primary-color);
}

.navbar .nav-link {
  font-size: 30px;
  padding: 10px, 5px;
  float:right;
}

:root{
  --primary-color: #b159db;
  --rbg-primary-color: rgb(177, 89, 219,0.6);
  --primary-hover-color: #8844a8;
  --card-image-overlay: linear-gradient(180deg, rgba(2,0,36,0) 16%, rgba(0,0,0,1) 100%)
}
a{
  color: white;
}

.card:hover .card-img-overlay{
  opacity: 1;
  background: rgb(2,0,36);
  background: var(--card-image-overlay);
}
.nav-link .active {
  color: var(--primary-color);
}

.nav-link:hover, .dropdown-item:hover {
  color: white;
}

.btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  box-shadow: 0 0 20px var(--rbg-primary-color);
}
.search-bar {
display: flex;
width: 50%;
}

.navbar-toggler{
border: none;
}

.form-control:hover,.form-control:focus, .navbar-toggler:hover, .navbar-toggler:focus{
background-color:#8484855a;
box-shadow: 0 0 20px var(--rbg-primary-color);
border:none;
}

.navbar-icon{
font-size: 2.5rem;
color: #8b27e2;
}

.navbar-icon:hover{
    transform: scale(1.1);
    cursor: pointer;
    transition: ease 0.5s;
}

.carousel-item {
  position: relative;
  overflow: visible;
}


.card:hover{
    transform: scale(1.1);
    cursor: pointer;
    transition: ease 0.5s;
}

.card-title { 
    visibility: hidden; 
    opacity: 0; 
    transition: visibility 0s, opacity 0.5s;
    font-size: 0.9rem; 
  } 

  .card-img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the entire card area */
}

   
  /* Show the text on hover */ 
  .card:hover .card-title { 
    visibility: visible; 
    opacity: 1; 
    transform: scale(1.1);
    cursor: pointer;
  }

  .video-container {
    position: relative;
    width: 100%;
    margin: 0 auto; /* Center the container */
    object-fit: fill;
}

.video-container iframe {
  width: 100%;
  height: 100vh; /* Set a fixed height for the iframe */
  
}

.video-container.fullscreen iframe {
  height: 100vh; /* Make the iframe full height in fullscreen mode */
}

.episode-links a{
  color: white;
}

.episode-links a:hover{
  background-color: #b159db;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #b159db;
}

.mobile-nav{
  display: block;
  z-index: 1000;
}

h1 {
  padding: 10px;
}


/* works to reduce carousel but cuts off the bottom part of the image*/
  .carousel-item {
    width: 100%;
    max-height: 500px;
    overflow: hidden; 
  }

/**/

  @media (min-width: 992px){
    .mobile-nav{
      display: none;
      position:fixed;
    }

   .footer, .footer a{
      display: flex;
    }
  }

  @media (max-width: 992px){
    .mobile-nav{
      position:fixed
    }
    

    .footer, .footer a{
      display: none;
    }

  body {
    padding-bottom: 80px;
  }
}