/* ═══════════════════════════════════════
   NOT FOUND PAGE — Chethi Batik 2026
   Premium Error Section Styles
═══════════════════════════════════════ */

.not-found-section {
    position: relative;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-1);
    overflow: hidden;
}

/* Background batik glow */
.not-found-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.not-found-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease-out;
}

.not-found-img-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.not-found-img {
    width: 280px;
    height: auto;
    border-radius: 4px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

.not-found-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.not-found-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.not-found-btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.not-found-btn.btn-outline-secondary {
    color: #111;
    border-color: #ddd;
}

.not-found-btn.btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .not-found-title { font-size: 2.2rem; }
    .not-found-content { padding: 2rem; margin: 0 1rem; }
    .not-found-actions { flex-direction: column; }
}
