/*
 * Author: Luca Arzilli, ALSolutions
 *
 * Project Name: SD Fisioterapia
 *
 */

/* HOME PAGE */

/* il centro */

header {
	height:70vh;
	background-image:url('../img/ilcentro/SDFISIOTERAPIA-HEADER-CENTRO.webp');
	background-size:cover;
	background-position:center;
	display: flex;           /* Add flexbox */
    align-items: center;     /* Center vertically */
    justify-content: center;
}
header h1 {
  font-size: clamp(30px, 4vw, 60px);
  line-height: clamp(35px, 4vw, 65px);
  font-weight:100;
  color:#FFF;
  text-align:center;
  margin-top:96px;
}
#ilcentro, #visita {
	background-image:url('../img/bg/bg-1.svg');
	background-size:cover;
}

#ilcentro h2 {
	color:#2A3C51;
	font-size: clamp(30px, 5vw, 60px);
	line-height: clamp(35px, 5vw, 65px);
	font-weight:100;
	text-align:right;
}
#ilcentro video {
	border-radius: 15px;
	margin-top:40px;
}

#visita h3 {
	color:#2A3C51;
	font-size: clamp(30px, 5vw, 60px);
	line-height: clamp(35px, 5vw, 65px);
	font-weight:100;
}
#visita img {
	border-radius: 15px;
	margin-top:40px;
	transition: opacity 0.3s ease;
}
#visita .visita-links a {
	text-decoration: none;
	color: #2A3C51;
	display: block;
	font-size: clamp(20px, 1.5vw, 30px);
	line-height: clamp(25px, 1.5vw, 35px);
	padding: 15px 0px;
	transition: color 0.3s ease;
}
#visita a:hover, #visita a:focus {
	color: #496A96;
	font-weight: bold;
}

#visita .visita-links a i {
	margin-left: 10px;
	opacity: 0;  /* Hide arrow by default */
	transition: opacity 0.3s ease;
}

#visita .visita-links a:hover i {
	opacity: 1;  /* Show arrow on hover */
}

#slider {
	padding:0px;
}

#slider img {
	border-radius: 15px;
}

@media (max-width: 575px) {
	section {
		padding:60px 0px;
	}
}
