/**
 * Home - Site (temporaire)
 */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-xl);
    background-color: var(--gray-900);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero__glow--1 {
    background: var(--primary-500);
    top: -20%;
    left: -10%;
}

.hero__glow--2 {
    background: #06b6d4;
    bottom: -20%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, 30px) scale(1.1); }
    50% { transform: translate(0, 60px) scale(1); }
    75% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: #fff;
}

.hero__title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600), #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-lg);
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }
}
