/* ---------- RESET & BOX MODEL ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- VARIABLES ---------- */
:root {
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;

  --gold: #f5b301;
  --gold-hover: #ffcc2f;
  --navy: #0d1b2a;
  --overlay-dark: rgba(0, 0, 0, .45);
  --white: #fff;
}

/* ---------- TYPOGRAPHY ---------- */
body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--white);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: .25rem;
  transition: background .25s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-hover); }

.section-title{
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.5vw + 1rem, 2.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured .btn--primary,
.featured .btn--primary:hover{
  color: var(--white) !important;   /* #fff */
}

/* imposta look di base */
.featured .btn--primary{
  border-radius: .5rem;              /* bordi più arrotondati */
  border: none;                      /* rimuove eventuale bordo */
  filter: brightness(100%);          /* stato normale */
  transition: filter .25s ease;      /* transizione morbida */
}

/* hover + focus (anche da tastiera) */
.featured .btn--primary:hover,
.featured .btn--primary:focus-visible{
  filter: brightness(108%);          /* leggermente più luminoso */
  outline: none;                     /* niente contorno blu default */
}

/* ---------- FOOTER---------- */

.site-footer {
  font-family: var(--font-sans);
  background-color: #00213B;
  color: #f1f1f1;
}
.site-footer a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color .3s;
}
.site-footer a:hover {
  color: var(--gold);
}
.site-footer h5 {
  font-family: var(--font-serif);
  color: #fff;
}
.site-footer ul {
  padding: 0;
  list-style: none;
}
.site-footer ul.list-inline li a {
  font-size: 1.2rem;
}
.site-footer hr {
  border-color: rgba(255,255,255,0.2);
}
