@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===================== HERO (Header) ===================== */
.hero {
  position: relative;
  height: 80vh;
  background: linear-gradient(270deg, #fceabb, #f8b500, #e07b00, #f8b500, #fceabb);
  background-size: 400% 400%;
  animation: gradientAnimation 8s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  75% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overlay {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.logo-container {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  padding: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 700px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

/* ===================== ABOUT SECTION ===================== */
.about {
  padding: 60px 20px;
  max-width: 1500px;
  margin: 60px auto;
  text-align: center;
  background: linear-gradient(270deg, #fff9e6, #ffe7b3, #fff0cc, #ffe7b3, #fff9e6);
  background-size: 400% 400%;
  animation: gradientAnimation 12s ease infinite;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.about.visible {
  opacity: 1;
}

.about h1 {
  font-size: 3.5rem;
  font-family: 'Georgia', serif;
  color: #c85c00;
  font-weight: 700;
  margin-bottom: 30px;
}


.about p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #5a5a5a;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about li {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* ===================== GALLERY SECTION ===================== */
.gallery {
  padding: 60px 20px;
  max-width: 1500px;
  margin: 60px auto;
  text-align: center;
  background: linear-gradient(270deg, #fff9e6, #ffe7b3, #fff0cc, #ffe7b3, #fff9e6);
  background-size: 400% 400%;
  animation: gradientAnimation 14s ease infinite;
  border-radius: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.gallery.visible {
  opacity: 1;
}

.gallery h2 {
  font-size: 3.5rem;
  color: #d47400;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}


.gallery-item {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* ===================== ANIMAZIONI GENERALI ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .logo-container {
    padding: 40px;
  }

  .logo {
    max-width: 90%;
  }

  .about, .gallery {
    margin: 30px 10px;
    padding: 40px 15px;
  }

  .gallery-item {
    width: 90%;
    height: auto;
  }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  background-color: #128C7E;
}

/* ===================== CTA SOCIAL ===================== */
.cta-social {
  background-color: #d47400;
  padding: 40px 20px;
  text-align: center;
}

.cta-social h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-social p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 12px 24px;
  background-color: #e1306c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-buttons a.facebook {
  background-color: #3b5998;
}

.cta-buttons a.tiktok {
  background-color: #000000;
}


.cta-buttons a:hover {
  opacity: 0.85;
}

