.contact-hero {
  position: relative;
  background: url('../img/img10.webp') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
  margin-top: -5%;
  padding: 20px;
}

.hero-title {
  font-size: 5rem;
}

.hero-subtitle {
  font-size: 3rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #ddd;
}

.contact-hero h3{
    font-size: 3rem;
}

.contact-hero p{
    font-size: 1.5rem;
}

/* Icones socials */
.contact-hero a i {
  transition: color 0.3s;
}
.contact-hero a:hover i {
  color: var(--verd-clar);
}

.blur-overlay {
  background-color: rgba(255, 255, 255, 0.05); /* Lleu transparència */
  backdrop-filter: blur(10px);                 /* Efecte difuminat */
  -webkit-backdrop-filter: blur(10px);         /* Per suport a Safari */
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);  /* Opcional: vora subtil */
}

.icon{
    color: var(--verd-clar);
}


/* Responsive */
@media (max-width: 575.98px) {
    .contact-hero .container{
        margin-top: 80px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
   
    .contact-hero h3{
        font-size: 2rem;
    }

    .contact-hero p{
        font-size: 1.2rem;
    }
}
