@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Global styles */

html {
    scroll-behavior: smooth;
    scrollbar-face-color: #646464;
    scrollbar-base-color: #646464;
    scrollbar-3dlight-color: #646464;
    scrollbar-highlight-color: #646464;
    scrollbar-track-color: #000;
    scrollbar-arrow-color: #000;
    scrollbar-shadow-color: #646464;
    scrollbar-dark-shadow-color: #646464;
  }
  
  ::-webkit-scrollbar { width: 8px; height: 3px;}
  ::-webkit-scrollbar-button {  background-color: #000000; display: none; }
  ::-webkit-scrollbar-track {  background-color: #646464;}
  ::-webkit-scrollbar-track-piece { background-color: #000;}
  ::-webkit-scrollbar-thumb { height: 50px; background-color: #3f3f3f; border-radius: 3px;}
  ::-webkit-scrollbar-corner { background-color: #646464;}
  ::-webkit-resizer { background-color: #666;}

body {
    overflow-y: scroll !important;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    background-color: #000000 !important;
}

.nav-link {
    color: rgb(115, 115, 115);
}

.active {
    color: rgb(255, 0, 0) !important;
}

.navbar-brand {
    color: red !important;
    font-size: 30px;
    font-weight: 800 ;
    /* color: red !important; */
    /* background-color: aqua !important; */
}

.navbar-brand .logo-img {
    max-height: 40px; /* Adjust the max-height as per your design */
    width: auto;
}


.carousel-item {
    min-height: 750px;
    background-size: cover;
    background-position: center bottom;
    padding: 0;
    position: relative;
}

.carousel-caption {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.826), rgba(0, 0, 0, 0));
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.carousel-caption a {
    background: none;
    border: 1px solid white;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.carousel-caption a:hover {
    background-color: rgba(255, 255, 255, 0.245);
}

/* Movie card styles */

.movie-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.img-container {
    overflow: hidden;
}

.movie-card .img-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    border: none;
    transition: transform 0.4s ease;
}

.movie-card .img-container img:hover {
    transform: scale(1.05);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: rgb(134, 134, 134);
    background-color: #151515;
    padding: 1.5rem;
}

.card-title {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem; /* Consolidated margin */
}

.card-text {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 2rem; /* Consolidated margin */
}

.card-text a {
    color: #919191;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    border: none;
    background-color: #232323;
    transition: all 0.3s ease;
}

.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary:active {
    background-color: #2c2c2c;
}

.btn-secondary .material-symbols-outlined {
    vertical-align: middle;
    margin-top: -2px; /* Adjust this value to better align with the text */
}

#search-input {
    background-color: #121212;
    color: white;
    border: none;
}

footer {
    background-color: rgb(16, 16, 16);
    color: red !important;
}

footer .container .row ul li a {
    color: red !important;
}

footer p, footer .container .row ul li a, footer address, footer address a {
    color: rgb(173, 0, 0) !important;
}