/*
 * Hero Section - Samsung Style with Background Image
 */

.hero-3d {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-gray-100);
    background-image: url('/assets/img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay scuro per leggibilità testo */
.hero-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 0;
}

/* Three.js Canvas Container - DISABLED */
.hero-3d-canvas {
    display: none;
}

.hero-3d-canvas canvas {
    display: none;
}

/* Hero Content */
.hero-3d-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl);
    color: var(--color-white);
}

.hero-3d-title {
    font-size: var(--text-7xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    color: var(--color-white);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Glitch Effect - Removed (not Samsung style) */

.hero-3d-subtitle {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-3d-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll-indicator svg {
    width: 30px;
    height: 30px;
    color: var(--color-text-muted);
}

/* Particle Overlay - DISABLED */
.hero-particles {
    display: none;
}

/* Stats Section (below hero) - Samsung Clean Style */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-2xl) 0;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-300);
    z-index: 1;
}

.hero-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.hero-stat-number {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.hero-stat-label {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-3d-title {
        font-size: var(--text-6xl);
    }

    .hero-3d-subtitle {
        font-size: var(--text-xl);
    }

    .hero-stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .hero-stat-number {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 768px) {
    .hero-3d-content {
        padding: var(--space-xl);
    }

    .hero-3d-title {
        font-size: var(--text-5xl);
    }

    .hero-3d-subtitle {
        font-size: var(--text-lg);
        margin-bottom: var(--space-xl);
    }

    .hero-3d-cta {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-3d-cta .btn {
        width: 100%;
    }

    .hero-stats-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-stat-number {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 480px) {
    .hero-3d-title {
        font-size: var(--text-4xl);
    }

    .hero-3d-subtitle {
        font-size: var(--text-base);
    }
}
