/*!
Theme Name: parkingsystem
Theme URI: https://blackmarlintechnologies.com/
Author: bmt
Author URI: https://blackmarlintechnologies.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: httpsblackmarlintechnologies-com
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/* =========================
   404 PAGE STYLING
========================= */

.error-404 {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
    padding: 40px 20px;
    text-align: center;
}

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

/* Image */
.error-image {
    margin-bottom: 20px;
}

.error-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: float 3s ease-in-out infinite;
}

/* Headings */
.error-container h1 {
    font-size: 140px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
    margin-bottom: 10px;
}

.error-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

/* Text */
.error-container p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Buttons */
.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.error-actions .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-actions .primary {
    background-color: #4f46e5;
    color: #ffffff;
}

.error-actions .primary:hover {
    background-color: #4338ca;
}

.error-actions .outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
}

.error-actions .outline:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

/* Search */
.error-search form {
    max-width: 320px;
    margin: 0 auto;
}

.error-search input[type="search"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #d1d5db;
    outline: none;
}

.error-search input[type="submit"] {
    display: none;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .error-container h1 {
        font-size: 100px;
    }

    .error-container h2 {
        font-size: 24px;
    }

    .error-image img {
        max-width: 240px;
    }
}
