body {
    background: url("../IMG/rsz_mock-up-poster-frame-childs-room.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-y: scroll;
    max-width: 100%;
    overflow-x: hidden;
}

main {
    max-width: 100%;
    overflow-x: hidden;
    width: 90%;
    margin: auto;
}

.swiper {
    width: 100%;
    margin: 50px 0px;
    padding: 20px 0px;
    margin-bottom: 100px;
    position: relative;
}

.swiper-slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    overflow: hidden;
}

.slide-inner {
    text-align: center;
    padding: 20px;
}

    .slide-inner img {
        max-width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
        margin: 0 auto 12px;
    }

.slide-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.slide-desc {
    color: #555;
    font-size: 14px;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.6);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 18px !important;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 25px !important;
        font-weight: bold;
    }

/* Hero Section */
.hero {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.header-hero {
    font-size: 5.5rem;
    font-weight: 600;
    letter-spacing: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-align: center;
}

p {
    font-size: 18px;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

    h2::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 5px;
        background-color: var(--primary-color);
        bottom: -5px;
        left: 0px;
    }

.view-all-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: .5s;
    border: 1px solid var(--primary-color);
}

    .view-all-btn:hover {
        background-color: transparent;
        color: var(--primary-color);
    }

/* Cards Grid */
.grid-system {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 70px 40px;
    width: 90%;
    margin: auto;
}

    .grid-system .card-film {
        max-width: 100%;
        text-align: center;
        transition: .5s;
    }

        .grid-system .card-film:hover {
            transform: translateY(-10px);
        }

        .grid-system .card-film h2 {
            color: white;
            margin-top: 7px;
        }

        .grid-system .card-film img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }

/* Responsive */
@media (max-width: 768px) {
    main {
        width: 95%;
    }

    .hero {
        min-height: 50vh;
    }

    .swiper-slide {
        height: 260px;
    }

    .header-hero {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 16px;
    }
}
