.hero-home {
    position: relative;
    width: 100%;
    min-height: 97vh;
    overflow: hidden;
    color: #ffffff;
    font-family: inherit;
}

.hero-home__slider {
    width: 100%;
    height: 100%;
}

.hero-home__slide {
    position: relative;
    width: 100%;
    min-height: 97vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: stretch;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #02010100 61%, #1B060A 90%);
    z-index: 1;
}

.hero-home__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 0rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    box-sizing: border-box;
}

.hero-home__col {
    flex: 1;
    min-width: 0;
    transition: transform 0.9s ease-out, opacity 0.9s ease-out;
}

/* Sinistra: titolo + bottone */
.hero-home__col--left {
    max-width: 60%;
	margin-bottom: 6rem;
}

/* Destra: descrizione */
.hero-home__col--right {
    max-width: 40%;
	margin-bottom: 6rem;
}

/* Titolo: h1 prima slide, h2 le altre, ma stessa dimensione via classe */
.hero-home__title {
    margin: 0 0 2rem;
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: 0.02em;
}

/* Bottone */
.hero-home__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-home__button:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Descrizione */
.hero-home__description {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 480px;
}

/* Navigazione */
.hero-home__nav {
    position: absolute;
    left: 2rem;
    bottom: 2.5rem;
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}

.hero-home__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    position: relative;
    padding: 0;
}

.hero-home__nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.hero-home__nav-btn--prev::before {
    transform: rotate(-135deg);
    margin-left: 15px;
}

.hero-home__nav-btn--next::before {
    transform: rotate(45deg);
    margin-right: 15px;
}

.hero-home__nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Paginazione Swiper (puntini) */
.hero-home__pagination.swiper-pagination {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    left: auto;
    width: auto;
    z-index: 3;
}

.hero-home__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px !important;
}

.hero-home__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Parallax feeling: partiamo leggermente spostati */
.hero-home__slide .hero-home__col {
    opacity: 0;
    transform: translateY(30px);
}

/* Swiper aggiunge .swiper-slide-active: usiamola per animare */
.hero-home__slide.swiper-slide-active .hero-home__col--left {
    opacity: 1;
    transform: translateY(0);
}

.hero-home__slide.swiper-slide-active .hero-home__col--right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero-home__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-home__col--left,
    .hero-home__col--right {
        max-width: 100%;
		margin-bottom: 0;
    }

    .hero-home__description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-home__inner {
        padding: 9rem 1.5rem 3rem;
		gap: 0;
    }

    .hero-home__title {
        font-size: clamp(2.3rem, 8vw, 3rem);
    }

    .hero-home__nav {
        left: 1.5rem;
        bottom: 1.8rem;
    }

    .hero-home__pagination {
        right: 1.5rem;
        bottom: 1.8rem;
    }
	
	.hero-home__slide.swiper-slide-active .hero-home__col--left {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
}
