/*
Theme Name: Custom Minimal Theme
Author: IlTuoNome
Version: 1.0
*/

/* ========== RESET & NORMALIZZAZIONE ========== */




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

html, body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
	font-size: 26px;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
  scroll-behavior: smooth;
	overflow-x: hidden;

}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1em 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

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

/* ========== DISABILITA STILI INTRUSIVI DI WORDPRESS ========== */
.wp-block, .alignwide, .alignfull {
  all: unset;
}

/* ========== CONTAINER & LAYOUT ========== */
body {
  overflow-x: hidden;
}

.site,
.container,
.content-area,
.site-content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* ========== FORMS ========== */
input, textarea, button, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ========== ACCESSIBILITÀ BASE ========== */
:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
