/*
Theme Name: DS—Space
Author: Marco
Description: Minimal WordPress starter theme by Speaf. Clean, fast, and ready for customization.
Version: 1.0.0
Text Domain: ds-space
Tags: minimal, starter, custom
*/

/*
 * Styles are enqueued from /style/main.css.
 * This file exists only for WordPress theme detection and basic resets.
 */


/* 1) Predictable box model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* 2) Remove default spacing that often fights layouts */
body {
	margin: 0;
}

/* 3) Make media behave */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* 4) Inherit fonts in form controls (big consistency win) */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

/* 5) Avoid textarea horizontal overflow by default */
textarea {
	resize: vertical;
}

/* 6) Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}

/* 7) Keep focus visible (accessibility) */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* 8) Smooth scrolling (except for reduced motion) */
html {
	scroll-behavior: smooth;
}