:root {
    --text-color: #1f1f1f;
    --heading-color: #5c5c5c;
    --link-color: #006e67;
    --link-hover: #68B0AB;
    --alt-text-color: #007CC5;
    --tab-color: #007CC5;
    --tab-text-color: #FFFFFF;
    --content-background-color: #fffae9;
    --header-color: #dceefc;
    --background-color: #D7F9FE;
    --nav-color: #5C5C5C;
    --nav-text-color: #FFFFFF;
    --nav-color-2: #979797; 
    --content-border-color: var(--alt-text-color);
    --radius: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color:var(--link-hover);
    text-decoration: underline;
}

p {
    color: var(--text-color);
    line-height: 1.6;
}

hr {
    margin: 20px 0px 10px 0px;
}

.indent {
text-indent: 50px;
}

.centered {
    text-align: center;
    align-content: center;
    vertical-align: middle;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: hsla(199, 80%, 72%, 1);
    background: linear-gradient(180deg, hsla(199, 80%, 72%, 1) 0%, hsla(187, 94%, 74%, 1) 68%, hsla(202, 100%, 39%, 1) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Header Section*/

.header {
    background: var(--header-color);
    padding-top: 10px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius) var(--radius);
    margin-bottom: 10px;
    align-content: center;
    overflow: visible;
}
    .header img {
        padding: 40px;
        max-width: 100%;
        max-height: 100%;
    }

    .header h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--heading-color);
        line-height: 1.2;
    }

/* Nav Bar */    
nav {
    background-color: var(--nav-color);
}
    .header > .navitems {
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
    }

    .footer > .navitems {
        border-top-left-radius: var(--radius);
        border-top-right-radius: var(--radius);
        margin-bottom: 10px;
    }

    .navitems ol {
        list-style-type: none;
    }

    .navitem {
        display: inline-block;
        color: var(--nav-text-color);
        padding: 0px 10px;
    }

    .navitem:hover {
        background-color: var(--nav-color-2);
    }

    .navitem a {
        color: var(--nav-text-color);
        font-weight: bold;
        font-size: x-large;
        text-decoration: none;
    }
    
    /* The dropdown container */
    .dropdown {
        border: none;
    }

    /* Dropdown button */
    .dropbtn {
    font-weight: bold;
    font-size: x-large;
    border: none;
    outline: none;
    color: var(--nav-text-color);
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    }

    /* Dropdown content (hidden by default) */
    .dropdown-content {
    margin-left: -10;
    display: none;
    position: absolute;
    color: var(--nav-text-color);
    background-color: var(--nav-color);
    min-width: 160px;
    padding: 0px 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    align-items: left;
    z-index: 9999;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    }

    /* Links inside the dropdown */
    .dropdown-content a {
    float: none;
    padding: 2px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: var(--nav-text-color);
    background-color: var(--nav-color);
    font-weight: bold;
    font-size: large;
    text-decoration: none;
    }

    /* Add a grey background color to dropdown links on hover */
    .dropdown-content a:hover {
        background-color: var(--nav-color-2);
    }

    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }

/* End of Nav Bar Section */
/* End of Header Section */
    
/* Info Banner - shouldnt be needed after initial site creation */
.info {
    background-color: palegoldenrod;
    color: #000;
    text-align: right;
    padding: 2 auto 2 auto;
    margin: 0 5 0 5;
    font-size:medium;
    font-style: bold;
    overflow: hidden;
    white-space: nowrap;
}

    .scroll-text {
        display: inline-block;
        animation: scroll-left 30s linear infinite;
    }

    @keyframes scroll-left {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-160%); }
    }

/* End of Info Banner */
/* Main content section */

/* Content Section Types */
.content-right {
    display: grid;
    grid-template-columns: 35% auto;
    column-gap: 10px;
}
.content-left {
    display: grid;
    grid-template-columns: auto 35%;
    column-gap: 10px;
}

.content-one {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
}

/* Content Blocks */
.content-block { /* Wrap all of the below in this. It helps for responsive UI stuff */
    display: flex;
    flex-flow: column;
    z-index: 0;
}

    .content-title-tab { /* The little tab at the top */
        margin-top: 10px;
        padding: 2px 30px;
        background: var(--tab-color);
        color: var(--tab-text-color);
        font-size: x-large;
        font-weight: bold;
        max-width: 75%;
        border-top-right-radius: var(--radius);
        border-top-left-radius: var(--radius);
    }

    .content-title-whole { /* Whole block width tab */
        margin-top: 10px;
        padding: 2px 30px;
        background: var(--tab-color);
        color: var(--tab-text-color);
        font-size: x-large;
        font-weight: bold;
        text-align: center;
        border-top-right-radius: var(--radius);
        border-top-left-radius: var(--radius);
    }
    .content-tab { /* Goes with litle tab  */
        background: var(--content-background-color);
        backdrop-filter: blur(20px);
        flex: 1 1 auto;
        padding: 30px 30px;
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        border-top-right-radius: var(--radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .content-whole { /* Goes with whole tab */
        background: var(--content-background-color);
        backdrop-filter: blur(20px);
        flex: 1 1 auto;
        padding: 30px 30px;
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .content-no-title { /* Goes with no Tab */
        background: var(--content-background-color);
        backdrop-filter: blur(20px);
        flex: 1 1 auto;
        margin-top: 10px;
        padding: 30px 30px;
        border-radius: var(--radius);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .content-tab h3, /* Some house keeping */
    .content-whole h3,
    .content-no-title h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .content-tab strong,
    .content-whole strong,
    .content-no-title strong {
        color: var(--alt-text-color);
    }
    .content-tab h4,
    .content-whole h4,
    .content-no-title h4 {
        color: var(--alt-text-color);
    }

    .content-tab ul,
    .content-whole ul,
    .content-no-title ul {
        margin-left: 30px;
    }

    .row {
        display: flex;
    }
    .column {
        flex: 50%;
        padding: 10px;
    }

.cta-button {
    align-items: center;
    background: var(--heading-color);
    color: var(--nav-text-color);
    padding: 16px 32px;
    border: none;
    border-radius: 20px;
    font-size: large;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.floater{
    flex: 1 1 auto;
    margin: 10 0 0 0;
}

.footer { /* Footer setup */
    background: var(--header-color);
    max-width: 500px;
    text-align: center;
    border-radius: var(--radius) var(--radius);
    padding: 10px;
    margin: 50px auto auto auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}