@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Bouton principal avec police moderne */
.hero-button-simple {
    display: inline-block !important;
    padding: 18px 36px !important;
    background: linear-gradient(135deg, #DDBE58 0%, #f0c14b 100%) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 6px 20px rgba(221, 190, 88, 0.3) !important;
    overflow: hidden !important;
    line-height: 1.2 !important;
}

.hero-button-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero-button-simple:hover::before {
    left: 100%;
}

.hero-button-simple span,
.hero-button-simple {
    position: relative;
    z-index: 2;
}

.hero-button-simple:hover {
    background: linear-gradient(135deg, #f0c14b 0%, #DDBE58 100%) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(221, 190, 88, 0.5) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    letter-spacing: 0.8px !important;
}

.hero-button-simple:active {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(221, 190, 88, 0.4) !important;
}

.hero-button-simple {
    animation: buttonEntrance 0.8s ease-out 0.5s both;
}

@keyframes buttonEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-button-simple.bordered {
    background: transparent !important;
    border: 2px solid #DDBE58 !important;
    color: #DDBE58 !important;
    box-shadow: 0 4px 15px rgba(221, 190, 88, 0.2) !important;
}

.hero-button-simple.bordered:hover {
    background: #DDBE58 !important;
    color: #1a1a1a !important;
    border-color: #DDBE58 !important;
}

.hero-button-simple.neon {
    background: transparent !important;
    border: 2px solid #DDBE58 !important;
    color: #DDBE58 !important;
    box-shadow: 0 0 20px rgba(221, 190, 88, 0.5) !important;
    text-shadow: 0 0 10px rgba(221, 190, 88, 0.8) !important;
}

.hero-button-simple.neon:hover {
    box-shadow: 0 0 30px rgba(221, 190, 88, 0.8) !important;
    text-shadow: 0 0 15px rgba(221, 190, 88, 1) !important;
}

@media (max-width: 768px) {
    .hero-button-simple {
        padding: 16px 32px !important;
        font-size: 1rem !important;
        letter-spacing: 0.4px !important;
    }

    .hero-button-simple:hover {
        transform: translateY(-3px) scale(1.03) !important;
        letter-spacing: 0.6px !important;
    }
}

@media (max-width: 480px) {
    .hero-button-simple {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        letter-spacing: 0.3px !important;
        border-radius: 10px !important;
    }

    .hero-button-simple:hover {
        transform: translateY(-2px) scale(1.02) !important;
        letter-spacing: 0.5px !important;
    }
}

.hero-button-simple:focus {
    outline: 3px solid rgba(221, 190, 88, 0.5) !important;
    outline-offset: 4px !important;
    border-radius: 12px !important;
}

.hero-button-simple {
    animation: buttonEntrance 0.8s ease-out 0.5s both, subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(221, 190, 88, 0.3);
    }

    50% {
        box-shadow: 0 8px 25px rgba(221, 190, 88, 0.4);
    }
}

.hero-button-simple {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-button-simple {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}