.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;

    box-sizing: border-box;

    background: #297045;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    z-index: 1000;
}

.nav-logo-flower { width: 64px; height: 64px; }
.nav-logo-flower:hover {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.nav-buttons { display: flex; gap: 20px; }
.nav-button {
    display: block;

    padding: 14px 24px;

    font-size: 20px;
    font-weight: 500;

    color: white;
    text-decoration: none;

    border-radius: 10px;

    opacity: 0.8;

    transition:
        background 0.2s,
        opacity 0.2s;
}
.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}


.nav-menu-button {
    display: none;

    padding: 10px 14px;

    font-size: 30px;

    color: white;
    background: none;
    border: none;

    cursor: pointer;
}

@media (max-width: 700px) {
    .nav-buttons {
        display: none;

        position: absolute;
        top: 80px;
        right: 0;

        flex-direction: column;
        gap: 0;

        width: 200px;

        padding: 8px;

        background: #297045;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
    }

    .nav-logo-flower { width: 64px; height: 64px; }

    .nav-buttons.open { display: flex; }
    .nav-button { padding: 14px 16px; }
    .nav-menu-button { display: block; }
}