/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
body, html {
    padding-top: 0px;
    height: 100%;
    margin: 0;
    background-color: white;
    background-image: url(../images/MissionBackground5.jpg);
    background-position: center;
    background-repeat:no-repeat;
    background-size: cover;
   
}

/*html, body {
    height: 100%;
    margin: 0;
    background: linear-gradient(
    90deg,
    #e5e9f0 0%,
    #edf1f7 35%,
    #f6f8fb 70%,
    #ffffff 100%);
}*/


.app-navbar {
    background: linear-gradient( 90deg, #070c2a 0%, #0b1548 45%, #111b5a 100% ) !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}


/*/* Logo */
.app-logo {
    height: 80px; /* standard menu height */
    max-height: 80px;
    width: auto;
    margin-left: 100px;
}


.app-navbar .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* User / login area */
.app-navbar .navbar-text,
.app-navbar a {
    color: #ffffff !important;
}

/* Remove default border */
.app-header {
    border-bottom: none;
}


/* Force navbar text to white */
.app-navbar,
.app-navbar a,
.app-navbar .navbar-text {
    color: #ffffff !important;
}

    /* Override Bootstrap muted nav color */
    .app-navbar .nav-link {
        color: #ffffff !important;
    }

.app-navbar .nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.app-navbar a:hover {
    color: #ffffff !important;
}

.app-navbar .text-dark,
.app-navbar .nav-link.text-dark,
.app-navbar a.text-dark {
    color: #ffffff !important;
}

.app-navbar .text-dark:hover,
.app-navbar .nav-link.text-dark:hover,
.app-navbar a.text-dark:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.btn-primary {
    color: #fff;
    background-color: #0B3E53;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}



.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    background-color: #F7F8FA;
    color: white;
    font-size: 10px;
}

/* HERO container (full width, background image) */
/* HERO fills the viewport; navbar overlays it */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* fill screen */
    background: url('/images/landing-hero.jpg') center/cover no-repeat;
    overflow: hidden;
}


/* Full-width centered band */
/* Full-width centered band */
.hero-band {
    position: absolute;
    left: 0;
    right: 0;
    top: 60%; /* move down ~40px */
    transform: translateY(-50%);
    background: linear-gradient( 180deg, rgba(7, 12, 42, 0.78) 0%, rgba(11, 21, 72, 0.78) 55%, rgba(10, 18, 63, 0.78) 100% );
    padding: 3rem 1.25rem;
}




/* Center the text, limit width */
.hero-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}


/* Typography */
.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 650;
    margin: 0 0 1rem 0;
}

.hero-subtitle {
    white-space: nowrap;
    overflow: visible; /* allow full line */
    text-overflow: unset;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.4;
    margin: 0;
}



/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 340px;
    }

    .hero-band {
        padding: 2.25rem 1rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

