/* ═══════════════════════════════════════════════════════
   LARA RENZI — LINK IN BIO
   Mobile-first, full-screen background, vertical links
   ═══════════════════════════════════════════════════════ */

:root {
  --c-fucsia:    #e2017d;
  --c-fucsia-50: rgba(226, 1, 125, .5);
  --c-fucsia-20: rgba(226, 1, 125, .2);
  --c-black:     #000000;
  --c-white:     #ffffff;
  --c-glass:     rgba(255, 255, 255, .1);
  --c-glass-border: rgba(255, 255, 255, .18);
  --ff-heading:  'Montserrat', sans-serif;
  --ff-body:     'DM Sans', sans-serif;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ─── LAYOUT ─── */
.lt {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ─── BACKGROUND ─── */
.lt__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.lt__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(40%) contrast(1.1);
}
.lt__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 30%,
      rgba(0,0,0,.5) 70%,
      rgba(0,0,0,.8) 100%
    );
}

/* ─── CONTENT ─── */
.lt__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  padding: 3rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* ─── LOGO ─── */
.lt__logo {
  width: 3rem;
  height: 3rem;
  animation: fadeDown 0.6s ease both;
}
.lt__logo-img {
  width: 100%;
  filter: drop-shadow(0 0.25rem 0.5rem rgba(0,0,0,.4));
}

/* ─── NAME ─── */
.lt__name {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 10vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  position: relative;
  animation: fadeDown 0.6s ease 0.05s both;
}
.lt__name-shadow {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.15);
  transform: translate(0.15rem, 0.15rem);
  pointer-events: none;
  user-select: none;
}
.lt__tagline {
  font-family: var(--ff-heading);
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: .7;
  text-align: center;
  margin-top: -0.5rem;
  animation: fadeDown 0.6s ease 0.1s both;
}

/* ─── LINKS ─── */
.lt__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.lt__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--c-glass);
  border: 1px solid var(--c-glass-border);
  border-radius: 0.6rem;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  font-family: var(--ff-heading);
  font-size: clamp(0.7rem, 2.8vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  animation: fadeUp 0.5s ease both;
}
.lt__link:hover {
  background: var(--c-fucsia);
  border-color: var(--c-fucsia);
  transform: translateY(-0.15rem);
  box-shadow: 0 0.5rem 2rem var(--c-fucsia-50);
}
.lt__link:active {
  transform: translateY(0);
  background: #c7016d;
  border-color: #c7016d;
  box-shadow: 0 0.25rem 1rem var(--c-fucsia-50);
}
.lt__link-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.lt__link-icon svg {
  width: 100%;
  height: 100%;
}

/* ─── WHATSAPP ─── */
.lt__whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.2rem;
  height: 3.2rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1rem rgba(37,211,102,.4);
  transition: all var(--transition);
  z-index: 50;
  animation: fadeUp 0.5s ease 0.8s both;
}
.lt__whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1.5rem rgba(37,211,102,.5);
}
.lt__whatsapp svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--c-white);
}

/* ─── FOOTER ─── */
.lt__footer {
  margin-top: 1rem;
  text-align: center;
  animation: fadeUp 0.5s ease 0.9s both;
}
.lt__footer p {
  font-size: 0.65rem;
  opacity: .4;
  margin-bottom: 0.3rem;
}
.lt__footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.lt__footer-links a {
  font-size: 0.65rem;
  opacity: .4;
  transition: opacity var(--transition);
}
.lt__footer-links a:hover { opacity: .8; }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--c-white);
  box-shadow: 0 -0.25rem 1rem rgba(0,0,0,.15);
  animation: fadeUp 0.4s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: 26rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cookie-banner__text {
  flex: 1;
  color: #333;
}
.cookie-banner__text p {
  font-size: 0.7rem;
  line-height: 1.5;
}
.cookie-banner__text strong {
  font-family: var(--ff-heading);
  color: #000;
  font-size: 0.75rem;
}
.cookie-banner__link { color: var(--c-fucsia); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}
.btn--cookie-accept,
.btn--cookie-reject {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 0.35rem;
  cursor: pointer;
}
.btn--cookie-accept {
  background: var(--c-fucsia);
  color: var(--c-white);
  border: none;
}
.btn--cookie-reject {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

/* ─── MODALS ─── */
.lt-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lt-modal[hidden] { display: none; }
.lt-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  cursor: pointer;
}
.lt-modal__content {
  position: relative;
  background: var(--c-white);
  color: #333;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  max-width: 26rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
.lt-modal__content h2 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.lt-modal__content p {
  font-size: 0.75rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.lt-modal__content a {
  color: var(--c-fucsia);
  text-decoration: underline;
}
.lt-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.3rem;
  color: #999;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lt-modal__close:hover { color: #000; }

/* ─── RESPONSIVE ─── */
@media (min-width: 40em) {
  .lt__content { padding: 4rem 2rem 3rem; }
  .cookie-banner__inner { max-width: 36rem; }
}

@media (max-width: 24em) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
