/* ── Gastronomia Mazzocco — stili condivisi ── */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--cacao);
  overflow-x: hidden;
}

/* ── BUTTONS ── */
.btn-terra {
  background: var(--terra); color: white; border: none;
  padding: 0.8rem 1.8rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-terra:hover { background: var(--terra-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--cacao);
  border: 1.5px solid rgba(44,26,14,0.3);
  padding: 0.8rem 1.8rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, transform .15s, background .2s;
}
.btn-outline:hover { border-color: var(--cacao); background: rgba(44,26,14,0.04); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.8rem 1.8rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, transform .15s, background .2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-1px); }

.btn-dark {
  background: var(--walnut); color: white; border: none;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: var(--cacao); transform: translateY(-1px); }

/* ── STRIP ── */
.strip {
  background: var(--walnut); color: rgba(255,255,255,0.75);
  padding: 1.25rem 5%; overflow: hidden;
}
.strip-inner {
  display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.strip-dot { width: 4px; height: 4px; background: var(--terra); border-radius: 50%; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--cacao); color: rgba(255,255,255,0.85); padding: 60px 5% 40px; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; opacity: 0.55; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; color: white;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.9rem; opacity: 0.7; margin-bottom: 0.5rem; display: flex; gap: 0.5rem; line-height: 1.6; }
.footer-orari { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.85rem; opacity: 0.7; margin-bottom: 0.6rem; }
.footer-copy { max-width: 1100px; margin: 0 auto; font-size: 0.8rem; opacity: 0.35; text-align: center; }
.footer-nav-links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1.25rem; }
.footer-nav-links a { font-size: 0.85rem; opacity: 0.55; color: white; text-decoration: none; transition: opacity .2s; }
.footer-nav-links a:hover { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .strip-inner { gap: 1.5rem; }
}
