/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Posters Section */
.posters {
    text-align: center;
    padding: 60px 20px;
    padding-top: 120px;
    color: #ffffff;
}

/* Add subtle gradient to title */
.posters h1 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffdd00, #ff7300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(255, 115, 0, 0.6);
}

/* Poster Gallery */
.poster-gallery {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Individual Poster */
.poster {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Glow Effect on Hover */
.poster img {
    width: 270px;
    height: auto;
    /* border-radius: 12px; */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.poster:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(218, 214, 200, 0.8);
}

/* Add Subtle Background Overlay */
.posters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 80%);
    z-index: -1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Modal Content */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: grab;
    border: 3px solid rgba(255, 200, 0, 0.8);
    box-shadow: 0px 0px 20px rgba(255, 200, 0, 0.5);
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #ffdd00;
    transform: scale(1.1);
}


/* Zoom Controls - Floating Right */
.zoom-controls {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Button Styling */
.zoom-controls button {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Button Icons */
.zoom-controls button i {
    font-size: 16px;
}

/* Hover Effect */
.zoom-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}


/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}



/* Responsive Design */
@media (max-width: 768px) {
    .poster-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .posters h1 {
        font-size: 2.2em;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 20px;
    }
}