:root {
  --gold: #d4a94f;
  --black: #140A05;
  --dark2: #1E0F07;
  --soft: #aaaaaa;
}

.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;
}

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

html { scroll-behavior: smooth; }
html, body { background: var(--black); }

body {
  font-family: 'Lora', serif;
  color: #e8e8e8;
}

/* ══ HERO ══ */
#home {
  position: relative;
  height: 100vh;
  background: url('/img/lauraback.webp') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.04) 38%,
    rgba(0,0,0,0.04) 52%,
    rgba(0,0,0,0.72) 100%
  );
}

/* H1 SEO: wrappa il logo */
.hero-logo-wrap {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.scroll-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.45);
  font-size: 1.6rem;
  text-decoration: none;
  animation: bounce 2.2s infinite;
  line-height: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* bottoni hero 2x2 */
.buttons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 28px 40px;
  width: 100%;
  max-width: 500px;
}

.buttons a {
  padding: 14px 10px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.buttons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ══ SEZIONI ══ */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 32px;
  text-align: center;
}

.section-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.2;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 36px;
  opacity: 0.8;
}

.section-inner p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.95;
  color: #bbb;
  max-width: 620px;
  margin: 0 auto 1.2em;
  letter-spacing: 0.01em;
  text-align: center;
}

.section-inner p:last-of-type {
  margin-bottom: 0;
}

.orari-box {
  margin-top: 28px;
  text-align: center;
}

.orari-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.orari-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 2.0;
}

.orari-chiuso {
  color: #777;
}

.indirizzo-testo {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem !important;
  color: #888 !important;
  letter-spacing: 1px !important;
  line-height: 1.6 !important;
}

.btn-outline {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 48px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.btn-gold:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}


.prenota-sub {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
  color: #888 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.6 !important;
}
/* sfondi alternati */
#chi-siamo, #menu, #prenota, #dove-trovarci {
  border-top: 1px solid rgba(255,255,255,0.05);
}

#chi-siamo     { background: var(--dark2); }
#menu          { background: #190D06; }
#prenota       { background: var(--dark2); }
#dove-trovarci { background: #190D06; }

/* ══ TORNA SU ══ */
.back-top {
  display: block;
  text-align: center;
  padding: 12px 0;
  color: #444;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  background: #110804;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  text-transform: uppercase;
}
.back-top:hover { color: var(--gold); }

/* ══ FOOTER ══ */
footer {
  background: #110804;
  color: #555;
  text-align: center;
  padding: 24px 0 18px;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 14px;
}

.footer-social a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--gold); }

.footer-copy a { color: #555; text-decoration: none; margin: 0 6px; }
.footer-copy a:hover { color: var(--gold); }

#footer-counter {
  margin-top: 10px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #444;
}

br.mob { display: none; }

/* ══ MOBILE ══ */
@media (max-width: 600px) {
  #home { height: 70dvh; }

  .hero-logo { width: 32px; height: 32px; }
  .hero-logo-wrap { top: 14px; }

  .scroll-hint { bottom: 138px; }

  .buttons {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 10px;
    padding: 0 20px 32px;
  }

  .buttons a { font-size: 0.68rem; padding: 15px 10px; }

  .section-inner { padding: 40px 28px; }
  br.mob { display: block; margin-bottom: 0.5em; }
  .btn-outline { margin-top: 20px; }
  .section-divider { margin-bottom: 20px; }

  .section-inner h2 { font-size: 1.7rem; }

  .section-inner p {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .btn-outline {
    padding: 14px 32px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
