.hobbies-hero-section {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/passione.jpg');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-secondary);
}

.hobbies-hero-section .hobbies-intro {
    min-height: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.hobbies-hero-section .hobbies-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-weight: 700;
    font-family: Roboto, sans-serif;
    font-size: 3rem;
    max-width: 900px;
}

.hobbies-hero-section .hobbies-intro-text {
    margin: 30px auto 0;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
}

.hobby-card {
    background-color: var(--color-primary);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hobby-card-img {
    height: 213px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.hobby-card .card-body {
    position: relative;
    padding: 30px 27px;
}

.hobby-card-title {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.hobby-card-description {
    text-align: center;
    line-height: 1.5;
    flex-grow: 1;
    color: var(--color-secondary);
}

@media (max-width: 1199px) {
    .hobbies-hero-section .hobbies-intro {
        min-height: 660px;
    }
    .hobby-card-img {
        height: 170px;
    }
}

@media (max-width: 991px) {
    .hobbies-hero-section .hobbies-intro {
        min-height: 506px;
    }
    .hobbies-hero-section .hobbies-title {
        font-size: 2.5rem;
    }
    .hobbies-hero-section .hobbies-intro-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hobbies-hero-section .hobbies-intro {
        min-height: 400px;
    }
    .hobbies-hero-section .hobbies-title {
        font-size: 2rem;
    }
    .hobbies-hero-section .hobbies-intro-text {
        font-size: 1rem;
    }
}