@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap'); /*This lets you use retro fonts like Orbitron*/

/* Root color variables */
:root {
    --pink: #800020; /*ACTUALLY RED*/
    --cyan: #00CCCC;
    --red: #BB0000; /* Improved content link color */
    --pastel-yellow: #fff89f;
    --white: #FFFFFF;
}

/* Body background */
body {
    font-family: 'Roboto', sans-serif;
    background-image: url('/images/backgroundMain.jpg');
    background-repeat: repeat;
    color: black;
    margin: 0;
}

/* make headers look retro*/
h1, h4 {
    font-family: 'Orbitron', sans-serif;
}

/* Navbar styling */
.pink-header {
    background-color: var(--pink);
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 0;
}

/* Logo image size constraints */
.navbar-brand img {
    max-height: 80px;
    height: auto;
    width: auto;
}

/* Navbar links (desktop view) */
.navbar-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.nav-item {
    margin: 0 6px;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    font-family: 'Orbitron', sans-serif;
}

/* NEW: force white for all nav link states */
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    color: var(--white) !important;
}

/* Desktop hover effect */
@media (min-width: 992px) {
    .nav-link:hover {
        color: var(--cyan) !important;
        transform: scale(1.1);
        text-shadow: 0 0 4px var(--cyan);
    }

    #navbarNav {
        margin-top: -16px;
    }
}

/* Hamburger (navbar-toggler) icon color */
.navbar-toggler {
    border-color: var(--white);
}

.navbar-toggler-icon {
    /* NEW: pure white hamburger bars */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Hamburger Styling */
@media (max-width: 991.98px) {
    .navbar-brand.mx-auto {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .navbar-collapse {
        background-color: var(--pink);
        padding: 10px 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 1px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

        .nav-item:last-child {
            border-bottom: none;
        }

    .nav-link {
        width: 100%;
        color: var(--white);
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

        .nav-link:hover {
            color: var(--cyan);
        }

    .navbar-toggler {
        z-index: 2;
    }

    .navbar .w-100.d-flex {
        flex-wrap: nowrap;
    }
}

/* Mobile logo sizing — moved to smaller breakpoint */
@media (max-width: 767.98px) {
    .navbar-brand img {
        max-width: 265px;
        height: auto;
    }
}

/* White content container */
.bg-white {
    background-color: white !important;
    color: black;
    box-shadow: 0 0 15px var(--pink);
    border: 2px solid var(--cyan);
}

    .bg-white h1,
    .bg-white p,
    .bg-white li {
        color: black;
    }

    /* Links inside white content container */
    .bg-white a {
        color: var(--red);
        font-weight: 550;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

        .bg-white a:hover {
            color: var(--pink);
            font-weight: 550;
        }

.bg-custom-dark {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 0 15px var(--pink);
    border: 1px solid white; /* or #fff */
}

.social-icons a.social-icon {
    color: #FF1483;
    font-size: 2rem;
    margin: 0 12px;
    transition: color 0.3s ease;
    display: inline-block;
}

    .social-icons a.social-icon:hover {
        color: #00CCCC;
        text-shadow: 0 0 8px #00CCCC;
        transform: scale(1.1);
    }

/* Links inside main content (outside navbar), excluding nav links */
main a {
    color: #00CCCC;
    font-weight: 550;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    main a:hover {
        color: #00EEEE;
        font-weight: 550;
    }

/* Optional: reduce margin between nav and content */
main {
    padding-top: 0 !important;
}

/*START CUSTOM BUTTON PINK WITH WHITE*/
.btn-primary {
    background-color: #800020;
    border-color: #FFFFFF;
    color: #FFFFFF !important;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        color: #FFFFFF !important;
        background-color: #800020;
        border-color: #FFFFFF;
    }
/*END CUSTOM BUTTON PINK WITH WHITE*/

/*START CARD CUSTOM TEXT*/
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(0.25rem - 1px);
            border-top-right-radius: calc(0.25rem - 1px);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(0.25rem - 1px);
            border-bottom-left-radius: calc(0.25rem - 1px);
        }

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0;
    }

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
    }

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
    flex-shrink: 0;
    width: 100%;
    border-radius: inherit;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        display: flex;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

        .card-deck .card {
            flex: 1 0 0%;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px;
        }
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 3;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

.accordion > .card {
    overflow: hidden;
}

    .accordion > .card:not(:last-of-type) {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .accordion > .card:not(:first-of-type) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: -1px;
    }
/*END CARD CUSTOM TEXT*/

/* START CAROUSEL CUSTOM CODE */
.carousel-item {
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 15%;
    right: 15%;
    text-align: center;
    z-index: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .carousel-caption h5 {
        font-size: 2rem;
        color: white;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        margin: 0;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        color: #f0f0f0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        margin: 0;
    }

    .carousel-caption .btn {
        font-size: 1.1rem;
        padding: 0.5rem 1.25rem;
        background-color: #FF1483;
        border: none;
        color: white;
        font-weight: bold;
        border-radius: 4px;
        transition: background-color 0.3s, box-shadow 0.3s;
    }

        .carousel-caption .btn:hover {
            background-color: #e01374;
            color: white;
        }

@media (max-width: 768px) {
    .carousel-caption {
        left: 10%;
        right: 10%;
        bottom: 10px;
    }

        .carousel-caption h5 {
            font-size: 1.5rem;
        }

        .carousel-caption p {
            font-size: 1rem;
        }

        .carousel-caption .btn {
            font-size: 1rem;
            padding: 0.75rem 1.5rem;
        }
}

@media (max-width: 480px) {
    .carousel-caption {
        left: 5%;
        right: 5%;
        bottom: 10px;
    }

        .carousel-caption h5 {
            font-size: 1.2rem;
        }

        .carousel-caption p {
            font-size: 0.9rem;
        }

        .carousel-caption .btn {
            font-size: 0.9rem;
            padding: 0.5rem 1.25rem;
        }
}
/* END CAROUSEL CUSTOM CODE */

/* START VIDEO CUSTOM CODE*/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/* END VIDEO CUSTOM CODE*/
