@font-face {
    font-family: 'Zona Pro';
    src: url('fonts/Zona\ Pro\ Bold\ .woff2') format('woff2'),
         url('fonts/Zona\ Pro\ Bold\ .woff') format('woff');
    font-style: normal;
    font-weight: bold;
    font-display: auto;
}

@font-face {
    font-family: 'Zona Pro SemiBold';
    src: url('fonts/Zona\ Pro\ SemiBold\ .woff2') format('woff2'),
         url('fonts/Zona\ Pro\ SemiBold\ .woff') format('woff');
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: 'Zona Pro Light';
    src: url('fonts/Zona\ Pro\ Light\ .woff2') format('woff2'),
         url('fonts/Zona\ Pro\ Light\ .woff') format('woff');
    font-style: normal;
    font-weight: lighter;
    font-display: auto;
}

@font-face {
    font-family: 'Zona Pro';
    src: url('fonts/Zona\ Pro\ Regular\ .woff2') format('woff2'),
         url('fonts/Zona\ Pro\ Regular\ .woff') format('woff');
    font-style: normal;
    font-weight: normal;
    font-display: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Zona Pro SemiBold', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

/* Logo Styling */

.logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    z-index: 999;
    padding: 2% 0%;
}

.logo-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0rem 1rem;
}

.logo-item img {
    height: 7.5vw
}

a {
    text-decoration: none;
}

h1 {
    font-family: 'Zona Pro Light', sans-serif;
    font-weight: 400;
    font-size: 1.75vw;
    padding-top: 3vw;
    color: #00B0F2;
    text-decoration: none;
}

.mobile-logo {
    display: none;
}

.hamburger-icon {
    display: none;
}

/* Mobile Nav Styling */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%; /* Start off-screen */
    width: 70%;
    background-color: #EF16AC;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    letter-spacing: .01em;
    transition: text-shadow .3s;
}

.mobile-nav a:hover {
    text-shadow: 0 0 1px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
}

.mobile-nav.active {
    right: 0; /* Slide in */
}

/* Navbar Styling */

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background-color: #EF16AC;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 999
}

ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    width: 100%;
    height: 100%;
    margin: 0% 5%;
    padding: 0;
    box-sizing: border-box;
}

li {
    font-family: 'Zona Pro', sans-serif;
    font-size: 1.4vw;
    font-weight: normal;
    height: 100%;
    box-sizing: border-box;
}

.navbar a {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
    padding: 1vw;
    margin: 0;
    color: #fff;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    box-sizing: border-box;
    letter-spacing: .01em;
    transition: text-shadow .3s;
}

 .navbar a:hover {
    text-shadow: 0 0 1px #FFF, 0 0 1px #FFF, 0 0 1px #FFF;
 }
 
 .navbar a.active {
    color: #00B0F2;
    background-color: white;
    border-top: 2px solid #00B0F2;    border-bottom: 2px solid #00B0F2;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo-item {
        display: none;
    }

    .mobile-logo {
        display: flex;
        width: 100vw;
        position: relative;   
    }

    .logo {
        position: sticky;
        top: 0;
        background-color: white;
    }


    .hamburger-icon {
        display: block;
        position: absolute;
        top: 0rem;
        right: 0.5rem;
        width: 6vw;
        height: auto;
        z-index: 1000;
        cursor: pointer;
        padding: 1rem;

    }

    .mobile-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20vw;
    }

    .mobile-nav li {
        width: 100%;
        font-size: 5vw;
        text-align: center;
    }
}

/* Content wrapper */

.content-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .content-layout {
        padding: 0;
        margin: 0;
    }
}

/* Content Styling */

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 80%;
    margin: 3% 0;
    box-sizing: border-box;
    font-size: 1vw;
}

.content-grid {
    display: grid;
    grid-template-columns: auto auto;
    width: 95.5%;
    grid-gap: 2rem;
    padding: 0rem;
}

.content-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding-right: 0.5rem;
    margin: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.content-item a {
    text-decoration: none;
}

.content-item img {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.content-item h3 span {
    font-family: 'Zona Pro Light';
}

.content-item h3, .content-item p{
    margin: 0;
    padding: 0;
}

.content-item h3{
    font-weight: normal;
    color: #B96DE2;
}

.content-item p{
    color: black;
}

@media (max-width: 768px) {
    .content {
        width: 96%;
        max-width: 96%;
    }

    

    .content-grid {
        display: grid;
        grid-template-columns: auto;
        width: 96%;
        grid-gap: 4vw;
        padding: 0rem;
    }

    .content-item img {
        margin: 0;
        margin-bottom: 1vw;
        padding: 0;
        max-width: 100%;
    }

    .content-item h3 {
        font-size: 3vw;
    }

    .content-item p {
        font-size: 3vw;
    }
}

/* Bottom Footer Styling */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    border-top: 2px solid #EF16AC;
    font-family: 'Zona Pro SemiBold', sans-serif;
    font-size: 1vw;
    padding: 1vw 0vw;
}

.footer-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1vw;
    padding: 0 11.5vw;
}

.footer-item p:nth-child(2) {
    font-family: 'Zona Pro Light';
    font-weight: lighter;
}

@media (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        width: 100vw;
        border-top: 2px solid #EF16AC;
    }

    .footer-item {
        flex-direction: column;
        justify-content: left;
        align-items: start;
        width: 65vw;
        margin: 2vw 0;
    }

.footer-item p {
    font-size: 2.5vw;
    padding: 1vw 0;
    margin: 0;
    flex-direction: column;
}

.footer-item:nth-child(2) {
        font-size: 2vw;
    }

.footer-item {
    padding: 0rem;
    margin-left: 4%;
}
}