.hero-section {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Layout a due colonne */
.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* per mobile */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    z-index: 2;
    text-align: left;
}

.hero-subtitle {
    color: #d02225;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-title span {
    font-family: "Staatliches", sans-serif;

    color: #ffffff;
    font-weight: 600;
    &.outlined {
        color: transparent;
        -webkit-text-stroke: 2px white; /* colore del contorno */
        text-transform: uppercase;
    }
}

.hero-title .hero-faded {
    color: rgba(255, 255, 255, 0.3);
}

.hero-description {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn.primary {
    background: #d02225;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #a61a1c;
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: #000;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    z-index: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Brand section sotto */
.hero-brands {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    background: #d02225;
    padding: 15px 30px;
    border-radius: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1200px;
}

.hero-brands img {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}
