/*
 * RISTORANTE DELLA VILLA — Reset e stili di base
 */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-accent-dark);
  margin: 0 0 0.5em;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.6rem; }

p { margin: 0 0 1em; }

a {
  color: var(--color-accent);
  text-underline-offset: 0.15em;
}

img { max-width: 100%; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Bottoni ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: #7d2d40; transform: translateY(-1px); }
.btn--secondary { background: transparent; color: inherit; border-color: currentColor; }
.btn--secondary:hover { opacity: 0.75; }

/* ── Sezioni generiche ───────────────────────────────────────────────────── */
.section { padding: 3.5rem 1.5rem; }
.section__inner { max-width: var(--container-max); margin: 0 auto; }

/* ── Focus visibile per accessibilità ────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
