/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Container principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contenu principal */
.content {
    padding: 40px 30px;
}

/* Sections du formulaire */
.form-section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

.form-section:nth-child(2) { animation-delay: 0.1s; }
.form-section:nth-child(3) { animation-delay: 0.2s; }
.form-section:nth-child(4) { animation-delay: 0.3s; }
.form-section:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 1.5rem;
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

/* Champs de saisie */
input[type="text"], 
input[type="email"], 
textarea, 
select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    border-color: #4facfe;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Groupe d'évaluation */
.rating-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.rating-option {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.rating-option:hover {
    border-color: #4facfe;
    background: white;
}

.rating-option.selected {
    border-color: #4facfe;
    background: #4facfe;
    color: white;
}

/* Question continuer l'expérience */
.continue-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.continue-question h3 {
    color: white;
    margin-bottom: 20px;
}

.continue-options {
    display: flex;
    gap: 15px;
}

.continue-btn {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid white;
    border-radius: 10px;
    background: transparent;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-btn:hover {
    background: white;
    color: #667eea;
}

.continue-btn.selected {
    background: white;
    color: #667eea;
}

/* Section des clubs */
.clubs-section {
    display: none;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.club-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.club-card:hover {
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.club-card.selected {
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.club-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.club-book {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.club-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Bouton de soumission */
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Message de succès */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 15px;
    margin: 30px 0;
}

.success-message h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .continue-options {
        flex-direction: column;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
    }
}