/* styles/thank-you.css */
.thank-you-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.thank-you-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you-card h1 {
    color: #1F2937;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
}

.thank-you-card p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.thank-you-icon {
    font-size: 4rem;
    color: #556B2F; /* Vert olive foncé */
    margin-bottom: 2rem;
    display: inline-block;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background-color: #556B2F; /* Vert olive foncé */
    color: white;
    border: 1px solid #556B2F;
}

.btn-primary:hover {
    background-color: #3D4D21; /* Version plus foncée pour le survol */
    border-color: #3D4D21;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(85, 107, 47, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 1rem;
    }
    
    .thank-you-card {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-card h1 {
        font-size: 1.75rem;
    }
    
    .thank-you-card p {
        font-size: 1rem;
    }
}
