/* Shared Button Style used in Navigation */
.btn-donate {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    color: white;
    background-color: #0e6231;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-donate:hover {
    background-color: #0a4824;
    transform: translateY(-1px);
}

/* Header & Nav */
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 15px auto 30px auto;
}

.nav-items {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.nav-items .logo-item {
    margin-right: auto;
}

.nav-items li img {
    width: 200px;
    height: auto;
}

.small-logo {
    width: 140px;
    display: none;
    margin-right: auto;
}

.items a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.items a:hover {
    color: #0e6231;
}

/* Mobile Sidebar */
.side-bar-container {
    background-color: #0e6231;
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    list-style-type: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    z-index: 100;
    padding: 80px 20px 20px 20px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
}

.side-items {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.side-items a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.1em;
    display: block;
}

.donate-button {
    border-bottom: none;
    margin-top: 15px;
}

.donate-button .btn-donate {
    width: 100%;
    background-color: #ffffff;
    color: #0e6231;
}

.menu-button, .close-button {
    cursor: pointer;
    display: none;
    z-index: 101;
}

/* Navigation Responsive Breakpoints */
@media screen and (max-width: 830px) {
    .max-items {
        display: none;
    }
    
    .small-logo, .menu-button {
        display: block;
    }
    
    .logo-item {
        display: none;
    }
}