﻿/* Basic Reset */

@font-face {
    font-family: 'raleway-heavy';
    src: url('../fonts/raleway/raleway-heavy-webfont.eot');
    src: url('../fonts/raleway/raleway-heavy-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway/raleway-heavy-webfont.woff') format('woff'), url('../fonts/raleway/raleway-heavy-webfont.ttf') format('truetype'), url('../fonts/raleway/raleway-heavy-webfont.svg#ralewayheavy') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
}

body { 
}

a {
    color: #0087cc;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    a:hover {
        color: #ff7b29;
    }

/* Header Styles */
header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 600;
    background: #333333;
    transition: all 0.3s ease-in-out;
}

.header-content {
    width: 100%;
    max-width: 1200px;
    height: 66px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .logo {
    z-index: 600;
}

    header .logo a {
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        font: 0/0 a;
        text-shadow: none;
        color: transparent;
        width: 235px;
        height: 35px;
        background: url("../../images/secure-care-logo-nav.png") no-repeat center;
        background-size: 235px 35px;
        transition: all 0.5s ease-in-out;
    }
#appEnv {
    position: fixed;
    top: 81px !important;
    background-color: #fdd0b075;
    color: #333333;
    border: solid 1px #ffc264 !important;
    font-weight: bold;
    text-align: center;
    padding: 2px 20px;
    font-family: Verdana;
    font-size: small;
    left: 42%;
    z-index: 9999;
    border-radius: .25rem;
    width: fit-content !important;
} 
/* Navigation Styles */
#main-nav-wrap {
    font-family: "raleway-heavy", sans-serif;
    font-size: 10pt;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes fadeScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modalMain {
    animation: fadeScale 0.3s ease-out;
}
.main-navigation {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 66px;
}

    .main-navigation li {
        position: relative;
        display: inline-block;
        list-style: none;
        padding: 0;
        margin: 0;
        height: 66px;
    }

        .main-navigation li.current a {
            color: #FFFFFF;
        }

            .main-navigation li.current a::after {
                position: absolute;
                left: 50%;
                bottom: 0;
                width: 80%;
                height: 3px;
                transform: translateX(-50%);
                background-color: #da680f;
                content: '';
                display: block;
            }

        .main-navigation li.highlight a {
            color: #ffa056;
        }

        .main-navigation li.with-sep a {
            position: relative;
            padding-left: 13px;
            margin-left: 3px;
        }

            .main-navigation li.with-sep a::before {
                position: absolute;
                left: 0;
                top: 50%;
                width: 1px;
                height: 20px;
                margin-top: -10px;
                background-color: rgba(255, 255, 255, 0.2);
                content: '';
                display: block;
            }

        .main-navigation li a {
            display: block;
            padding: 18px 7px;
            line-height: 30px;
            text-decoration: none;
            text-align: left;
            color: #ffd9b8;
            position: relative;
            transition: color 0.3s ease-in-out;
        }

            .main-navigation li a:hover {
                color: #FFFFFF;
            }

/* Mobile Menu Toggle - CSS Only */
.menu-toggle-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 700;
}

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        position: relative;
        margin: 0 auto;
        background-color: white;
        transition: background 0.2s ease-in-out;
        font: 0/0 a;
        text-shadow: none;
        color: transparent;
    }

        .menu-toggle span::before,
        .menu-toggle span::after {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            background-color: inherit;
            left: 0;
            transition-duration: 0.2s, 0.2s;
            transition-delay: 0.2s, 0s;
        }

        .menu-toggle span::before {
            top: -8px;
            transition-property: top, transform;
        }

        .menu-toggle span::after {
            bottom: -8px;
            transition-property: bottom, transform;
        }

/* Checkbox checked state - animate to X */
.menu-toggle-checkbox:checked + .menu-toggle span {
    background-color: rgba(255, 255, 255, 0);
}

    .menu-toggle-checkbox:checked + .menu-toggle span::before,
    .menu-toggle-checkbox:checked + .menu-toggle span::after {
        background-color: white;
        transition-delay: 0s, 0.2s;
    }

    .menu-toggle-checkbox:checked + .menu-toggle span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle-checkbox:checked + .menu-toggle span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

/* Main Content */
main {
    margin-top: 66px;
    min-height: calc(100vh - 200px);
}

/* Footer Styles */
footer {
    position: relative;
    margin-top: 20px;
    padding-bottom: 3rem;
    font-size: 12pt;
    line-height: 2.7rem;
    color: #465166;
    background: #171b23;
}
    footer img {
        max-width: 200px;
    }

    footer a, footer a:visited {
        color: #ffc597 !important;
        cursor: pointer;
    }

        footer a:hover {
            color: #FFFFFF;
        }

.footer-bottom {
    padding-top: 3rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.width-250px {
    width: 250px;
    height: auto;
}

.copyright-text {
    color: #fff;
}

.copyright {
}

    .copyright span {
        display: inline-block;
        color: #fefefe;
    }

        .copyright span::after {
            content: "|";
            display: inline-block;
            padding: 0 1rem 0 1.2rem;
            color: rgba(255, 255, 255, 0.1);
        }

        .copyright span:last-child::after {
            display: none;
        }

    .copyright a {
        color: #ffc597;
    }

.omega-credit {
    color: #ffc597;
    margin-right: 10px;
    font-size: 12pt;
} 

/* Go to Top Button */
#go-top {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 600;
}

    #go-top a {
        text-decoration: none;
        border: 0 none;
        display: block;
        height: 66px;
        width: 60px;
        line-height: 66px;
        text-align: center;
        background: #da680f;
        color: #FFFFFF;
        font-size: 20px;
        transition: all 0.3s ease-in-out;
    }

        #go-top a:hover {
            background: #ff7b29;
            color: #FFFFFF;
        }

/* Responsive Design */
@media only screen and (max-width: 768px) {
    header {
        padding: 6px 0;
    }

    .header-content {
        height: 56px;
        padding: 0 20px;
        flex-wrap: wrap;
    }

    header .logo {
        flex: 0 0 auto;
    }

        header .logo a {
            width: 180px;
            height: 28px;
            background-size: 180px 28px;
        }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    #main-nav-wrap {
        width: 100%;
        order: 3;
        flex-basis: 100%;
    }

    .main-navigation {
        background: #333333;
        padding: 20px 30px;
        margin: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

    /* Show menu when checkbox is checked */
    .menu-toggle-checkbox:checked ~ #main-nav-wrap .main-navigation {
        display: flex;
    }

    .main-navigation li {
        display: block;
        width: 100%;
        height: auto;
        text-align: left;
        border-bottom: 1px dotted rgba(200, 200, 200, 0.08);
        padding: 0;
    }

        .main-navigation li:first-child {
            border-top: 1px dotted rgba(200, 200, 200, 0.08);
        }

        .main-navigation li a {
            display: block;
            color: #ffd9b8;
            width: 100%;
            padding: 15px 0;
            line-height: 20px;
            border: none;
        }

        .main-navigation li.with-sep a {
            padding-left: 0;
            margin-left: 0;
        }

            .main-navigation li.with-sep a::before {
                display: none;
            }

        .main-navigation li.current > a::after {
            display: none;
        }

    main {
        margin-top: 56px;
    }
} 