/* Styles unifiés pour le header - identiques sur toutes les pages */
.header {
    background: #A9B88B;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 300;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-bold {
    font-weight: 600;
}

.connect-btn {
    background: #A9B88B;
    color: #2c2c2c;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.connect-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(169, 184, 139, 0.3);
    background: #98a67a;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
}
