/*--------------------------------------------------------------
# Landing Page - Styles
# Integrato con il design system esistente di Web.UI
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(26, 43, 72, 0.5), rgba(26, 43, 72, 0.6)), 
                url('https://images.unsplash.com/photo-1531572753322-ad063cecc140?w=1920') center/cover;
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(var(--primary-color-rgb), 0.3) 0%, 
        rgba(var(--primary-color-rgb), 0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--contrast-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.hero p.lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}


/*--------------------------------------------------------------
# Filter Buttons
--------------------------------------------------------------*/
.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background: var(--background-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--default-font);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/*--------------------------------------------------------------
# Value Proposition Section
--------------------------------------------------------------*/
.values {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: block;
}

.value-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-family: var(--heading-font);
}

.value-item p {
    color: var(--default-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


/*--------------------------------------------------------------
# Reassurance Band
--------------------------------------------------------------*/
.reassurance {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #dee2e6;
}

.reassurance-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reassurance-item > i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.reassurance-item i.bi-credit-card,
.reassurance-item i.bi-paypal,
.reassurance-item i.bi-google {
    font-size: 1.75rem;
    margin: 0 8px;
    color: var(--secondary-color);
}

.reassurance-item strong {
    font-size: 1.1rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .hero {
        height: 400px;
    }

    .slick-related .slick-prev {
        left: 5px;
    }

    .slick-related .slick-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p.lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    .value-item i {
        font-size: 2.5rem;
    }

    .reassurance-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }

    .review-card {
        padding: 1.5rem;
    }
}


/*--------------------------------------------------------------
# Filter Buttons
--------------------------------------------------------------*/
.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background: var(--background-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--default-font);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/*--------------------------------------------------------------
# Value Proposition Section
--------------------------------------------------------------*/
.values {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: block;
}

.value-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-family: var(--heading-font);
}

.value-item p {
    color: var(--default-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


/*--------------------------------------------------------------
# Reassurance Band
--------------------------------------------------------------*/
.reassurance {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #dee2e6;
}

.reassurance-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reassurance-item > i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.reassurance-item i.bi-credit-card,
.reassurance-item i.bi-paypal,
.reassurance-item i.bi-google {
    font-size: 1.75rem;
    margin: 0 8px;
    color: var(--secondary-color);
}

.reassurance-item strong {
    font-size: 1.1rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .hero {
        height: 400px;
    }
    
    .slick-related .slick-prev {
        left: 5px;
    }
    
    .slick-related .slick-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p.lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .value-item i {
        font-size: 2.5rem;
    }
    
    .reassurance-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }
    
    .card__image {
        height: 180px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Animation Utilities
--------------------------------------------------------------*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item.aos-animate {
    animation: fadeInUp 0.6s ease-out;
}
