html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


@font-face {
    font-family: 'Tactic Sans Bold';
    src: url('/fonts/tactic-sans-bold.woff2') format('woff2'), url('/fonts/tactic-sans-bold.woff') format('woff'), url('/fonts/tactic-sans-bold.eot') format('embedded-opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.banner-text-overlay h1,
.banner-text-overlay h2 {
    font-family: 'Tactic Sans Bold', sans-serif;
}


body {
    font-family: 'Arimo', sans-serif;
}

.text-gold {
    color: #FFD700;
    font-family: 'Tactic Sans Bold', sans-serif;
}

.rotating-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    margin-bottom: 0;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

    .banner-image.active {
        opacity: 1;
        z-index: 1;
    }

.banner-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: rgba(255, 204, 0, 0.95);
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    transition: opacity 0.6s ease; /* fade effect */
    opacity: 1; /* default visible */
}


    .banner-text-overlay h1 {
        font-size: 12rem;
        font-weight: 900;
        margin-bottom: 0.2rem;
    }

    .banner-text-overlay h2 {
        font-size: 3.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

@media screen and (max-width: 768px) {
    .rotating-banner {
        aspect-ratio: 16 / 10;
    }

    .banner-text-overlay h1 {
        font-size: 4rem;
    }

    .banner-text-overlay h2 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .rotating-banner {
        aspect-ratio: 4 / 3;
    }

    .banner-text-overlay {
        left: 20px;
        bottom: 20px;
    }
}

.divider {
    height: 4px;
    width: 80px;
    background-color: #FFD700;
    opacity: 0.8;
    border-radius: 2px;
}

.full-width-strip {
    width: 100%;
    background-color: #FFD700;
    margin: 0;
    font-family: 'Tactic Sans Bold', sans-serif;
}

.border-gold {
    border-color: #FFD700 !important;
}
.accordion-button {
    font-family: 'Arimo', sans-serif;
    font-size: 1.2rem;
    color: #000;
}

.accordion-body ul {
    padding-left: 1.2rem;
    list-style-type: disc;
    font-size: 1.25rem; /* matches .fs-5 */
    color: #6c757d; /* Bootstrap's text-muted */
    font-family: 'Arimo', sans-serif;
}
.full-width-strip,
.edge-mission-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

    .edge-mission-section .row:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .full-width-strip h2 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
/* site.css or inside <style> without .fed-nav */
.cta-join {
    background-color: #FFD700 !important;
    color: #000 !important;
    font-family: 'Tactic Sans Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    border: none;
    display: inline-block;
    text-decoration: none;
}

    .cta-join:hover {
        background-color: transparent !important;
        color: #FFD700 !important;
        border: 2px solid #FFD700;
    }


