@import url('base.css');

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-variant: small-caps;
    color: var(--colore-primario);
    margin-bottom: 30px;
}

.hero-image img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.hero-text p {
    line-height: 1.6;
    font-size: 80%;
    color: var(--text);
    max-width: 800px;
    text-align: justify;
}

.section-divider {
    border: none;
    height: 4px;
    background-color: var(--colore-primario);
    margin: 40px auto;
    width: 80%;
    border-radius: 2px;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
        padding: 0 10px;
    }
}
