:root {
  --primary: #db7f9b;
  --text-dark: #2a2a2e;
  --bg-gradient: linear-gradient(135deg, #ffc4d6 0%, #ffd4e0 50%, #ffe8f0 100%);
}

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

body {
  background: var(--bg-gradient);
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* evita scroll */
  text-align: center;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 8.5rem;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: -0.5rem;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 2rem;
}

p {
  font-size: 1.6rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

footer {
  position: absolute;
  bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: center;
  padding: 0 1rem;
}

footer a {
  color: inherit;
  text-decoration: none;
}

/* Effetto fade-in fluido */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1.2s ease forwards;
}

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

/* Responsività tablet */
@media (max-width: 768px) {
  h1 {
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: -0.3rem;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 1.2rem;
  }
  p {
    font-size: 1.1rem;
    max-width: 450px;
  }
  footer {
    font-size: 0.9rem;
    bottom: 1rem;
  }
}

/* Responsività mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 4rem;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: -0.2rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
  p {
    font-size: 1rem;
    max-width: 350px;
    padding: 0 1rem;
  }
  footer {
    font-size: 0.85rem;
    bottom: 0.8rem;
    line-height: 1.4;
  }
}
