/* ================= HERO ================= */

.hero {
    position: relative;

    background:
        linear-gradient(rgba(240, 138, 43, 0.8),
            rgba(15, 76, 120, 0.8)),
        url("/img/15.webp") center / cover no-repeat;

    color: white;
    text-align: center;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 220px;
    padding-bottom: 100px;
}

/* Title */

.hero h1,
.hero h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Subtitle */

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Button */

.hero .btn {
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 30px;
    background-color: #f89638;
    border: none;
    color: white;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #d97706;
}

/* Mobile */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 180px;
    }

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