/* CSS Reset - Normalize styles across browsers */

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
}

p {
    margin: 0;
    padding: 0;
}

/* List Reset */
ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Link Reset */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Form Reset */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
}

input, select, textarea {
    border: 1px solid #ccc;
    padding: 0.5rem;
}

textarea {
    resize: vertical;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Table Reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Blockquote Reset */
blockquote {
    margin: 0;
    padding: 0;
}

/* Figure Reset */
figure {
    margin: 0;
    padding: 0;
}

figcaption {
    margin: 0;
    padding: 0;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible for keyboard navigation */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
