/*!
Theme Name: Sannawave
Theme URI: http://underscores.me/
Author: KiemPT
Author URI: https://www.facebook.com/kiem.phamthe
Description: Website for Sannawave Inc., a neurotech startup founded by John Nguyen
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: sannawave
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.

Sannawave is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

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.
 */


/* 404 */
.sanna-404 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #070b14;
    color: #fff;
    padding: 40px 20px;
}

.sanna-404__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 255, 200, 0.15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.15), transparent 35%);
    z-index: 1;
}

.sanna-404__content {
    position: relative;
    z-index: 2;
    /* max-width: 700px; */
    text-align: center;
}

.sanna-404__badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sanna-404__title {
    font-size: clamp(60px, 12vw, 140px);
    line-height: 1;
    margin: 0 0 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #1D9E75, #534AB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sanna-404__description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}

.sanna-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sanna-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(90deg, #1D9E75, #534AB7);
    color: #07111f;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sanna-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.sanna-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.sanna-404__search {
    max-width: 520px;
    margin: 0 auto;
}
.sanna-404__search label {
	width: 100%;
}
.sanna-404__search input[type="search"] {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
}

.sanna-404__search input[type="submit"] {
    display: none;
}
.cta-band__inner .wpcf7 form .wpcf7-response-output {
    color: #fff;
}

@media (max-width: 768px) {
    .sanna-404__description {
        font-size: 16px;
    }

    .sanna-btn {
        width: 100%;
    }

    .sanna-404__actions {
        flex-direction: column;
    }
}