/*
Notlar:
eski animasyon arkaplan rengi navigasyonda : f1bc31 css/style.css 
*/
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #1b131d;
  margin: auto;
  margin-top: 70px;
  margin-bottom: 70px;
  color: white;
  font-family: "Roboto", sans-serif;
}
#movie-backdrop {
  width: 100%;
}
.actorCard {
  box-shadow: 0px 0px 10px 4px #4500bd;
}
.actorCard:hover {
  cursor: pointer;
  transition: 300ms;
  transform: scale(1.1);
  box-shadow: 0px 0px 10px 8px #8f62bae3;
}

.movieCard:hover {
  cursor: pointer;
  transition: 400ms;
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 8px #8f62bae3;
  box-shadow: 0px 0px 10px 8px #2a9764;
}

.movieCard div,
.actorCard div {
  background-image: linear-gradient(to bottom, #1b131d, #2f133e, #39284ae3);
}
.active {
  background-color: #2a9764;
}
.dropdown-item:hover {
  color: #2a9764 !important;
}
.ftco-navbar-light {
  background-color: #483a59 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  letter-spacing: 2px;
  color: white;
}
h5,
h6 {
  font-size: smaller;
}
#inputBar{
  background-color: transparent !important;
  color: #3fdd93 !important;
}
#inputBar::placeholder{
  color: white !important;
}
#inputBar:focus{
  background-color: #2f133e !important;
}
#submitBtn{
  background-color: #2a9764 !important;
  color: white !important;
}
#actors {
  margin: 24px 16px 0 0;
}
.vote_average {
  margin: 5px;
  padding: 5px;
  background-image: linear-gradient(
    to top,
    #1b131d,
    #2f133e,
    #28093d,
    #47068e,
    #513681
  );
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}
footer {
  background-color: #361e46 !important;
}
#actorFilmography {
  max-height: 400px;
  overflow-y: scroll;
  text-overflow: ellipsis;
}
.readMoreCnt .inner {
  max-height: 145px;
  overflow: hidden;
  margin-top: 20px;
}
footer {
  background-color: #361e46 !important;
}
.logos {
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
  transform: scale();
  animation: float 4s ease-in-out infinite;
}
.logos2 {
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
  transform: scale();
  animation: float2 4s ease-in-out infinite;
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: scale();
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: scale(1.2);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: scale();
  }
}
@keyframes float2 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
  }
}

#aboutPage {
  height: 80vh;
}
#footer {
  position: fixed;
  bottom: 0;
}
#ftco-navbar {
  width: 100vw;
  position: fixed;
  top: 0;
}
#overview{
  font-size: smaller;
  padding: 1rem;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
  transition: transform 1s;
}
.movieCard:hover #overview{
  overflow: scroll;
  transform: translateY(0%);
  display: block;
}

@media screen and (max-width: 992px) {
  #aboutPage {
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
