body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* HERO */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-hippodrome'); /* � remplacer */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    max-width: 800px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    color: #ddd;
}

.event-info {
    margin-top: 15px;
    font-size: 16px;
    color: #aaa;
}

/* FORM */
.form-wrapper {
    margin-top: -80px;
    display: flex;
    justify-content: center;
}

.form-card {
    background: #111;
    padding: 40px;
    border-radius: 16px;
    width: 420px;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255,0,0,0.2);
}

    .form-card h2 {
        text-align: center;
        margin-bottom: 25px;
    }

input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: white;
}

    input:focus, textarea:focus {
        outline: 1px solid #ff0000;
    }

/* BOUTON */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff0000, #990000);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    button:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    }


.form-card {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    
 