* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
}

html {
    scroll-behavior: smooth;
    /*This enables the #to-top link to scroll backwards back up instead of just jumping back up to the top instantly*/
}

body {
    /* background: linear-gradient(to left,#5D7DEA, #1AE4DA); */
    height: 400vh;
    /* << CRITICAL: Creates the scrollable space */
    overflow-x: hidden;

    /* overflow-y: hidden; */
    @media screen and (max-width: 1023px) {
        overflow-y: hidden;
    }

    /* display: grid;
    place-items: center; */
}

/* DEFAULT MOBILE FIRST STYLES 550px*/
@media screen and (max-width: 430px) {

    /* This is the sidebar itself. We are repurposing your existing nav element. */
    .header_links {
        position: fixed;
        /* Takes it out of the normal flow */
        top: 0;
        right: 0;
        height: 100vh;
        /* Full screen height */
        width: 280px;
        /* Set a width for the sidebar */
        background-color: #2d232e;
        /* A solid background */
        z-index: 1000;
        /* Ensures it's on top of other content */
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        /* Stack the links vertically */
        align-items: center;
        gap: 30px;

        /* Animation setup */
        transform: translateX(100%);
        /* Start fully off-screen to the right */
        transition: transform 0.4s ease-in-out;
    }

    /* This is the "open" state that we will toggle with JavaScript */
    .header_links.sidebar-open {
        transform: translateX(0);
        /* Slides it into view */
    }

    /* Make the links inside the sidebar bigger and easier to click */
    .header_links .header_links__link {
        font-size: 1.5em;
        color: #E5E1EE;
    }

    /* Style the overlay for the dimming effect */
    #sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        /* Just below the sidebar */

        /* Animation setup */
        opacity: 0;
        pointer-events: none;
        /* Can't be clicked when invisible */
        transition: opacity 0.4s ease-in-out;
    }

    /* The "visible" state for the overlay */
    #sidebar-overlay.overlay-visible {
        opacity: 1;
        pointer-events: auto;
        /* Can be clicked now */
    }

    .hamburger {
        /* margin-right: 7.5vw; */
        /* padding-bottom: 45px; */
        /* border: 5px solid #E5E1EE; */
        /* transform: translateY(-10px); */
        /* transform: translateX(-10px); */
    }

    .burger_menu {
        margin-top: 7vh;
        width: 30px;
        height: 30px;
        margin-right: 3vw;
        /* border: 5px solid red; */
        /* padding-bottom: 35px; */
        /* transform: translateX(10px);
        margin-top: 40px; */
    }

    .smallLogo {
        width: 50px;
        height: 50px;
        margin-left: 7.5vw;
        /* border: 5px solid blue; */
        /* padding-bottom: 35px; */
        /* transform: translateX(10px); */
        margin-top: 40px;
    }

    .hero {
        /* border: orange 5px solid; */
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 5vh;
        align-items: center;
        text-align: center;
        /* gap: 20px; */
        /* padding: 0 20px; */
        /* padding-bottom: 20vh; */
    }

    .bigLogo {
        display: none;
    }

    .logoFont {
        font-family: "Staatliches", sans-serif;
        font-weight: 400;
        font-style: normal;
        /* border: green 5px solid; */
        /* width: 35vw; */
        text-wrap-mode: nowrap;
        font-size: 1.5em;
        /* margin-left: 20px; */
        max-width: 15vw;
        transform: translateY(30px);
    }

    .logoFont_subtitle {
        display: none;
        font-family: "Goldman", sans-serif;
        font-weight: 300;
        font-style: italic;
        /* border: green 5px solid; */
        /* width: 35vw; */
        text-wrap-mode: nowrap;
        font-size: 0.65em;
        /* margin-top: -10px; */
        letter-spacing: 2px;
        /* color: #f0f0f0; */
    }

    h1 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: blue 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top: 10px;
        font-size: 3.0em;
    }

    h2 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: purple 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-top: 10px;
        font-size: 2.5em;
        margin-bottom: 5vh;
    }

    header {
        position: fixed;
        z-index: 100;
        padding-top: 35px;
        /* padding-left: 7.5vw; */
        width: 100vw;
        display: flex;
        align-items: center;
        /* justify-items: center; */
        justify-content: space-between;
        /* border: red 5px solid; */
        height: 10vh;
    }

    .logo {
        /* margin-top: 5vh; */
        /* margin-left: -50px; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* border: pink 5px solid; */
        /* margin: 0px;
        padding: 0px; */
        display: flex;
        /* flex-wrap: nowrap; */
        /* flex-direction: column; */
        width: 25vw;
        height: 10vw;
        align-items: center;
        /* align-content: center;
        align-self: center;
        justify-content: center;*/
        text-align: center;
        /* justify-items: center;
        justify-self: center; */
    }


    header nav {
        /* float: right; */
        display: none;
        /* margin-right: 7.5vw;
        display: flex;
        gap: 20px; */
        /* border: black 5px solid; */
    }

    a {
        text-decoration: none;
        color: #E5E1EE;
    }

    button {
        width: 100px;
        height: 40px;
        background: linear-gradient(to left, #1AE4DA, #5D7DEA);
        backdrop-filter: blur(50px) contrast(120%) opacity(0.2);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    button:hover {
        width: 100px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        /* semi-transparent */
        backdrop-filter: blur(8px) contrast(120%);
        border-radius: 10px;
        border: 2px solid #E5E1EE;
        /* color: #222; */
        /* box-shadow: 0 2px 8px rgba(0,0,0,0.5); */
        box-shadow: none;
    }

    p {
        font-size: 1.25em;
        font-weight: 400;
        /* color: white; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        background: rgba(255, 255, 255, 0.05);
        /* semi-transparent */
        backdrop-filter: blur(2px);
    }

    main {
        /* border: red 5px solid; */
        width: 100vw;
        /* height: 80vh; */
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        /* background-image: url("images/hero-option-one.png"); */
        /* background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 75%, rgba(59, 178, 226, 1) 100%), url('images/hero-option-one.png'); */
        /* background-color: red; */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }

    /* 
    footer {
    position: absolute;  
    bottom: 0px;
    width: 100%;
    background-color: #888888;
    } */

    footer {
        /* border: 5px solid red; */
        /* margin-top: 25px; */
        float: center;
        text-align: center;
        padding-top: 0px;
        /* height: 20px; */
    }

    .logoFont,
    .logoFont_subtitle {
        padding-left: 10px;
    }

    .socialHeader {
        font-size: 0.8em;
        position: fixed;
        width: 100vw;
        z-index: 150;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* gap: 10px; */
        margin-top: 0px;
        padding-left: 7.5vw;
        padding-right: 7.5vw;
        padding-top: 5px;
        background: #2d232e;

        /* border: white 2px solid; */
        img {
            /* width: 20px;
            height: 20px; */
            margin-right: 5px;
            margin-left: 5px;
            filter: invert(100%);
            /* border: red 5px solid; */
        }
    }

    .section_text {
        width: 75vw;
        font-size: 1.2em;
    }

    .service_title {
        margin-top: 35vh;
        /* border: 2px solid gold; */
        /* margin-top: 200px; */
    }

    .services_container {
        /* border: 2px solid magenta; */
        margin-top: -250px;
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        grid-gap: 2.5vh;
        /* gap: 5vw; */
        /* flex-wrap: nowrap; */
        /* border: red 5px solid; */
        transform: translateY(200px);
        /* margin-top: 5vh;
        margin-bottom: 5vh; */
        z-index: 10;
    }

    .service_item {
        /* border: 5px solid blue; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        grid-gap: 5vh;
        width: 20vw;
        height: 30vh;
        /* margin: 0 10px; */
    }

    .services_image {
        width: 15vw;
        height: 15vw;
        border: 1px solid #E5E1EE;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .services_title {
        text-wrap-mode: nowrap;
        margin-bottom: 300px;
        display: inline;
        font-size: 1.1em;
        font-weight: 600;
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* margin-top: 10px;
        margin-bottom: 5px; */
    }

    .services_text {
        display: none;
        font-size: 1.0em;
        font-weight: 400;
        /* color: white; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* background: rgba(255,255,255,0.05); 
        backdrop-filter: blur(8px) contrast(120%); */
        line-height: 1.5em;
        border-radius: 10px;
    }

    .hero_subtitle {
        max-width: 70vw;
    }
}

/* TABLET SIZE STYLES 551 */
@media screen and (min-width: 431px) and (max-width: 1023px) {
    .hamburger {
        margin-right: 7.5vw;
        padding-bottom: 35px;

    }

    /* This is the sidebar itself. We are repurposing your existing nav element. */
    .header_links {
        position: fixed;
        /* Takes it out of the normal flow */
        top: 0;
        right: 0;
        height: 100vh;
        /* Full screen height */
        width: 280px;
        /* Set a width for the sidebar */
        background-color: #2d232e;
        /* A solid background */
        z-index: 1000;
        /* Ensures it's on top of other content */
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        /* Stack the links vertically */
        align-items: center;
        gap: 30px;

        /* Animation setup */
        transform: translateX(100%);
        /* Start fully off-screen to the right */
        transition: transform 0.4s ease-in-out;
    }

    /* This is the "open" state that we will toggle with JavaScript */
    .header_links.sidebar-open {
        transform: translateX(0);
        /* Slides it into view */
    }

    /* Make the links inside the sidebar bigger and easier to click */
    .header_links .header_links__link {
        font-size: 1.5em;
        color: #E5E1EE;
    }

    /* Style the overlay for the dimming effect */
    #sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        /* Just below the sidebar */

        /* Animation setup */
        opacity: 0;
        pointer-events: none;
        /* Can't be clicked when invisible */
        transition: opacity 0.4s ease-in-out;
    }

    /* The "visible" state for the overlay */
    #sidebar-overlay.overlay-visible {
        opacity: 1;
        pointer-events: auto;
        /* Can be clicked now */
    }

    .hero {
        /* border: orange 5px solid; */
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 5vh;
        align-items: center;
        text-align: center;
        /* gap: 20px; */
        /* padding: 0 20px; */
        /* padding-bottom: 20vh; */
    }

    .smallLogo {
        display: none
    }

    .logoFont {
        font-family: "Staatliches", sans-serif;
        font-weight: 400;
        font-style: normal;
        /* border: green 5px solid; */
        /* width: 35vw; */
        /* text-wrap-mode: nowrap; */
        font-size: 1.6em;
    }

    .logoFont_subtitle {
        font-family: "Goldman", sans-serif;
        font-weight: 300;
        font-style: italic;
        /* border: green 5px solid; */
        /* width: 35vw; */
        text-wrap-mode: nowrap;
        font-size: 0.65em;
        /* margin-top: -10px; */
        letter-spacing: 2px;
        /* color: #f0f0f0; */
    }

    h1 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: blue 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top: 10px;
        font-size: 3.0em;
    }

    h2 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: purple 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-top: 10px;
        font-size: 2.5em;
        margin-bottom: 5vh;
    }

    header {
        position: fixed;
        padding-top: 65px;
        padding-left: 7.5vw;
        width: 100vw;
        display: flex;
        align-items: center;
        /* justify-items: center; */
        justify-content: space-between;
        /* border: red 5px solid; */
        height: 10vh;
    }

    .logo {
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* border: pink 5px solid; */
        /* margin: 0px;
        padding: 0px; */
        display: flex;
        /* flex-wrap: nowrap; */
        /* flex-direction: column; */
        width: 25vw;
        height: 10vw;
        align-items: center;
        /* align-content: center;
        align-self: center;
        justify-content: center;*/
        text-align: center;
        /* justify-items: center;
        justify-self: center; */
    }

    header img {
        margin-top: 40px;
        margin-left: 0px;
        /* border: black 5px solid; */
        /* float:left; */
        /* scale: 0.25; */
    }

    header nav {
        /* float: right; */
        display: none;
        /* margin-right: 7.5vw;
        display: flex;
        gap: 20px; */
        /* border: black 5px solid; */
    }

    a {
        text-decoration: none;
        color: #E5E1EE;
    }

    button {
        width: 100px;
        height: 40px;
        background: linear-gradient(to left, #1AE4DA, #5D7DEA);
        backdrop-filter: blur(50px) contrast(120%) opacity(0.2);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    button:hover {
        width: 100px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        /* semi-transparent */
        backdrop-filter: blur(8px) contrast(120%);
        border-radius: 10px;
        border: 2px solid #E5E1EE;
        /* color: #222; */
        /* box-shadow: 0 2px 8px rgba(0,0,0,0.5); */
        box-shadow: none;
    }

    p {
        font-size: 1.25em;
        font-weight: 400;
        /* color: white; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* background: rgba(255,255,255,0.05);
        backdrop-filter: blur(8px) contrast(120%); */
    }

    main {
        /* border: yellow 5px solid; */
        width: 100vw;
        /* height: 80vh; */
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        /* background-image: url("images/hero-option-one.png"); */
        /* background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 75%, rgba(59, 178, 226, 1) 100%), url('images/hero-option-one.png'); */
        /* background-color: red; */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }

    /* 
    footer {
    position: absolute;  
    bottom: 0px;
    width: 100%;
    background-color: #888888;
    } */

    footer {
        /* border: 5px solid red; */
        /* margin-top: 25px; */
        float: center;
        text-align: center;
        padding-top: 0px;
        /* height: 20px; */
    }

    .logoFont,
    .logoFont_subtitle {
        padding-left: 10px;
    }

    .socialHeader {
        position: fixed;
        width: 100vw;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* gap: 10px; */
        margin-top: 0px;
        padding-left: 7.5vw;
        padding-right: 7.5vw;
        padding-top: 5px;
        background: #2d232e;

        /* border: white 2px solid; */
        img {
            /* width: 20px;
            height: 20px; */
            margin-right: 5px;
            margin-left: 5px;
            filter: invert(100%);
            /* border: red 5px solid; */
        }
    }

    .section_text {
        width: 75vw;
        font-size: 1.4em;
    }

    .services_container {
        margin-top: -100px;
        height: 50vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        grid-gap: 2.5vh;
        /* gap: 5vw; */
        /* flex-wrap: nowrap; */
        /* border: red 5px solid; */
        /* margin-top: 5vh;
        margin-bottom: 5vh; */
        z-index: 10;
    }

    .service_item {
        /* border: 5px solid blue; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        grid-gap: 2vh;
        width: 20vw;
        height: 30vh;
        /* margin: 0 10px; */
    }

    .services_image {
        width: 15vw;
        height: 15vw;
        border: 1px solid #E5E1EE;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .services_title {
        display: inline;
        font-size: 1.75em;
        font-weight: 600;
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* margin-top: 10px;
        margin-bottom: 5px; */
    }

    .services_text {
        display: none;
        font-size: 1.5em;
        font-weight: 400;
        /* color: white; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* background: rgba(255,255,255,0.05);
        backdrop-filter: blur(8px) contrast(120%); */
        line-height: 1.5em;
        border-radius: 10px;
    }

    .hero_subtitle {
        font-size: 1.5em;
    }
}

/* FULL DESKTOP STYLE */
@media screen and (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .hero {
        /* border: orange 5px solid; */
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-gap: 7.5vh;
        align-items: center;
        text-align: center;
        /* gap: 20px; */
        /* padding: 0 20px; */
        /* padding-bottom: 20vh; */
    }

    .logoFont {
        font-family: "Staatliches", sans-serif;
        font-weight: 400;
        font-style: normal;
        /* border: green 5px solid; */
        /* width: 35vw; */
        /* text-wrap-mode: nowrap; */
        font-size: 1.6em;
    }

    .logoFont_subtitle {
        font-family: "Goldman", sans-serif;
        font-weight: 300;
        font-style: italic;
        /* border: green 5px solid; */
        /* width: 35vw; */
        text-wrap-mode: nowrap;
        font-size: 0.65em;
        /* margin-top: -10px; */
        letter-spacing: 2px;
        /* color: #f0f0f0; */
    }

    h1 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: blue 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-top: 10px;
        font-size: 3.1em;
    }

    h2 {
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* border: purple 5px solid; */
        /* font-family: "Jura", sans-serif; */
        font-family: "Goldman", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-top: 10px;
        font-size: 2.5em;
        margin-bottom: 5vh;
    }

    header {
        position: fixed;
        z-index: 100;
        padding-top: 45px;
        padding-left: 7.0vw;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* border: red 5px solid; */
        height: 10vh;
    }

    .smallLogo {
        display: none
    }

    .logo {
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* border: pink 5px solid; */
        /* margin: 0px;
        padding: 0px; */
        display: flex;
        /* flex-wrap: nowrap; */
        /* flex-direction: column; */
        width: 25vw;
        height: 10vw;
        align-items: center;
        /* align-content: center;
        align-self: center;
        justify-content: center;*/
        text-align: center;
        /* justify-items: center;
        justify-self: center; */
    }

    header img {
        margin-top: 40px;
        margin-left: 0px;
        /* border: black 5px solid; */
        /* float:left; */
        /* scale: 0.25; */
    }

    header nav {
        /* float: right; */
        margin-right: 3vw;
        display: flex;
        gap: 2px;

        /* border: black 5px solid; */
        a {
            margin-top: 17px;
            border-radius: 10px;
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.5); */
            padding: 3px 5px;
            background: rgba(255, 255, 255, 0.05);
            /* semi-transparent */
            backdrop-filter: blur(8px) contrast(120%);
            font-size: 1.25em;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        a:hover {
            background: rgba(255, 255, 255, 0.4);
            /* semi-transparent */
            /* border: 2px solid white; */
            box-shadow: none;
        }
    }

    a {
        text-decoration: none;
        color: #E5E1EE;
    }

    button {
        width: 100px;
        height: 40px;
        background: linear-gradient(to left, #1AE4DA, #5D7DEA);
        backdrop-filter: blur(50px) contrast(120%) opacity(0.2);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    button:hover {
        width: 100px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        /* semi-transparent */
        backdrop-filter: blur(8px) contrast(120%);
        border-radius: 10px;
        border: 2px solid #E5E1EE;
        /* color: #222; */
        /* box-shadow: 0 2px 8px rgba(0,0,0,0.5); */
        box-shadow: none;
    }

    p {
        font-size: 1.75em;
        font-weight: 400;
        line-height: 1.5em;
        /* color: white; */
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* background: rgba(255,255,255,0.05);
        backdrop-filter: blur(8px) contrast(120%); */
        border-radius: 10px;
    }

    main {
        /* border: yellow 5px solid; */
        width: 100vw;
        /* height: 80vh; */
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        /* background-image: url("images/hero-option-one.png"); */
        /* background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 85%, rgba(59, 178, 226, 1) 100%), url('images/hero-option-one.png'); */
        /* background-color: red; */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }

    /* 
    footer {
    position: absolute;  
    bottom: 0px;
    width: 100%;
    background-color: #888888;
    } */

    footer {
        /* border: 5px solid red; */
        /* margin-top: 25px; */
        float: center;
        text-align: center;
        padding-top: 0px;
        /* height: 20px; */
    }

    .logoFont,
    .logoFont_subtitle {
        padding-left: 10px;
    }

    .socialHeader {
        position: fixed;
        width: 100vw;
        z-index: 150;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* gap: 10px; */
        margin-top: 0px;
        padding-left: 7.5vw;
        padding-right: 7.5vw;
        padding-top: 5px;
        background: #2d232e;

        /* border: white 2px solid; */
        img {
            /* width: 20px;
            height: 20px; */
            margin-right: 5px;
            margin-left: 5px;
            filter: invert(100%);
            /* border: red 5px solid; */
        }
    }

    .section_text {
        width: 75vw;
        font-size: 1.6em;
    }

    .services_container {
        margin-top: 5vh;
        /* height: 100vh; */
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        grid-gap: 10vw;
        /* gap: 5vw; */
        /* flex-wrap: nowrap; */
        /* border: red 5px solid; */
        /* margin-top: 5vh;
        margin-bottom: 5vh; */
        z-index: 10;
        width: 100vw;
        height: 50vh;
    }

    .service_item {
        /* border: 5px solid blue; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        grid-gap: 2vh;
        width: 10vw;
        height: 10vh;
        margin: 0px;
    }

    .services_image {
        width: 15vw;
        height: 15vw;
        border: 1px solid #E5E1EE;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .services_title {
        display: inline;
        font-size: 1.75em;
        font-weight: 600;
        color: #0B132B;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #E5E1EE,
            /* Top-left shadow */
            1px -1px 0 #E5E1EE,
            /* Top-right shadow */
            -1px 1px 0 #E5E1EE,
            /* Bottom-left shadow */
            1px 1px 0 #E5E1EE;
        /* Bottom-right shadow */
        /* margin-top: 10px;
        margin-bottom: 5px; */
    }

    .services_text {
        display: none;
        font-size: 1.5em;
        font-weight: 400;
        /* color: white; */
        color: #E5E1EE;
        /* Text fill color */
        text-shadow:
            -1px -1px 0 #0B132B,
            /* Top-left shadow */
            1px -1px 0 #0B132B,
            /* Top-right shadow */
            -1px 1px 0 #0B132B,
            /* Bottom-left shadow */
            1px 1px 0 #0B132B;
        /* Bottom-right shadow */
        /* background: rgba(255,255,255,0.05);
        backdrop-filter: blur(8px) contrast(120%); */
        line-height: 1.5em;
        border-radius: 10px;
    }
}

/* CSS for scroll scrubbing video overlay */
/* Teacher's Comment: The video is positioned using `fixed` so it stays
           locked to the viewport and doesn't scroll with the page. z-index: -1
           ensures it stays behind all other content. `object-fit: cover` makes
           the video fill the entire screen without being stretched or squashed. */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Teacher's Comment: This is the container for the text content that will
           scroll "over" the video. We give it a high z-index to ensure it's on top.
           The text color and shadow make it readable against a potentially busy video. */
#scroll-content {
    position: relative;
    z-index: 1;
    padding: 50px;
    color: #E5E1EE;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    /* border: 2px solid cyan; */
    height: 100vh;
    /* Each section takes up a full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E5E1EE;
    font-size: 2em;
    transition: opacity 0.5s ease;
}

.about {
    text-align: center;
    width: 100vw;
    padding: 20vw
}

/* ========================================================================== */
/* 2. NEW CSS: Arrow Navigation Styling */
/* ========================================================================== */
.nav-arrows {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-arrow:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.6);
}

.nav-arrow img {
    width: 50%;
    height: auto;
}

/* This class will be added/removed by JavaScript to hide arrows */
.nav-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    /* Makes the hidden arrow unclickable */
}

