@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #151e27;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

/*
.site-header {
    background-color: white;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}*/

.site-header {
    background-color: white;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s;
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: end;
    align-items: center;
}

.nav-item {
    margin-right: 0;
}

.nav-item a {
    border: 2px solid transparent;
    font-size: 1.6rem;
    border-radius: 5px;
    text-decoration: none;
    color: #151e27;
    font-weight: 550;
    transition: color 0.3s;
    padding: 0.5rem;
}

.nav-item a:hover {
    border: 2px solid #00aae8;
    border-radius: 5px;
}

.site-header.scrolled {
    background-color: #151e27;
}

.nav-menu a.scrolled {
    color: #fff;
}

.site-nav a:hover {
    border: 2px solid #00aae8;
    border-radius: 5px;
    padding: 5px 10px;
}

.nav-item a.active {
    border: 2px solid #00aae8;
    background-color: #00aae8;
    border-radius: 5px;
    padding: 5px 10px;
}
*/

.gallery {
    text-align: center;
}

.gallery img {
    max-width: 100%;
    height: auto;
    margin: 0;
    vertical-align: top;
}

.slide {
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
}

.slide .video-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    height: 80vh;
}

.slide .double-slide {
    max-width: 1280px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80vh;
}

.audio-row {
    display: flex;
}

.audio-item {
    display: inline-block;
    margin-right: 5vb; /* Adjust the spacing between items */
}

.audio-item img {
    width: 100%; /* Adjust the image size as needed */
    height: auto;
    cursor: pointer;
}

.site-footer {
    background-color: #24353f;
    color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 20px;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.footer-item p {
    text-align: left;
    margin: 0;
    margin-top: 10px;
}

.copyright{
    text-align: left;
    margin: 10px 0 0 -100px;
    color: #fff;
}

.footer-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    margin-right: 30px;
}

#logo {
    max-width: 180px;
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: white;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.scrolled {
        background-color: #151e27;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item{
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .bar.scrolled {
        background-color: white;
        background-color: white;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}