html, body {
    margin: 0px;
    background-color: #393E46; /* Matches hero background to avoid color shifts */
}

#hero {
    background-color: #393E46;
    position: fixed;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0; /* Initial opacity for fade-in */
    animation: fadein 2s ease-in-out 0.5s forwards;
    will-change: opacity;
}

#hero-cover {
    background-color:#17191c;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    will-change: opacity;
    width: 100%;
    height: 100vh;
}

#hero svg {
    /* #00ADB5 */
    filter: invert(60%) sepia(76%) saturate(3932%) hue-rotate(146deg) brightness(92%) contrast(103%);
    padding-top: 2rem;
    width: 100%;
}

#scroll-down {
    font-family: sans-serif;
    font-weight: bold;
    color: #00ADB5;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0%;
    animation: fadein 2s ease-in-out 1.5s forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#content {
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.1);
    margin-top: 100vh;
    background-color: #EEEEEE;
    z-index: 900;
}

/* Menu header */
#header {
    background-color: #EEEEEE;
    padding: 5px 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ADB5;
    margin-bottom: 1rem;
}

#header h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222831;
}

#header h2 {
    font-size: 1rem;
    color: #393E46;
}

/* Menu box */
#menu {
    padding: 0 1rem 2rem;
}

.menu-section {
    margin-bottom: 20px;
}

/* Section headings */
.menu-section h3 {
    font-size: 1.5rem;
    color: #222831;
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Menu items */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0 5px;
    color: #222831;
}

/* Description of menu items */
.description {
    font-size: 0.9rem;
    color: #393E46;
    margin-left: 20px;
    margin-top: 5px;
}

.description li {
    list-style: none;
}