/* Ale & Babi — Home page (stile Linktree) */

@font-face {
  font-family: "Baguet Script";
  src: url("./baguet-script-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #d0cdc9;
  color: #333;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Wrapper mobile centrato su desktop */
.mobile-shell {
  max-width: 390px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f0ede9;
  box-shadow: 0 0 40px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* ── Foto hero ──────────────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  height: clamp(200px, 42vw, 340px);
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ── Contenuto ──────────────────────────────────────────────────────────────── */
.content {
  padding: 28px 18px 56px;
  text-align: center;
}

.name {
  font-family: "Baguet Script", cursive;
  font-weight: 400;
  font-size: clamp(38px, 11vw, 58px);
  line-height: 1.1;
  color: #3a6f96;
  margin: 0 0 14px;
}

.quote {
  font-style: italic;
  font-size: clamp(13px, 3.8vw, 16px);
  color: #3a6f96;
  line-height: 1.55;
  margin: 0 auto 20px;
  max-width: 400px;
}

.section-label {
  color: #3a6f96;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}

.date {
  color: #3a6f96;
  font-size: clamp(17px, 5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}

/* ── Pulsanti ───────────────────────────────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 14px;
  padding: 9px 14px 9px 9px;
  text-decoration: none;
  color: #3a6f96;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.13);
}

.btn:active {
  transform: translateY(0);
}

.thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.btn-label {
  flex: 1;
  text-align: center;
  font-size: clamp(14px, 4.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.dots {
  color: #bbb;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
