/* Bellevue Home — pagina di cortesia (rifacimento sito) — Royaletiger 2026 */

@font-face {
  font-family: 'Aboreto';
  src: url('../fonts/AB400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OS300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OS400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1B3B35;
  --brand-deep: #122A25;
  --gold: #B98D4F;
  --gold-light: #D4B078;
  --ivory: #F5F0E6;
  --text-light: rgba(245, 240, 230, .88);
  --muted-light: rgba(245, 240, 230, .62);
  --font-display: 'Aboreto', 'Trajan Pro', Georgia, serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--brand);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px 24px 96px;
  text-align: center;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 42, 37, .78) 0%, rgba(27, 59, 53, .58) 45%, rgba(18, 42, 37, .9) 100%),
    radial-gradient(ellipse at center, rgba(27, 59, 53, .3) 0%, rgba(18, 42, 37, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-logo {
  width: min(300px, 62vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .35));
}

.eyebrow {
  font-size: .82rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: .04em;
  color: var(--ivory);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

.lead {
  font-weight: 300;
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  line-height: 1.75;
  letter-spacing: .01em;
  max-width: 600px;
  margin: 0 auto 34px;
  color: var(--text-light);
}

/* ---------- badge "in preparazione" ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 176, 120, .45);
  border-radius: 999px;
  padding: 10px 22px;
  backdrop-filter: blur(4px);
  background: rgba(18, 42, 37, .35);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.8); }
}

.note {
  font-size: .95rem;
  color: var(--muted-light);
  margin: 16px auto 40px;
  max-width: 440px;
  line-height: 1.65;
}

/* ---------- contatti ---------- */

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .98rem;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--brand-deep);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(245, 240, 230, .5);
  color: var(--ivory);
  background: rgba(18, 42, 37, .25);
}

.btn-outline:hover { border-color: var(--ivory); background: rgba(245, 240, 230, .12); transform: translateY(-2px); }

/* ---------- footer ---------- */

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 24px;
  font-size: .8rem;
  color: var(--muted-light);
}

.hero-footer a {
  color: var(--muted-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 230, .25);
  transition: color .3s var(--ease);
}

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

/* ---------- sezione privacy in pagina ---------- */

.privacy {
  background: var(--brand-deep);
  border-top: 1px solid rgba(185, 141, 79, .25);
  padding: 72px 24px 80px;
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: .95rem;
  color: var(--muted-light);
}

.privacy-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--ivory);
  margin-bottom: 24px;
  text-align: center;
}

.privacy-inner h3 {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 26px 0 8px;
}

.privacy-inner p { margin-bottom: 12px; }

.privacy-inner a { color: var(--gold-light); }

/* ---------- pagina privacy ---------- */

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  line-height: 1.75;
}

.doc h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }

.doc h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.25rem;
  margin: 34px 0 10px;
}

.doc p { margin-bottom: 14px; }

.doc a { color: var(--gold-light); }

.doc .back {
  display: inline-block;
  margin-top: 40px;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* ---------- animazioni ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1s var(--ease) forwards;
}

.d1 { animation-delay: .15s; }
.d2 { animation-delay: .3s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .6s; }
.d5 { animation-delay: .75s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .badge-dot { animation: none; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 110px; }
  .btn { width: 100%; justify-content: center; }
  .contacts { width: 100%; max-width: 320px; margin: 0 auto; }
}
