/* 404 Error Page Styles */

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 60px);
    text-align: center;
}

.error-emoji {
    width: 256px;
    height: 256px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.error-emoji-container {
    margin-bottom: 10px;
}

.error-content {
    max-width: 600px;
    width: 100%;
}

.error-title {
    font-size: 5rem;
    font-weight: bold;
    color: #d73502;
    margin: 0 0 10px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.error-subtitle {
    font-size: 2rem;
    color: #2d5016;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.error-quote {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 30px 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(147, 196, 125, 0.3);
    font-style: italic;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none !important;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.15);
    background: linear-gradient(to bottom, #93c47d, #7fa85c);
    color: white !important;
    border-color: #6b8a47;
}

.back-home-btn:hover {
    background: linear-gradient(to bottom, #7fa85c, #6b8a47);
    transform: translateY(-2px);
    box-shadow: 5px 5px 12px rgba(0,0,0,0.25);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .error-container {
        min-height: calc(100dvh - 100px);
    }
    
    .error-emoji {
        width: 256px;
        height: 256px;
    }
    
    .error-title {
        font-size: 3.5rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-message {
        font-size: 1rem;
        padding: 15px;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .back-home-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .error-emoji {
        width: 160px;
        height: 160px;
    }
}
