/* ############################################################################################################### /*
/* CSS for section Main */
#section-hero {
    position: relative;
    width: 100%;
    height: 92.5vh;
    max-height: 1080px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through to nav */
}

.main-nav {
    position: absolute;
    top: 75vh;
    left: 50%;
    transform: translateX(-50%);
    width: 825px;
    height: 115px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #000000;
    backdrop-filter: blur(1px);
    border-radius: 88px; /* Half of height for pill shape */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    pointer-events: auto;
    z-index: 10;
    padding: 0 20px;
}

.nav-item {
    position: relative;
    width: 133px;
    height: 133px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

    .nav-item:hover {
        transform: scale(1.05);
    }

.nav-icon-group {
    position: relative;
    width: 102px;
    height: 102px;
}

.nav-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 133px;
    height: 100px;
    z-index: 1;
}

.nav-icon {
    position: absolute;
    top: 34%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 55px;
    z-index: 2;
    object-fit: contain;
}

.nav-label {
    position: absolute;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
    margin-top: 3em;
}

@media (max-width: 1510px) {
    .site-title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 28px;
    }
}

@media (max-width: 1425px) {
    .site-title {
        font-size: 25px;
    }
    .subtitle {
        font-size: 23px;
    }
}

@media (max-width: 1384px) {
    .site-title {
        font-size: 20px;
    }
    .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    #section-hero {
        height: auto;
        min-height: 100vh;
    }

    .main-nav {
        position: relative;
        top: 37vh;
        bottom: auto;
        margin-top: 200px; /* Push down below header */
        margin-bottom: 50px;
        width: 90%;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 922px) {
    #section-hero {
        height: auto;
        min-height: 140vh;
    }
    
    .main-nav {
        top: 10vh;
        width: 70%;
        padding: 20px 20px;
    }
    
    .nav-icon-group {
        width: 115px;
    }
    
    .nav-bg-svg {
        width: 144px;
        height: 120px;
    }
}

@media (max-width: 765px) {
    #section-hero {
        height: auto;
        min-height: 160vh;
    }
}
