/*
Theme Name: Astra-Child
Template: astra
Description: A child theme for Astra theme.
Author: Voidek Webolutions
Version: 1.0
Text Domain: astra-child
*/

/* =============================== Crypto Header Style ================================ */
.entry-header {
    display: none;
}
.crypto-header {
    position: relative;
    z-index: 9999;
    width: 100%;
    background-color: black;
    padding: 5px 60px;
    border-top: 1px solid #313135;
    border-bottom: 1px solid #313135;
}

/* Prevent page templates from affecting header */
body .crypto-header * {
    box-sizing: border-box;
}
.crypto-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
}
.crypto-menu li {
    display: inline-flex;
}
.crypto-menu li a {
    color: #c9d1d9;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.crypto-menu li a:hover {
    background: #1a2230;
    color: #fff;
}
.crypto-menu li.current-menu-item a {
    background: #2563eb;
    color: #fff;
}
.crypto-menu li a[href*="support"] {
    border: 1px solid #2563eb;
    color: #2563eb;
}
.crypto-menu li a[href*="logout"] {
    background: #dc2626;
    color: #fff;
}

/* ================= Header site logo and title end ================= */
.crypto-site-branding {
    display: flex;
    align-items: center;
    gap: 5px;
}
.crypto-site-logo img {
    max-height: 65px;
    width: auto;
}
.crypto-site-title {
    color: #eab308;
    font-size: 24px;
    font-weight: 700;
}
.crypto-site-title-wrap a {
    text-decoration: none;
}
.crypto-site-tagline {
    display: block;
    font-size: 12px;
    color: #c9d1d9;
}
/* ================= Header site logo and title end ================= */

/* =============================== Crypto Footer Style ================================ */

body, html {
    height: 100%;
    margin: 0;
}

#content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.site-footer {
    color: #c9d1d9;
    background-color: #000;
    border-top: 1px solid #313135;
    padding: 20px 0;
}

.site-footer .container.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-contact {
    max-width: 400px;
}

.footer-contact h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #fff;
}

.footer-contact p {
    line-height: 1.7;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-divider {
    margin: 10px 0;
    border-top: 1px solid #313135;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.7;
    align-self: center;
}

.footer-copy p {
    text-align: center;
    font-weight: 500;
    margin-bottom: 5px;
}

/* ================= Crypto 404 Page start ================= */
body.error404 .site-content {
    padding-top: 0 !important;
    background: #0b0f1a;
}
body.error404 #primary {
    margin-top: 0 !important;
}
body.error404 .crypto-404-section {
    padding: 100px 0;
    background: #0b0f1a;
}
body.error404 .crypto-404-box {
    width: 70%;
    margin: 0 auto;
    background: #17213a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #2a2f45;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
body.error404 .crypto-404-box h1 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 8px;
}
body.error404 .crypto-404-box h2 {
    font-size: 64px;
    font-weight: 800;
    color: #2e62ef;
    margin-bottom: 12px;
}
body.error404 .crypto-404-box p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 25px;
}
body.error404 .crypto-404-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
body.error404 .crypto-btn {
    display: inline-block;
    padding: 12px;
    border-radius: 8px;
    background: #2e62ef;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
body.error404 .crypto-btn:hover {
    background: #1e4fd8;
    color: #fff;
}
/* ================= Crypto 404 Page end ================= */

@media (max-width: 768px) {
    .site-footer {
        height: 44px;
        font-size: 13px;
    }
}

