/* Navigation Styles */
.navigation {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px 0 80px;
    z-index: 100;
    background: transparent;
}

.logo {
    width: 117px;
    height: 40px;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    width: 275px;
    gap: 64px;
}

.nav-links a {
    color: #F8F6E8;
    text-decoration: none;
    font-size: 16px;
    height: 16px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 129px;
    height: 37px;
    padding: 10px 20px 12px 20px;
    border-radius: 24px;
    border: 1px solid rgba(248, 246, 232, 0.4);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: rgba(248, 246, 232, 0.1);
}

.button-text {
    font-family: 'Plain', Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #f8f6e8;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navigation {
        padding: 0 20px;
        height: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .social-icons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        display: none;
    }
    
    .get-involved-btn {
        height: 34px;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .logo {
        width: 100px;
        height: 34px;
    }
    
    .button {
        width: auto;
        min-width: 120px;
    }
}
