/* ==========================================
   Main - Global Styles
   ========================================== */

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Links ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== Buttons ===== */
button {
    font-family: inherit;
}

/* ===== Images ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== Selection ===== */
::selection {
    background-color: var(--color-text-primary);
    color: var(--color-surface-primary);
}

/* ===== Focus Visible ===== */
*:focus-visible {
    outline: 2px solid var(--color-text-primary);
    outline-offset: 2px;
}

/* ===== Hidden ===== */
.hidden {
    display: none !important;
}

/* ===== Visually Hidden (for accessibility) ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Page Transitions ===== */
body {
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* ===== Print Styles ===== */
@media print {
    .topbar,
    .footer {
        display: none;
    }
}
