/* ========== 404 Page Styling (Original Image & High Impact) ========== */
.not-found-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f2efe9; /* Alleen zichtbaar buiten de 'contain' foto */
    text-align: center;
    color: #000;
    padding: 60px 20px;
    overflow: hidden;
}

.not-found-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Volledig transparant: geen witte waas meer */
    background: transparent !important; 
    z-index: 1;
}

.not-found-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
}

.huge-title {
    font-size: clamp(8rem, 30vw, 20rem);
    font-weight: 900;
    line-height: 0.6;
    /* Maximaal zichtbaar */
    opacity: 1 !important; 
    color: #B08B31 !important; 
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    /* Slagschaduw voor leesbaarheid op drukke foto's */
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.8), -2px -2px 15px rgba(255, 255, 255, 0.8);
}

.not-found-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: #fff !important;
    text-transform: none;
    font-weight: 800;
    letter-spacing: -1.5px;
    /* Glow effect voor leesbaarheid op donkere delen van de foto */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.not-found-text {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    max-width: 700px;
    margin: 0 auto 50px;
    color: #000 !important;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.not-found-actions .button {
    padding: 20px 60px;
    font-size: 1.3rem;
    background-color: #B08B31 !important;
    border: none;
    color: #fff !important;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .not-found-wrapper {
        min-height: 60vh;
    }
}
