.gravity-fox-hero {
    min-height: 700px;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    background-image:
    linear-gradient(
        90deg,
        rgba(5, 9, 30, 0.85) 0%,
        rgba(5, 9, 30, 0.35) 48%,
        rgba(5, 9, 30, 0.05) 100%
    ),
    url("./assets/gravity-fox-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

.hero-content {
    width: min(520px, 100%);
}

.hero-content h1 {
    margin: 0 0 16px;

    font-family: Arial, sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.9;
}

.hero-content p {
    max-width: 450px;
    margin-bottom: 30px;

    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;

    padding: 15px 30px;
    border-radius: 999px;

    background: #ff8a35;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(255, 138, 53, 0.45);
}

@media (max-width: 700px) {
    .gravity-fox-hero {
        min-height: 650px;
        align-items: flex-end;

        padding: 50px 25px;

        background-position: 65% center;
    }

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

    .hero-content p {
        font-size: 1rem;
    }
}