/*
 * Globals
 */

/* Import Exo 2 font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700;800&display=swap');

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
}


/* Global page styling */
body {
    background-color: #000; /* dark background */
    color: #DDDDDD; /* default text color */
    font-family: 'Exo 2', sans-serif;
    text-align: center; /* center everything horizontally */
    margin: 0;
    padding: 0;
}
/*body {
    text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.5);
}*/

/* Line 1: Headline */
h1 {
    font-weight: 800; /* extra bold */
    font-size: 48px; /* desktop size */
    color: #FFF; /* bright green laser color */
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0 0 25px 0; /* spacing below headline */
    text-shadow: 0 0 2px #000, 0 0 2px #000; /* subtle neon glow */
}
/*h1 {
    margin-top:35px
}*/

/* Line 2: Description */
p {
    font-weight: 400; /* regular */
    font-size: 18px;
    color: #DDDDDD; /* light gray for readability */
    line-height: 1.6;
    max-width: 600px; /* limit line length for readability */
    margin: 0 auto 35px auto; /* spacing and center alignment */
}

/* Line 3: Call-to-Action */
h2 {
    font-weight: 600; /* semi-bold */
    font-size: 22px;
    color: #00FF7F; /* same bright green */
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    transition: 0.3s all;
}

/* Hover effect for CTA */
h2:hover {
    text-shadow: 0 0 10px #00FF7F, 0 0 20px #00FF7F; /* stronger neon glow on hover */
}



.header {
    display: flex;
    align-items: center;      /* vertical alignment */
    justify-content: center;  /* center as a group */
    gap: 24px;                /* space between logo and text */
    padding: 40px 0;
}

/* Logo sizing */
.header-logo {
    max-width: 100%; /* adjust as needed */
    height: auto;
    margin-bottom: 20px;
}
.header-logo-wrapper,
.header-text {
    width: 50%
}
/* Mobile behavior */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* stack vertically */
        text-align: center;
    }

    .header-logo {
        max-width: 90%;
        margin-bottom: 16px;
    }
}

/*
 * Base structure
 */


.cover-container {
    max-width: 42em;
}

/*
 * Header
 */

.nav-masthead .nav-link {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 0.25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}
            .bg-dark {
                background-image: url('assets/brand/bg.png');
                background-repeat: no-repeat; 
                background-size: cover;
            }
            .bd-placeholder-img {
                font-size: 1.125rem;
                text-anchor: middle;
                -webkit-user-select: none;
                -moz-user-select: none;
                user-select: none;
            }

            @media (min-width: 768px) {
                .bd-placeholder-img-lg {
                    font-size: 3.5rem;
                }
            }

            .b-example-divider {
                height: 3rem;
                background-color: rgba(0, 0, 0, 0.1);
                border: solid rgba(0, 0, 0, 0.15);
                border-width: 1px 0;
                box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
                    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
            }

            .b-example-vr {
                flex-shrink: 0;
                width: 1.5rem;
                height: 100vh;
            }

            .bi {
                vertical-align: -0.125em;
                fill: currentColor;
            }

            .nav-scroller {
                position: relative;
                z-index: 2;
                height: 2.75rem;
                overflow-y: hidden;
            }

            .nav-scroller .nav {
                display: flex;
                flex-wrap: nowrap;
                padding-bottom: 1rem;
                margin-top: -1px;
                overflow-x: auto;
                text-align: center;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }
