/* GezinOpWeg - Playful Reset & Base Styles */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-forest);
    background-color: var(--color-cream);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fun Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(116, 198, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 230, 109, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(126, 200, 227, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: var(--z-background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-forest);
}

h1 {
    font-size: var(--font-size-hero);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: var(--color-sunset);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-sunset-light);
}

ul, ol {
    list-style: none;
}

[hidden] {
    display: none !important;
}
