/* =========================
   GLOBAL
========================= */

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0F1A;
    color: #D6D9E3;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
	color: #D6D9E3;
    letter-spacing: 0.5px;
}

p {
    color: #B8BCC8;
}

a {
    color: #D6D9E3;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    background-color: #000 !important;
}

.navbar-brand {
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-link {
    color: #B8BCC8 !important;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #ffffff !important;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-weight: 500;
}

.hero p {
    font-size: 16px;
}


/* =========================
   SECTIONS
========================= */

.section-dark {
    background-color: #111A2E;
}

.section-light {
    background-color: #0B0F1A;
}

section {
    position: relative;
}


/* =========================
   STATS
========================= */

.stat {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
}

.section-dark small {
    color: #9BA3B5;
}


/* =========================
   CARDS
========================= */

.card-nyx {
    background-color: #111A2E;
    border: 1px solid #1E1A3A;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-nyx:hover {
    transform: translateY(-5px);
    border-color: #2A2750;
}

.card-nyx h5 {
    margin-bottom: 10px;
}

.card-nyx p {
    font-size: 14px;
}


/* =========================
   BUTTONS
========================= */

.btn-outline-light {
    border-color: #444;
    color: #D6D9E3;
    font-size: 13px;
    padding: 8px 18px;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    background-color: #D6D9E3;
    border-color: #666;
}


/* =========================
   TITLES
========================= */

h2 {
    font-weight: 500;
    margin-bottom: 20px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background-color: #000;
    border-top: 1px solid #1E1A3A;
}

.footer p {
    color: #8A90A2;
    margin-bottom: 5px;
}

.footer small {
    color: #666;
}


/* =========================
   UTILITIES
========================= */

.text-muted-nyx {
    color: #9BA3B5;
}

.border-soft {
    border-color: #1E1A3A !important;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;

    background: url('../images/night.jpg') center/cover no-repeat;
}


.card-nyx i {
    font-size: 30px;
    color: #D6D9E3;
}














/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 80px 20px;
    }

    .hero p {
        width: 100% !important;
    }

    .stat {
        font-size: 24px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 22px;
    }

}