<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&amp;display=swap');

body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #f4f2ee;
  color: #2e2e2e;
  background-repeat: repeat;
  background-size: cover;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Biografia Section */
.biografia {
  background: #fff;
  padding: 4rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #222;
}

.biografia p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
}

.biografia p:last-child {
  font-weight: bold;
  font-style: italic;
  color: #000;
}

.biografia-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bio-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bio-img:hover {
  transform: scale(1.02);
}

#typing-biografia {
  flex: 1;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.quote-center {
  text-align: center;
  font-style: italic;
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #000;
  font-weight: 600;
}

/* Firma Header */
.intestazione {
  text-align: center;
  padding: 2rem 0 1rem;
}

.firma {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: #111;
  margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&amp;display=swap');

.signature-wrapper {
  text-align: center;
  margin-bottom: 1rem;
}

.signature-line {
  width: 80px;
  margin: 0 auto;
  border: 1px solid #555;
  opacity: 0.5;
  animation: fadeInLine 1s ease-in-out;
}

@keyframes fadeInLine {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 0.5; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

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

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.back-arrow {
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.back-arrow:hover {
  transform: scale(1.1);
}

.logo-img {
  height: 25px;
  width: auto;
}




/* Gallery Image Styling */
.progetti {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.progetti img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.card-foto {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.card-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progetti img {
  max-height: 280px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.progetti img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .progetti img {
    max-height: 200px;
  }
}

.image-hover-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-hover-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  filter: brightness(100%);
  transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

.hover-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  z-index: 2;
}

.image-hover-wrapper:hover .hover-caption {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.image-hover-wrapper:hover img {
  filter: brightness(40%);
  transform: scale(1.02);
}
.font-size {
  font-size: 4.5rem;
}
.font-color{
  color: whitesmoke;
}
.lead {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  line-height: 1.9;
  color: #ffffff;
  text-align: center;
}

/* Responsive font sizes for .firma and .font-size */
@media (max-width: 768px) {
  .firma {
    font-size: 2.8rem;
  }
  .font-size {
    font-size: 3.5rem;
  }
}

@media (max-width: 576px) {
  .firma {
    font-size: 2.2rem; /* Ridotto per mobile */
  }
  .font-size {
    font-size: 2.8rem; /* Ridotto per mobile */
  }
  .biografia p,
  #typing-biografia {
    font-size: 0.95rem;
  }
  .lead {
    font-size: 1rem;
  }
}</pre></body></html>