/* Import dei font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Open+Sans&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #f7f7f7;
  background-color: #000;
}




.revida-container {
  background-image: url('images/sfondo-revida.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
  backdrop-filter: blur(1px);
}


/* Titolo principale */
.revida-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

/* Testo descrittivo */
.revida-phrase {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.35);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,1);
}

/* Slogan con stile elegante e corsivo */
.revida-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f2c6a5;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.35);
  padding: 20px 30px;
  border-radius: 15px;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,1);
}

/* Footer */
.revida-footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #000000;
}

.revida-footer a {
  color: #0f0f0f;
  text-decoration: none;
  border-bottom: 1px dotted #aaa;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .revida-title {
    font-size: 3rem;
  }

  .revida-phrase,
  .revida-slogan {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
}
