@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
}
.logo img{
    height: 35px;
}
/* Header Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 40px 10px 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background-color:#0a0a0a3a !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ccc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


.nav-menu .selectedNavItem::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    width: 100%;
}
.selectedNavItem{opacity: 0.6;}


/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* Content Overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 100;
    max-width: 800px;
    width: 90%;
}

.movie-title {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 120%;
    color: white;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.304);
    animation: fadeInUp 1s ease-out;
}

.movie-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 0px;
    opacity: 0.9;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.festival-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-align: center;
    backdrop-filter: blur(15px);
    color: white;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Play Button */
.play-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
    color: black;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, rgba(200, 200, 200, 0.8), rgba(255, 255, 255, 1));
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid black;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 200;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: white;
    z-index: 200;
    animation: progress 5s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 1.8px;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
}

/* Responsive Design */



/* -Portfolio- */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header and Navigation */


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Movie Item Styling */
.movie-item {
    overflow: hidden;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
}

/* Poster Image */
.poster-container {
    width: 100%;
    /* Aspect ratio for posters, e.g., 2:3 */
    aspect-ratio: 3 / 4.3; 
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.poster-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Info below the poster */
.info {
    padding: 10px 0;
}

.info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.info p {
    margin: 0;
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.6;
    margin-bottom: 25px;
}


.catHeader{
    color: whitesmoke;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 20px 0 20px 0px;
}

* a{
    text-decoration: none !important;
    color: unset;
}












/* Footer */
.footer {
    background-color: #000000; /* bg-gray-900 */
    color: #ffffff;
    margin-top: 6rem; /* mt-24 */
}
.footer-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
 @media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer h3 {
    font-size: 1.125rem;
    font-weight: 700;
}
.footer h4 {
    font-weight: 600;
}
.footer .contact-info, .footer .socials a {
    color: #999a9c; /* text-gray-400 */
    font-size: 0.875rem;
}
.footer .contact-info:first-of-type {
     margin-top: 0.5rem;
}
.footer .socials {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* space-x-4 */
}
 @media (min-width: 768px) {
    .footer .socials {
        justify-content: flex-start;
    }
}

.footer .socials a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2f3031; /* border-gray-800 */
}
.footer-bottom .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.75rem;
    color: #6b7280; /* text-gray-500 */
    text-align: center;
}





@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .movie-title {
        font-size: clamp(2.5rem, 12vw, 6rem);
    }

    .festival-badges {
        gap: 15px;
    }

    .badge {
        width: 50px;
        height: 50px;
        font-size: 8px;
    }

    .play-button {
        padding: 15px 30px;
        font-size: 14px;
    }

    .slide-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
        /* Gallery Grid */
    .gallery-grid {
        margin: 0 40px ;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .catHeader{
        margin: 20px 0 20px 40px;
    }

    .slide-content {
        width: 95%;
    }

    .movie-title {
        margin-bottom: 15px;
    }

    .movie-subtitle {
        margin-bottom: 30px;
    }

    .festival-badges {
        margin-bottom: 30px;
        gap: 10px;
    }

    .badge {
        width: 45px;
        height: 45px;
    }
}