@media (max-width: 1024px) {
    /* FIXME: Change to 768px when ready */

    /* Adjust the padding for mobile devices */
    .container {
        padding: 16px;
    }

    /* Add any other styles specific to mobile here */
    /* For example, you can make font sizes smaller or adjust margins */

    .navbar {
        display: none;
    }

    /* And display your dropdown content */
    .dropdown-content {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        height: 20vh;
        min-height: 150px;
        width: 100%;
        flex-direction: column;
        clip-path: circle(0px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        /* display: none; */
        transition: all 0.8s ease-in-out;
        margin-left: -30px;
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: space-evenly;
        border-bottom-left-radius: 10%;
        border-bottom-right-radius: 10%;
        background: rgba(100, 100, 100, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1;
    }

    .nav-links.open {
        clip-path: circle(200px at 90% -10%);
        -webkit-clip-path: circle(768px at 90% -10%);
        pointer-events: all;
        backdrop-filter: blur(10px);
    }

    .fullscreen-nav {
        display: none;
    }

    .mobile-nav-item {
        /* display: block; */
        padding: 20px;
        text-align: center;
        color: #fff;
        text-decoration: none;
    }

}

@media (min-width: 1024px) {
    /* FIXME: Change to 768px when ready */

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #navLinks {
        display: none;
    }

    #menuToggle {
        display: none;
    }
}

.dropdown-menu {
    display: none;
}

.menu-toggle {
    display: block;
}


body {
    font-family: 'Poppins', sans-serif;
}

.glass-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vh;
    text-align: center;
}

.quote {
    border-left: 4px solid #47BFDF;
    padding-left: 16px;
}

.quote p {
    margin: 0;
    font-style: italic;
}

.fade-in {
    opacity: 0;
    animation: fade-in 1s ease-in-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header {
    position: fixed;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 30px;
    transition: background-color 0.3s ease-in-out;
}

header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h4,
h5,
h6 {
    color: #3182ce;
}