@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.poster-img-custom {
    background-image: url('https://images.pexels.com/photos/20585288/pexels-photo-20585288.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.text-hero-custom {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.header-custom {
    background-color: var(--bs-primary);
}

.navbar-toggler-custom {
    display: none;
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-light);
}

@media (max-width:991px) {
    .navbar-toggler-custom {
        display: inline-block;
    }
}

.popup-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #28a745;
    color: white;
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: 500;
    z-index: 9999;
    display: none;
    transition: opacity 0.3s ease;
}

.popup-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-container.show {
    display: block;
}

.img-custom {
    width: 100%;
    object-fit: cover;
}