/* Custom Styles */
body {
    background: #05060a;
    color: #e9eef6;
}

.navbar-brand {
    font-size: 1.4rem;
}

.card.bg-secondary {
    background: #0f1720 !important;
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-info {
    background: #00c4ff;
    border: none;
    color: #041018;
}

h1, h2, h3 {
    color: #f8fbff;
}

.text-soft {
    color: #b3c0cc !important; /* soft grey-blue */
}

/* Top Navigation */
.navbar-logo {
    height: 40px;
    width: auto;
}

/* Full-width hero banner */
.hero-banner {
    width: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    z-index: 1;
}

    /* Background image */
    .hero-banner .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('/assets/img/ARK_hero.png'); /* your ARK image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: brightness(0.55);
        z-index: 0;
    }

    /* Center content above background */
    .hero-banner .container .text-center {
        position: relative;
        z-index: 2;
    }

    /* Text shadow for readability */
    .hero-banner h1,
    .hero-banner p,
    .hero-banner .badge {
        text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }

/* Mobile adjustments */
@media (max-width: 576px) {
    .hero-banner {
        min-height: 360px;
    }

        .hero-banner h1 {
            font-size: 2rem;
        }

        .hero-banner p {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 32px;
    }
}