/* useless? */
.hamburger:hover {
    scale: 1.1;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.85s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* mobile-first -> into min width 1024 -> into Desktop */
/* ========================================================================== */
/*                          MODAL FORM STYLES                                 */
/* ========================================================================== */

/* The full-screen background overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 19, 43, 0.7);
    /* Use your dark blue for the overlay */
    z-index: 2000;
    /* Ensure it's on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation for showing/hiding */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

/* Add this class with JS to show the modal */
.modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* The modal pop-up box */
.modal-content {
    background: #2d232e;
    /* Matches your social header */
    padding: 30px 40px;
    border-radius: 10px;
    border: 1px solid rgba(229, 225, 238, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
    position: relative;

    /* Animation for the pop-up effect */
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

/* The 'X' close button */
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5em;
    color: #E5E1EE;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.modal-close-btn:hover {
    transform: scale(1.2);
}

/* Styling for the form elements to match your site */
.modal-content .modal-title {
    margin-bottom: 10px;
    text-align: center;
}

.modal-content .modal-subtitle {
    text-align: center;
    font-size: 1em;
    margin-bottom: 25px;
    background: none;
    /* Remove background from p tags inside modal */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #E5E1EE;
    text-shadow: none;
    /* Remove text shadow for readability */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #5D7DEA;
    background-color: rgba(11, 19, 43, 0.5);
    color: #E5E1EE;
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #1AE4DA;
}

.modal-content button {
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
    font-size: 1.1em;
    height: auto;
    /* Override fixed height for button */
}

/* Styling for the new character counter */
.char-counter {
    text-align: right;
    font-size: 0.9em;
    color: #aaa;
    margin-top: 5px;
    transition: color 0.3s ease;
}

/* Style for when the user is near or over the limit */
.char-counter.limit-reached {
    /* color: #e44c65; */
    color: #9C0D38;
    font-weight: bold;
}

/* ========================================================================== */
/*                      GALLERY MODAL & BLUEPRINT STYLES                      */
/* ========================================================================== */

/* The blueprint background for the overlay */
.blueprint-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    --color: rgba(114, 114, 114, 0.2);
    /* Made it slightly more transparent */
    background-color: rgba(25, 26, 26, 0.7);
    /* Dark semi-transparent base */
    background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent);
    background-size: 55px 55px;
    z-index: 2001;
    /* Above the dark overlay, below the content */
}

