.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 45%;
    padding: 2rem;
    margin-left: 5%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin: 1.5rem 0;
    color: #ccc;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-image {
    width: 50%;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 60px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        order: 2;
        padding: 1rem;
    }

    .hero-image {
        width: 100%;
        height: 50vh;
        order: 1;
        margin-bottom: 1rem;
    }

    .hero-actions {
        justify-content: center;
        margin: 1rem 0;
    }
}

@media (max-width: 390px) {
    .hero-image {
        height: 40vh;
    }

    .hero-content {
        width: 100%;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
