/*
Theme Name: Materassi Ad Acqua V2
Theme URI: https://materassiadacqua.eu
Author: MaterassiAdAcqua
Description: Tema WordPress nativo per Materassi Ad Acqua. Tutto il contenuto è modificabile dal pannello admin WordPress senza plugin aggiuntivi.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: maa
*/

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --color-primary:       #1a6b9a;
  --color-primary-dark:  #0d4f77;
  --color-primary-light: #2d8fc6;
  --color-accent:        #00c9d4;
  --color-accent-dark:   #009ea8;
  --color-white:         #ffffff;
  --color-offwhite:      #f4f9fc;
  --color-light-grey:    #e8f1f7;
  --color-mid-grey:      #b0c4d6;
  --color-dark-grey:     #4a6070;
  --color-text:          #2c3e50;
  --color-text-light:    #6c8898;
  --color-success:       #28a745;
  --color-error:         #dc3545;
  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', Arial, sans-serif;
  --font-size-base: 16px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --border-radius:    8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,107,154,.12);
  --shadow-md: 0 4px 20px rgba(26,107,154,.18);
  --shadow-lg: 0 8px 40px rgba(26,107,154,.22);
  --transition: 0.28s ease;
  --max-width: 1200px;
}

/* ── Base Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size-base); scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  padding-top: 72px;
}
body.admin-bar { padding-top: 104px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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