/* This is the container for the swiper, centered in the screen */
.gallery-content {
    position: relative;
    width: 80vw;
    height: 80vh;
    z-index: 2002;
    /* On top of the blueprint background */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Animation for the pop-up effect */
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

#gallery-modal.visible .gallery-content {
    transform: scale(1);
}

.gallery-close-btn {
    position: absolute;
    top: -15px;
    /* Position it slightly above the swiper container */
    right: -15px;
    /* And slightly to the right */
    z-index: 2010;
    /* Ensure it's on top of the swiper content */

    width: 44px;
    height: 44px;
    background-color: #2d232e;
    /* Matches your form modal background */
    color: #E5E1EE;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 40px;
    /* Vertically center the 'X' */
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(229, 225, 238, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-close-btn:hover {
    transform: scale(1.1);
    background-color: #9C0D38;
    /* A nice highlight color on hover */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* This preserves the aspect ratio */
    border-radius: 10px;
}

/* Theming Swiper UI to match your site's colors */
.swiper-button-next,
.swiper-button-prev {
    color: #1AE4DA;
    /* Your theme's aqua color */
}

.swiper-pagination-bullet-active {
    background: #5D7DEA;
    /* Your theme's blue color */
}

/* ========================================================================== */
/*                      GALLERY CATEGORY PILLS                                */
/* ========================================================================== */

/* Update gallery content to stack elements */
.gallery-content {
    flex-direction: column;
    gap: 10px;
}

.gallery-categories {
    display: flex;
    gap: 15px;
    z-index: 2011;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.gallery-category-pill {
    padding: 8px 20px;
    border-radius: 25px;
    background: rgba(45, 35, 46, 0.9);
    border: 1px solid #E5E1EE;
    color: #E5E1EE;
    cursor: pointer;
    font-family: "Staatliches", sans-serif;
    letter-spacing: 1px;
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* FIX: Override global button styles */
    width: auto;
    height: auto;
    min-width: 80px;
    /* Optional: ensures very short words aren't too small */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.gallery-category-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);

    /* FIX: Ensure width stays auto on hover */
    width: auto;
    height: auto;
}

.gallery-category-pill.active {
    background: linear-gradient(135deg, #1AE4DA, #5D7DEA);
    border-color: transparent;
    color: #0B132B;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(93, 125, 234, 0.6);
    transform: scale(1.05);
}

/* Adjust swiper height to account for pills */
.swiper {
    flex: 1;
    min-height: 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .gallery-category-pill {
        font-size: clamp(0.7rem, 4vw, 1rem);
        /* Dynamic font size */
        padding: 6px 12px;
        /* Reduced padding */
        min-width: 60px;
        /* Reduced min-width */
    }

    .gallery-categories {
        gap: 8px;
        /* Tighter gap */
    }

    /* Make room for arrows by shrinking container width */
    .gallery-content {
        width: 70vw;
    }

    /* Allow arrows to sit outside the container */
    .swiper {
        overflow: visible;
        --swiper-navigation-size: 25px;
        /* Smaller arrows */
    }

    /* Pull arrows out to ~5vw from screen edge */
    /* Container is 70vw -> 15vw margins. */
    /* -10vw puts it at 5vw screen pos. */
    .swiper-button-prev {
        left: -12vw;
    }

    .swiper-button-next {
        right: -12vw;
    }

    /* Move close button to fixed position on mobile to prevent overlap */
    .gallery-close-btn {
        /* width: 37px;
        height: 37px; */
        /* font-size: 1.5em; */
        position: fixed;
        top: -15px;
        right: -35px;
        z-index: 2020;
        /* Ensure it's above everything */
        background-color: rgba(45, 35, 46, 0.8);
        /* Semi-transparent bg */
        backdrop-filter: blur(4px);
    }

    /* Push content down so it doesn't overlap with the fixed close button */
    .gallery-content {
        justify-content: flex-start;
        /* Start from top instead of center */
        padding-top: 25px;
        /* Leave space for the X button */
        height: 90vh;
        /* Increase height slightly for mobile */
    }
}