.development-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(223, 139, 79, 0.9);
    text-align: center;
    padding: 10px;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.close-banner {
    font-size: 24px;
    font-weight: bold;
    color: rgb(18, 17, 17);
    position: absolute;
    right: 30px;
    top: 5px;
    cursor: pointer;
}

.development-banner p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .development-banner {
        padding: 0px;
        margin-top: 90px;
        text-align: left;
    }

    .development-banner p {
        margin: 0;
        padding: 10px 10px;
        padding-bottom: 5px;
        font-size: 14px;
    }

    .close-banner {
        position: absolute;
        right: 10px;
        top: 5px;
        cursor: pointer;
    }
}

header {
    background-color: rgba(49, 81, 31, 0.7);
    color: rgb(249, 231, 203);
    padding: 10px 10px;
    margin-top: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: 0.2s;
    transition: background-color 0.3s ease, height 0.3s ease;
}

header.scrolled {
    background-color: rgb(78, 104, 71);
    margin-top: 0px;
}

nav {
    display: flex;
    align-items: flex-end;
}

.logo {
    height: 100px;
    width: auto;
    margin-left: 30pt;
    margin-right: 25px;
    transition: height 0.3s ease;
}

.logo:hover {
    height: 130px;
}

header.scrolled .logo {
    height: 50px;
}

.site-title a {
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: rgb(249, 231, 203);
    margin-left: 10px;
    margin-right: 30px;
    margin-bottom: 0px;
}

.site-title a:hover {
    color: rgb(166, 70, 82);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-bottom: 5px;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: rgb(249, 231, 203);
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: rgb(249, 231, 203);
    font-weight: 600;
    padding-bottom: 2px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 15%;
    right: 17%;
    bottom: -5px;
    height: 3px;
    background-color: rgb(166, 70, 82);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(49, 81, 31, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-nav-links li {
    text-align: center;
    padding: 15px 0;
}

.mobile-nav-links li a {
    color: rgb(249, 231, 203);
    font-size: 18px;
    font-weight: 600;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: rgb(249, 231, 203);
    padding: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    header {
        background-color: rgba(49, 81, 31, 0.7);
        padding: 5px 5px;
        padding-top: 20px;
        margin-top: 0px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        height: 50px;
        width: auto;
        margin-left: 10pt;
        margin-right: 15px;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav-links.active {
        display: flex;
    }
}
