/**
 * Main Page Styles
 * Styles spécifiques à la page d'accueil (index.html)
 */

/* Hero Section */
section.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4.5rem var(--page-pad-x);
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.35) 0%, rgba(255, 140, 66, 0.12) 100%);
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    z-index: 0;
    pointer-events: none;
}

section.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -500px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

section.hero h1 {
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

section.hero h1 .hero-name {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 14vw, 10rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
    color: #121212;
    text-transform: uppercase;
}

section.hero h1 .hero-role {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    line-height: 1.05;
    font-weight: 700;
    color: #121212;
    opacity: 0.98;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
    justify-content: center;
}

.cta-button {
    padding: 1.5rem 3rem;
    background: var(--primary);
    color: var(--bg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.cta-secondary {
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-secondary:hover {
    border-color: var(--accent);
    background: rgba(196, 181, 253, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 480px) {
    section.hero h1 .hero-name {
        font-size: clamp(2.4rem, 12vw, 5rem);
    }

    section.hero h1 .hero-role {
        font-size: clamp(1rem, 5vw, 1.6rem);
    }
}

@media (max-width: 768px) {
    section.hero {
        padding: 2rem var(--page-pad-x);
        padding-top: 8rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}
