@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap');

::-webkit-scrollbar {
    width: 1px;
    height: 9px;
    position: relative; 
    top: 10rem;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}
element::-webkit-scrollbar {
    width: 0px;
}
* {
    box-sizing: border-box;
}

:root {
    --primary-color:#22254b;
    --secondary-color: #373b69;
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

header {
    padding: 1rem;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column; /* Stacks elements vertically */
    background-color: #000;
}

header h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 1rem; /* Space between logo and search box */
}

.search {
    width: 500px;
    max-width: 500px;
    background-color: transparent;
    border: 2px solid #444;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
}

.search:focus {
    outline: 0;
    background-color: var(--primary-color);
}

.search::placeholder {
    color: #7378c5;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.movie {
    width: 300px;
    margin: 1rem;
    border-radius: 3px;
    box-shadow: 0.2px 4px 5px rgba(0,0,0,0.1);
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.movie img {
    width: 100%;
}

.movie-info {
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 1rem;
    letter-spacing: 0.5px;
}

.movie-info h3 {
    margin-top: 0;
}

.movie-info span {
    background-color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: bold;
}

.movie-info span.green {
    color: lightgreen;
}

.movie-info span.orange {
    color: #ffa500;
}

.movie-info span.red {
    color: red;
}

.overview {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: #000;
    padding: 1rem;
    max-height: 100%;
    transform: translateY(101%);
    transition: transform 0.3s ease-in;
}

.movie:hover .overview {
    transform: translateY(0);
}

#tags {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.tag {
    color: white;
    padding: 10px 20px;
    background-color: #444;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
}

.tag.highlight {
    background-color: red;
}

.no-results {
    color: white;
}

.pagination {
    display: flex;
    margin: 10px 30px;
    align-items: center;
    justify-content: center;
    color: white;
}

.page {
    padding: 20px;
    cursor: pointer;
}

.page.disabled {
    cursor: not-allowed;
    color: grey;
}

.current {
    padding: 10px 20px;
    border-radius: 5px;
    border: 5px solid #444;
    font-size: 20px;
    font-weight: 600;
}

.know-more {
    background-color: #444;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 5px;
}

/* The Overlay (background) */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* Arrow controls */
.arrow {
    position: absolute;
    font-size: 40px;
}

.arrow.left-arrow {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.arrow.right-arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
}

.dots {
    margin-top: 30px;
}

.dots .dot {
    padding: 5px 15px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 5px;
}

.dots .dot.active {
    border-color: orange;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 30px;
        top: 0;
    }

    .search {
        width: 80%;
        font-size: 0.9rem;
    }

    .movie {
        width: 100%;
        margin: 0.5rem;
    }

    .movie-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .movie-info span {
        margin-top: 0.5rem;
    }

    .pagination {
        flex-direction: column;
    }

    .page, .current {
        padding: 10px;
        font-size: 16px;
    }

    .overlay a {
        font-size: 28px;
    }

    .arrow {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }

    .search {
        width: 90%;
        font-size: 0.8rem;
    }

    .movie-info h3 {
        font-size: 1rem;
    }

    .movie-info span {
        font-size: 0.8rem;
    }

    .know-more {
        font-size: 14px;
        padding: 8px 16px;
    }

    .pagination {
        margin: 5px 10px;
    }

    .page, .current {
        padding: 8px;
        font-size: 14px;
    }

    .overlay .closebtn {
        font-size: 40px;
    }

    .dots .dot {
        padding: 3px 10px;
        font-size: 16px;
    }
}
