

/* --- PAGE 404 CUSTOM --- */
.error-404-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9fb;
    color: #2d3436;
}

.error-content {
    max-width: 650px;
    width: 100%;
}

/* Visuel 404 */
.error-visual h1 {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    margin: 0;
    line-height: 1;
    color: #a78567; /* Votre couleur principale */
    letter-spacing: -5px;
    opacity: 0.1;
    position: relative;
}

.error-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #a78567;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Texte */
.error-text h2 {
    font-size: 2rem;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.error-text p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Actions & Bouton */
.btn-home {
    display: inline-block;
    background: #a78567;
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(47, 61, 189, 0.2);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(47, 61, 189, 0.3);
    background: #1e2a9d;
}

.search-wrap {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.search-wrap p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Style du formulaire de recherche par défaut de WP */
.error-actions .search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.error-actions input[type="search"] {
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    width: 250px;
}

.error-actions input[type="submit"] {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}