.hero-section {
	position: relative;
	background: linear-gradient(120deg,#43e97b 0%,#198754 100%);
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-extra-padding {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
.particles-bg {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	pointer-events: none;
	z-index: 1;
}
.particle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(120deg, #43e97b 0%, #eafff2 100%);
	opacity: 0.18;
	animation: floatParticle 8s infinite ease-in-out;
}
@keyframes floatParticle {
	0% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-40px) scale(1.2); }
	100% { transform: translateY(0) scale(1); }
}

/* Animazioni fade-in custom */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: none;
	}
}

/* Card Valori */
.card-valori {
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 2px 16px rgba(25,135,84,0.08);
}
.card-valori:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px rgba(25,135,84,0.18);
}

/* Team Section */
#team img {
	transition: box-shadow 0.3s, transform 0.3s;
	box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
#team img:hover {
	transform: scale(1.08) rotate(-2deg);
	box-shadow: 0 8px 32px rgba(25,135,84,0.18);
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}
	.hero-section p.lead {
		font-size: 1.2rem;
		line-height: 1.6;
	}
	#team .col-md-4 {
		margin-bottom: 3rem;
		padding: 0 1rem;
	}
	.team-member {
		padding: 2rem 1.5rem;
		border-radius: 20px;
		box-shadow: 0 8px 25px rgba(67,233,123,0.15);
	}
	.team-member img {
		width: 120px;
		height: 120px;
		border-radius: 50%;
		margin-bottom: 1.5rem;
	}
	.team-member h4 {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
	}
	.team-member p {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	.section-title {
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
}

/* Modern button style */
.btn-light {
	border-radius: 2rem;
	font-weight: 600;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(25,135,84,0.10);
}
.btn-light:hover {
	background: #198754;
	color: #fff;
	box-shadow: 0 4px 16px rgba(25,135,84,0.18);
}

/* Sezione valori animata */
.animate__fadeInUp {
	animation-duration: 1.2s;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  
  .hero-extra-padding {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  
  /* Team section improvements */
  .rounded-circle {
    width: 80px !important;
    height: 80px !important;
  }
  
  /* Valori cards improvements */
  .card-valori {
    margin-bottom: 1.5rem;
  }
  
  /* Typography adjustments */
  h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  h5 {
    font-size: 1.1rem;
  }
  
  .fs-5 {
    font-size: 1.1rem !important;
  }
  
  /* Button improvements */
  .btn-light {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Tablet responsive adjustments */
@media (min-width: 769px) and (max-width: 991px) {
  .hero-section {
    min-height: 550px;
  }
}

.text-nostro-team {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 769px) {
  .text-nostro-team {
	font-size: 1rem;
	padding: 0 1rem;
  }
}
