/* Header-specific styles */
.main-header {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.main-header a {
    color: white;
    text-decoration: none;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.header-buttons a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-buttons a:hover {
    color: var(--text-primary);
}

.header {
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .header h1 {
        font-size: 2rem;
    }
}


/* small responsive tweaks */
@media (max-width: 480px) {
    .main-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-buttons a {
        margin: 0 0.5rem;
    }

    .header p {
        font-size: 1rem;
    }
}