/* ======================================================
   1. VARIABILI GLOBALI, RESET E STILI BASE
====================================================== */
:root {
	--main-color: rgba(0, 239, 0, 1);
	--secondary-color: rgb(18, 65, 68);
	--font-family-base: 'Roboto', sans-serif;
	--text-color: #000;
	--footer-bg: rgb(18, 65, 68);
	--footer-text: #DDDDDD;
  }
  
  html,
  body {
	margin: 0;
	padding: 0;
	color: var(--secondary-color);
	font-family: var(--font-family-base);
	font-weight: 600;
	background-color: #FFF;
	box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
	box-sizing: inherit;
  }
  
  img {
	height: auto;
	display: block;
	max-width: 100%;
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
	margin: 0;
	padding: 0;
  }
  
  /* ======================================================
	 2. CONTAINER E ELEMENTI DI BASE
  ====================================================== */
  .container {
	text-align: center;
	max-width: 600px;
	padding: 20px;
	margin: 0 auto;
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
  }
  
  .green-bg {
	position: relative;
	background: linear-gradient(to bottom, #ffffff00, #ffffff96), var(--main-color);
	color: var(--secondary-color);
	padding: 30px 50px;
	font-size: 50px;
	text-align: center;
	letter-spacing: 5px;
	border-bottom: 10px solid #01ef03;
	}
  
  .green-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('../svg/next-texture.svg');
	background-size: cover;
	background-repeat: repeat;
	opacity: 0.2;
	z-index: 1;
	pointer-events: none;
  }
  
  .top-height {
	margin-top: 100px;
  }
  
  .section-title {
	font-weight: 900;
  }
  
  .section-title span {
	position: relative;
	z-index: 100;
  }
  
  .no-margin {
	margin: 0 !important;
  }
  
  /* ======================================================
	 3. ANIMAZIONI
  ====================================================== */
  @keyframes imageZoom {
	0% {
	  transform: scale(0.8);
	  opacity: 0;
	}
	60% {
	  transform: scale(1.2);
	}
	100% {
	  transform: scale(1);
	  opacity: 1;
	}
  }
  
  @keyframes slideDownNavbar {
	0% {
	  transform: translateY(-100%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
  }
  
  @keyframes slideIn {
	0% {
	  opacity: 0;
	  transform: translateX(-30%);
	}
	100% {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  /* RIDEFINIZIONE di imageZoom con step intermedi */
  @keyframes imageZoom {
	0% {
	  transform: scale(0.8);
	  opacity: 0;
	}
	60% {
	  transform: scale(1.2);
	}
	100% {
	  transform: scale(1);
	  opacity: 1;
	}
  }
  
  @keyframes fadeInDown {
	0% {
	  opacity: 0;
	  transform: translateY(-20px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes fadeInUp {
	0% {
	  opacity: 0;
	  transform: translateY(50px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes slideInLeft {
	0% {
	  opacity: 0;
	  transform: translateX(-50px);
	}
	100% {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes slideInRight {
	0% {
	  opacity: 0;
	  transform: translateX(50px);
	}
	100% {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes slideInUp {
	0% {
	  opacity: 0;
	  transform: translateY(50px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: scale(0.9);
	}
	to {
	  opacity: 1;
	  transform: scale(1);
	}
  }
  
  @keyframes slideOutLeft {
	0% {
	  opacity: 1;
	  transform: translateX(0);
	}
	100% {
	  opacity: 0;
	  transform: translateX(-50px);
	}
  }
  
  @keyframes slideOutRight {
	0% {
	  opacity: 1;
	  transform: translateX(0);
	}
	100% {
	  opacity: 0;
	  transform: translateX(50px);
	}
  }
  
  @keyframes eloading {
	0% {
	  width: 0%;
	}
	100% {
	  width: 100%;
	}
  }
  
  /* ======================================================
	 4. NAVBAR (DESKTOP E RESPONSIVE)
  ====================================================== */
  .navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	height: 100px;
	background-color: var(--secondary-color);
	font-size: 20px;
	display: flex;
	align-items: center;
	opacity: 1;
	transform: translateY(0);
	transition: height 0.3s ease, font-size 0.3s ease, background-color 0.3s ease;
	transform: translateY(-100%);
	opacity: 0;
	transition: none;
	border-bottom: 5px solid #01ef03c4;
	}
  
  .navbar.navbar-animated {
	animation: slideDownNavbar 0.5s ease-in-out forwards;
	animation-delay: 0.5s;
  }
  
  .navbar.navbar-animated-no {
	opacity: 1;
	transform: translateY(0%);
  }
  
  .navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
  }
  
  .navbar-left {
	display: flex;
	gap: 30px;
	align-items: center;
  }
  
  .navbar-left a {
	opacity: 0;
	transform: translateX(-30%) scale(0.8);
	animation: slideIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  }
  
  .navbar-left a:nth-child(1) {
	animation-delay: 0s;
  }
  
  .navbar-left a:nth-child(2) {
	animation-delay: 0.2s;
  }
  
  .navbar-left a:nth-child(3) {
	animation-delay: 0.4s;
  }
  
  .navbar-left a:nth-child(4) {
	animation-delay: 0.6s;
  }
  
  .navbar-left a:nth-child(5) {
	animation-delay: 0.8s;
  }
  
  .navbar-left a:nth-child(6) {
	animation-delay: 1s;
  }
  
  .navbar-left a:nth-child(7) {
	animation-delay: 1.2s;
  }
  
  .navbar-category {
	display: flex;
	gap: 30px;
	align-items: center;
  }
  
  .navbar-logo {
	height: 50px;
	width: auto;
	animation: imageZoom 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
	opacity: 0;
	transition: height 0.3s ease, opacity 0.3s ease;
	object-fit: contain;
  }
  
  .navbar-item {
	color: #ffffff70;
	font-weight: 600;
	transition: font-size 0.3s ease, color 0.3s ease;
	display: inline-block !important;
	transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }
  
  .navbar-item.active {
	color: #fff;
  }
  
  .navbar-right {
	display: flex;
	gap: 40px;
	align-items: center;
  }
  
  .navbar-button {
	padding: 10px 60px;
	background-color: var(--main-color);
	border-radius: 100px;
	font-weight: 700;
	animation: imageZoom 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
	opacity: 0;
	transition: padding 0.3s ease, background-color 0.3s ease;
  }
  
  .navbar-button a {
	color: #fff;
	font-weight: 700;
  }
  
  .navbar-icon {
	border-radius: 100px;
	width: 50px;
	height: 50px;
	animation: imageZoom 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
	opacity: 0;
	transition: width 0.3s ease, height 0.3s ease;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  
  .navbar-icon span {
	display: block;
	width: 30px;
	height: 3px;
	margin: 3px 0;
	background: #fff;
	transition: 0.4s;
  }
  
  .navbar-icon.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
  }
  
  .navbar-icon.active span:nth-child(2) {
	opacity: 0;
  }
  
  .navbar-icon.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
  }
  
  .navbar.shrink {
	height: 70px;
	font-size: 18px;
  }
  
  .navbar.shrink .navbar-logo {
	height: 40px;
	opacity: 1;
  }
  
  .navbar.shrink .navbar-button {
	padding: 10px 40px;
  }
  
  .navbar.shrink .navbar-icon {
	width: 35px;
	height: 35px;
  }
  
  .navbar.shrink .gradient-effect {
	bottom: -2px;
  }
  
  .navbar.shrink .blur-effect {
	bottom: 0px;
  }
  
  .navbar.shrink .navbar-item-wrapper {
	height: 70px;
  }
  
  .navbar-item:hover {
	transform: scale(1.05) !important;
  }
  
  /* ======================================================
	 5. NAVBAR MOBILE E MENU
  ====================================================== */
  .mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--secondary-color);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	transition: transform 0.4s ease;
	transform: translateX(100%);
	z-index: 100000;
  }
  
  .mobile-menu-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: var(--secondary-color);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 50px;
	margin-top: 20px;
  }
  
  .mobile-menu-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
  }
  
  .mobile-menu-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	justify-content: center;
	gap: 30px;
	}
  
  .mobile-menu-logo {
	height: 70px;
	margin-bottom: 10px;
  }
  
  .mobile-menu-close {
	font-size: 4rem;
	color: #fff;
	cursor: pointer;
	line-height: 1;
  }
  
  .mobile-menu a {
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
  }
  
  .mobile-menu a:hover {
	color: var(--main-color);
  }
  
  .mobile-menu.active {
	display: flex;
	transform: translateX(0);
	align-items: center;
	justify-content: flex-start;
  }
  
  .mobile-menu-profile {
	position: absolute;
	bottom: 50px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
  }
  
  .mobile-menu-profile-name {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	font-size: 18px;
  }
  
  .mobile-menu-profile-settings {
	display: none;
	flex-direction: column;
	gap: 10px;
  }
  
  .mobile-menu-profile-settings a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	padding: 5px 10px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
  }
  
  .mobile-menu-profile-settings a:hover {
	background-color: rgba(255, 255, 255, 0.2);
  }
  
  .mobile-menu-profile-settings.active {
	display: flex;
  }
  
  .navbar-category {
	display: flex;
	gap: 20px;
  }
  
  .navbar-item-wrapper {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
  }
  
  /* ======================================================
	 6. HERO, MODEL-VIEWER E GALLERY
  ====================================================== */
  .hero {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #fff;
	margin-top: 100px;
  }
  
  .hero-image {
	background-image: url('../images/public/foto-home.jpg');
	height: 700px;
	width: 100%;
	background-size: cover;
	background-position: center;
  }
  
  model-viewer {
	height: 100vh;
	width: 100vw;
  }
  
  .gallery-section {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	gap: 100px;
  }

  .gallery-section.clubx {
	margin-bottom: 50px;
  }
  
  .gallery-section.last {
	margin-bottom: 50px;
  }
  
  .swiper {
	width: 100%;
	height: 100%;
  }
  
  .swiper-slide img {
	width: 100%;
	display: block;
  }
  
  /* ======================================================
	 7. SEZIONI "PRENOTA" E "NEXT TEXT"
  ====================================================== */
  .prenota-section {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 0;
  }
  
  .prenota-button {
	background-color: var(--main-color);
	color: #fff;
	padding: 20px 30px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .prenota-button:hover {
	background-color: rgba(0, 239, 0, 1);
  }
  
  .next-text-section {
	margin-bottom: 100px;
	background-color: #fff;
  }
  
  .next-text-container {
	max-width: 1300px;
	margin: 0 auto;
	text-align: left;
	padding: 50px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	}
  
  .next-text-section li {
	margin-bottom: 20px;
  }
  
  .next-image-container.image {
	background-image: url(../images/public/academy.jpg);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
  }
  
  .multisport-container {
	z-index: 1000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	text-align: left;
	align-items: flex-start;
	color: white;
	background: #e3e3e3;
	height: 1100px;
	}
  
  .gradient-overlay {
	width: 100%;
	position: absolute;
	background: linear-gradient(to right, rgb(0 0 0 / 56%) 30%, rgb(43 43 43 / 58%) 50%, rgb(138 138 138 / 47%) 75%, rgba(0, 0, 0, 0) 100%);
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
  }
  
  .multisport-content {
	box-sizing: content-box;
	max-width: 1200px;
	border-radius: 20px;
	color: white;
	text-shadow: 2px 2px 5px rgb(109 109 109 / 50%);
	margin: 0 auto;
	padding: 80px 20px;
  }
  
  .mb-0 {
	margin-bottom: 0;
  }
  
  .next-text-section h1 {
	font-size: 4.5rem;
	margin-bottom: 30px;
	font-weight: 800;
	opacity: 0;
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.2s;
  }
  
  .next-text-section h2 {
	margin-bottom: 10px;
	font-size: 28px;
	display: flex;
	background-color: var(--main-color);
	padding: 10px 20px;
	color: white;
	opacity: 0;
  }
  
  .next-text-section .subtitle {
	font-size: 2.2rem;
	font-weight: 800;
	color: rgba(0, 239, 0, 1);
	margin-bottom: 30px;
	line-height: 1.2;
	opacity: 0;
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.4s;
  }
  
  .next-text-section p {
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 35px;
	font-weight: 300;
	width: 70%;
	opacity: 0;
	}
  
  .next-text-section ul {
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 80px;
	font-weight: 300;
	opacity: 0;
	margin: 45px 0px;
  }
  
  .separator {
	width: 100%;
	height: 4px;
	margin: 50px auto 50px auto;
	background-color: var(--main-color);
  }
  
  /* Effetti fadeInDown con delay per h2, p e ul */
  .next-text-section h2:nth-of-type(1),
  .next-text-section h2:nth-of-type(1)+p,
  .next-text-section h2:nth-of-type(1)+ul,
  .next-text-section h2:nth-of-type(1)+ul li {
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.6s;
  }
  
  .next-text-section h2:nth-of-type(2),
  .next-text-section h2:nth-of-type(2)+p,
  .next-text-section h2:nth-of-type(2)+ul,
  .next-text-section h2:nth-of-type(2)+ul li {
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.8s;
  }
  
  .next-text-section h2:nth-of-type(3),
  .next-text-section h2:nth-of-type(3)+p,
  .next-text-section h2:nth-of-type(3)+ul,
  .next-text-section h2:nth-of-type(3)+ul li {
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 1s;
  }
  
  .next-text-section:not(:has(> h2)) p,
  .next-text-section:not(:has(> h2)) ul,
  .next-text-section:not(:has(> h2)) li {
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.6s;
  }
  
  .next-text-section.no-h2 p,
  .next-text-section.no-h2 ul,
  .next-text-section.no-h2 li {
	animation: fadeInDown 1s ease-out forwards;
	animation-delay: 0.6s;
  }
  
  /* ======================================================
	 8. SEZIONI MEMBERSHIP
  ====================================================== */
  .membership-section {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
	overflow-x: hidden;
  }
  
  .membership-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 0;
  }
  
  .membership-grid {
	max-width: 1800px;
	width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0px 20px;
	margin-top: 220px;
  }
  
  .membership-row {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 0;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
  }
  
  /* Blocchi membership */
  .membership-left,
  .membership-right {
	width: 50%;
  }
  
  .membership-box {
	border: 10px solid var(--secondary-color);
	padding: 20px 0px;
	border-radius: 20px;
  }
  
  .membership-box-header {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
	padding: 10px;
	gap: 20px;
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 30px;
  }
  
  .membership-box-text {
	padding: 30px 60px;
	text-align: center;
	color: #000;
	font-weight: 400;
	font-size: 18px;
  }
  
  .membership-box-text strong {
	color: var(--main-color);
  }
  
  /* Box sinistra e destra */
  .box-left {
	border-right: none;
	border-radius: 20px 0 0 20px;
  }
  
  .box-right {
	border-left: none;
	border-radius: 0 20px 20px 0;
  }
  
  /* Immagini membership */
  .membership-image {
	width: 100%;
	height: 600px;
	background-position: center;
	background-size: cover;
	border: 7px solid var(--main-color);
	border-radius: 20px;
  }
  
  .image-left {
	border-radius: 20px 0 0 20px;
  }
  
  .image-right {
	border-radius: 0 20px 20px 0;
  }
  
  /* Alternanza animazioni sinistra/destra */
  .membership-row:nth-child(odd) {
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInLeft 1s ease-out forwards;
  }
  
  .membership-row:nth-child(even) {
	opacity: 0;
	transform: translateX(50px);
	animation: slideInRight 1s ease-out forwards;
  }
  
  .membership-row:nth-child(1) {
	animation-delay: 0.2s;
  }
  
  .membership-row:nth-child(2) {
	animation-delay: 0.4s;
  }
  
  .membership-row:nth-child(3) {
	animation-delay: 0.6s;
  }
  
  .membership-row:nth-child(4) {
	animation-delay: 0.8s;
  }
  
  .membership-row:nth-child(5) {
	animation-delay: 1s;
  }
  
  .membership-row:nth-child(6) {
	animation-delay: 1.2s;
  }
  
  /* ======================================================
	 9. SEZIONE DISCOVER
  ====================================================== */
  .discover-section {
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: var(--secondary-color);
	padding: 80px 0px;
  }
  
  .discover-container {
	width: 100%;
	display: flex;
	justify-content: center;
  }
  
  .discover-grid {
	max-width: 100%;
	width: 100%;
	margin: 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
  }
  
  .discover-image {
	background-position: center;
	background-size: cover;
	border: 10px solid var(--main-color);
  }
  
  .discover-image-left {
	border-radius: 0 20px 20px 0;
  }
  
  .discover-image-right {
	border-radius: 20px 0 0 20px;
  }
  
  .discover-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	box-shadow: 0 4px 8px rgb(0 0 0 / 14%), 0 1px 3px rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	background-color: white;
  }
  
  .prenota {
	padding: 20px 40px;
	border-radius: 100px;
	text-align: center;
	font-weight: 600;
  }
  
  .prenota-green {
	background-color: var(--main-color);
	color: #fff;
  }
  
  .discover-text {
	color: #000;
	margin-top: 20px;
	line-height: 1.4;
	font-size: 27px;
  }
  
  .discover-text strong {
	color: var(--main-color);
  }
  
  /* ======================================================
	 10. SEZIONE PARTNERS
  ====================================================== */
  .partners-section {
	width: 100%;
	background-color: #FFF;
	margin-bottom: 50px;
  }
  
  .partners-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 40px;
  }
  
  .partners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	justify-items: center;
	gap: 30px;
  }
  
  .partner-wrapper {
	padding: 20px;
	border: 1px solid black;
	border-radius: 10px;
  }
  
  .partner-item {
	height: 130px;
	width: 130PX;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
  }
  
  /* Loghi sponsor */
  .academy-logo {
	background-image: url('../images/sponsors/academy-logo.svg');
  }
  .adidas-logo {
	background-image: url('../images/sponsors/adidas-logo.svg');
  }
  .bottega-verde-logo {
	background-image: url('../images/sponsors/bottega-verde-logo.svg');
  }
  .cristal-service-logo {
	background-image: url('../images/sponsors/cristal-service-logo.svg');
  }
  .estyatec-logo {
	background-image: url('../images/sponsors/estyatec-logo.svg');
  }
  .flavor-logo {
	background-image: url('../images/sponsors/flavor-logo.svg');
  }
  .flavorito-logo {
	background-image: url('../images/sponsors/flavorito-logo.svg');
  }
  .inestasy-logo {
	background-image: url('../images/sponsors/inestasy-logo.svg');
  }
  .inn-sport-logo {
	background-image: url('../images/sponsors/inn_sport-logo.svg');
  }
  .iteuromedia-logo {
	background-image: url('../images/sponsors/iteuromedia-logo.svg');
  }
  .ltdc-logo {
	background-image: url('../images/sponsors/ltdc-logo.png');
  }
  .macro-logo {
	background-image: url('../images/sponsors/macro-logo.png');
  }
  .marco-maronigiu {
	background-image: url('../images/sponsors/marco-marongiu-logo.png');
  }
  .under-armour-logo {
	background-image: url('../images/sponsors/under-armour-logo.svg');
  }
  .wycon-logo {
	background-image: url('../images/sponsors/wycon-logo.svg');
  }
  
  /* ======================================================
	 11. FOOTER
  ====================================================== */
  .footer {
	background-color: var(--footer-bg);
	color: var(--footer-text);
	padding: 60px 20px;
	text-align: center;
  }
  
  .footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 70px;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	gap: 20px;
  }
  
  .footer-logo img {
	width: 100%;
	max-width: 200px;
	height: auto;
  }
  
  .footer-social {
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  .footer-social a img {
	width: 40px;
	border-radius: 100px;
  }
  
  .footer-info,
  .footer-hours,
  .footer-links {
	margin: 10px 0;
  }

.footer-info p:first-child, .footer-hours p:first-child, .footer-links p:first-child{
	font-weight: 900;
}
  .footer-info a,
  .footer-hours a,
  .footer-links a {
	color: var(--footer-text);
	font-weight: 300;
	font-size: 18px;
	text-decoration: none;
  }
  
  .footer-info p,
  .footer-hours p,
  .footer-links p {
	margin: 5px 0;
	font-size: 20px;
	font-weight: 300;
	color: var(--footer-text);
  }
  
  .footer-copyright {
	font-size: 19px;
	line-height: 1.5;
	background: #1c1c1c;
	padding: 40px;
	color: #ffffff24;
	text-align: center;
  }
  
  /* Background del footer (sponsor in home) */
  .footer-sponsor-swiper {
	background-color: #0f2f2f;
	height: 190px;
	display: flex !important;
	align-items: center;
  }
  
  .home .footer-sponsor-swiper {
	display: none !important;
  }
  
  .footer-sponsor-swiper .swiper-wrapper {
	display: flex;
	width: 100%;
	gap: 30px;
	padding: 40px 20px;
	justify-content: center;
	height: 100px;
  }
  
  .partner-footer-wrapper {
	padding: 25px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	opacity: 0.3;
	box-sizing: border-box;
  }
  
  .partner-footer-item {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: invert(100%) grayscale(100%) brightness(300%) contrast(2000%);
  }
  
  .footer-sponsor-swiper .swiper-button-prev,
  .footer-sponsor-swiper .swiper-button-next {
	width: 40px;
	height: 40px;
	color: var(--main-color);
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	z-index: 100;
  }
  
  .footer-sponsor-swiper .swiper-button-prev {
	left: 10px;
  }
  
  .footer-sponsor-swiper .swiper-button-next {
	right: 10px;
  }
  
  .footer-sponsor-swiper .swiper-button-prev::after,
  .footer-sponsor-swiper .swiper-button-next::after {
	font-size: 22px;
	color: #01ef03;
	font-weight: bold;
  }
  
  .footer-sponsor-swiper .swiper-button-prev:hover,
  .footer-sponsor-swiper .swiper-button-next:hover {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  }
  
  @media (max-width: 768px) {
	.footer-sponsor-swiper .swiper-button-prev,
	.footer-sponsor-swiper .swiper-button-next {
	  width: 30px;
	  height: 30px;
	}
	
	.footer-sponsor-swiper .swiper-button-prev::after,
	.footer-sponsor-swiper .swiper-button-next::after {
	  font-size: 18px;
	}
	
	.footer-sponsor-swiper .swiper-button-prev {
	  left: 5px;
	}
	
	.footer-sponsor-swiper .swiper-button-next {
	  right: 5px;
	}
  }
  
  /* ======================================================
	 12. LOADING SCREEN
  ====================================================== */
  .loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(23, 61, 59, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
  }
  
  .loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
  }
  
  #loadingLogoViewer {
	opacity: 0;
	animation: fadeIn 2s ease-in-out forwards;
  }
  
  /* ======================================================
	 13. MODULO ABBONAMENTI / MEMBERSHIP CARD
  ====================================================== */
  .modulo-abbonamenti {
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .alternative .modulo-abbonamenti {
	height: 500px;
  }
  
  .modulo-abbonamenti-container {
	display: flex;
	flex-direction: row;
	height: calc(100%);
	width: calc(100%);
	margin: 40px;
	justify-content: center;
  }
  
  .modulo-abbonamenti-header {
	width: 30%;
	height: 100vh;
	background-image: url('https://www.nextsportclub.it/wp-content/uploads/2024/05/Padel-Copertina-pagina-interna.png');
	background-size: cover;
	background-position: center;
	border-radius: 0px 40px 40px 0px;
	position: sticky;
	top: 0;
	right: 0;
	background-repeat: no-repeat;
  }
  
  .modulo-abbonamenti-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 70%;
	position: relative;
  }
  
  .abbonamenti-header {
	height: 130px;
	width: 100%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 55px;
	gap: 20px;
	border-radius: 0px;
	position: sticky;
	top: 70px;
	z-index: 10;
	padding: 20px;
	transition: all 0.3s ease;
	}
  
  .abbonamenti-header img {
	width: 100px;
  }
  
  .abbonamenti-header-title {
	font-weight: bold;
	font-size: 50px;
	transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: font-size;
  }
  
  /* Sticky ridotto */
  .abbonamenti-header.is-sticky {
	height: 80px;
	}
  
  .abbonamenti-header.is-sticky .abbonamenti-header-title {
	font-size: 30px;
  }
  
  .abbonamenti-header.is-sticky img {
	width: 80px;
  }
  
  .abbonamenti-grid {
	height: 100%;
	background: rgb(228 228 228);
	display: flex;
	border-radius: 50px 0px 0px 50px;
	padding: 20px;
	flex-direction: column;
	gap: 30px;
	}
  
  .abbonamenti-grid.singola {
	grid-template-columns: repeat(1, 1fr);
  }
  
  .abbonamenti-grid.doppia {
	grid-template-columns: repeat(2, 1fr);
  }
  
  .abbonamenti-grid.tripla {
	grid-template-columns: repeat(3, 1fr);
  }
  
  .abbonamenti-card {
	height: 100%;
	border-radius: 0 0 50px 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: white;
	border-radius: 50px;
  }
  
  /* Header della card */
  .card-header {
	min-height: 20px;
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 50px;
	text-align: center;
	padding: 50px 0px;
	box-sizing: content-box;
	font-weight: 900;
	border-radius: 50px;
  }
  
  .alternative .card-header {
	height: 200px;
  }
  
  .card-header.left {
	border-radius: 50px;
  }
  
  .card-header.center {
	border-radius: 50px;
  }
  
  .card-header.right {
	border-radius: 50px;
  }
  
  /* Contenuto della card */
  .card-content-container {
	display: flex;
	justify-content: center;
  }
  
  .card-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 15px;
	font-weight: 900;
	font-size: 30px;
	line-height: 1.4;
	padding: 60px 40px 80px 80px;
  }
  
  .card-content strong {
	color: var(--main-color);
  }
  
  .card-content.lezioni {
    min-height: 100px;
  }
  
  .card-content.center {
	align-items: flex-start;
  }
  
  .alternative .card-content {
	height: 20%;
  }
  
  /* Footer della card */
  .card-footer {
	width: 100%;
	display: flex;
	background-color: var(--secondary-color);
	color: white;
	align-items: flex-start;
	justify-content: center;
	gap: 50px;
	border-radius: 50px;
	padding: 60px 80px;
	font-size: 18px;
	flex-direction: row;
  }
  
  .card-footer.single-center {
	align-items: flex-start;
  }
  
  .card-footer.left {
	/* border-radius: 50PX; */
	}
  
  .card-footer.center {
	border-radius: 50PX;
  }
  
  .card-footer.right {
	border-radius: 50px;
	}
  
  .lezioni .card-footer {
	/* height: 250px; */
  }
  
  .card-footer-row {
	display: flex;
	gap: 20px;
	font-size: 18px;
	align-items: flex-start;
	flex-direction: column;
	border-right: 1px solid #ffffff40;
	padding-right: 50px;
  }
.card-footer-row:last-child {
    border-right: none;
    padding-right: 0;
}
.lezioni-singole   .card-footer-row {
	border-right: 0px solid #ffffff40;
	padding-right: 0px;
	display: flex;
	align-items: center;
	}


.lezioni-di-gruppo   .card-footer-row {
	border-right: 0px solid #ffffff40;
	padding-right: 0px;
	display: flex;
	align-items: center;
	}
  
  .card-footer-label {
	font-weight: 500;
	font-size: 30px;
  }
  
  .card-footer-value {
	font-weight: 200;
	font-size: 20px;
  }
  
  .swiper.membership-width {
	max-width: 1000px;
	overflow-x: hidden !important;
  }
  
  .membership-card {
	background-color: var(--main-color);
	background-size: cover;
	background-position: center;
	border-radius: 30px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .membership-card-container {
	display: flex;
	flex-direction: column;
	width: calc(100% - 5px);
	gap: 20px;
	box-sizing: border-box;
  }
  
  .membership-card-header {
	width: 100%;
	height: 50px;
	background-color: rgba(25, 55, 53, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 50px;
	font-size: 2.3rem;
	gap: 20px;
	padding: 40px 0px;
  }
  
  .membership-card-price {
	height: 120px;
	width: 100%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 48px;
	gap: 20px;
	border-radius: 50px;
  }
  
  .membership-card-price div {
	font-weight: bold;
  }
  
  .membership-card-details {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	border-radius: 0 0 50px 50px;
	gap: 20px;
  }
  
  .membership-card-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--secondary-color);
	color: white;
	border-radius: 50px;
	padding: 15px;
  }
  
  .detail-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 60px;
	background-color: white;
	color: black;
	border-radius: 50px;
	border: 5px solid var(--main-color);
	width: calc(100% - 150px);
  }
  
  .detail-item-icon {
	width: 60px;
	height: 60px;
	background-color: var(--main-color);
	border-radius: 50%;
	background-image: url('https://www.svgrepo.com/show/196790/plant-garden.svg');
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
  }
  
  /* 13.bis - OVERRIDE CARD-FOOTER (GRIGIO + MARGINE) */
  .card-footer.card-footer-grey {
	background-color: var(--main-color);
	margin-top: 30px;
	}
  
  /* 13.ter - BLOCCO ORARI (FONT-SIZE E MARGINI) */
  .time-block {
	font-size: 40px;
	display: flex;
	flex-direction: column;
	font-weight: 800;
  }
  
  .time-block a {
	margin-bottom: 10px;
  }
  
  /* Classi aggiuntive per diversi tipi di abbonamenti */
  .under-school .abbonamenti-grid {
	border-radius: 50px 0px 0px 50px;
	padding: 20px;
	}
  
  .adults-school .abbonamenti-grid {
	border-radius: 0px 50px 50px 0px;
	padding: 20px;
  }
  
  .pro .abbonamenti-grid {
	border-radius: 0px 50px 50px 0px;
  }
  
  .lezioni-di-gruppo .abbonamenti-grid {
	border-radius: 0px 50px 50px 0px;
  }
  
  .lezioni-di-gruppo .modulo-abbonamenti-header {
	border-radius: 40px 0px 0px 40px;
  }
  
  .pro .modulo-abbonamenti-header {
	border-radius: 40px 0px 0px 40px;
  }
  
  .adults-school .modulo-abbonamenti-header {
	border-radius: 40px 0px 0px 40px;
  }
  
  @media only screen and (max-width: 1400px) {
	.under-school .abbonamenti-grid {
        border-radius: 30px;
    
    }
	.adults-school .abbonamenti-grid {
	  border-radius: 30px;
	  padding: 20px;
	}
	.academy .abbonamenti-grid {
	  border-radius: 30px;
	}
	.pro .abbonamenti-grid {
	  border-radius: 50px;
	}
	.lezioni-singole .abbonamenti-grid {
	  border-radius: 30px;
	}
	.lezioni-di-gruppo .abbonamenti-grid {
	  border-radius: 30px;
	}
	.lezioni-di-gruppo .modulo-abbonamenti-header {
	  border-radius: 30px;
	}
	.pro .modulo-abbonamenti-header {
	  border-radius: 30px;
	}
	.adults-school .modulo-abbonamenti-header {
	  border-radius: 30px;
	}
  }
  
  /* ======================================================
	 14. TESTO PROVA & CARDS (EVENTI / ALTRE CARD)
  ====================================================== */
  .section-content {
	font-size: 1.5rem;
	padding: 70px 13%;
	text-align: center;
	font-weight: 300;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
  }
  
  .section-content strong {
	display: inline;
	font-weight: bold;
	font-size: 1em;
	line-height: inherit;
  }
  
  .section-content > strong:first-child {
	display: block;
	font-size: 60px;
	line-height: 1;
	margin-bottom: 20px;
  }
  
  .section-content span {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
  }
  
  .cards-wrapper {
	display: grid;
	gap: 20px;
	text-align: center;
	padding: 50px;
	justify-content: center;
	grid-template-columns: repeat(4, 1fr);
	text-transform: uppercase;
  }
  
  .card {
	width: 100%;
	height: 600px;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
  }
  
  .card .header,
  .card .date,
  .card .footer {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
  }
  
  /* Header comune delle card */
  .card .header {
	color: white;
	font-size: 39px;
  }
  
  /* Sezione data */
  .card .date .day {
	font-size: 30px;
  }
  
  .card .date .number {
	font-size: 90px;
  }
  
  /* Footer comune delle card */
  .card .footer {
	font-size: 33px;
	letter-spacing: 5px;
  }
  
  .card .footer .highlight {
	color: rgba(0, 239, 0, 1);
  }
  
  /* Tipologie di card */
  .card.daily-coach .header {
	background-color: rgb(23, 61, 59);
  }
  
  .card.daily-coach .date {
	background-color: white;
	color: rgb(23, 61, 59);
  }
  
  .card.daily-coach .footer {
	background-color: white;
	color: rgb(23, 61, 59);
	border-top: 3px solid rgb(23, 61, 59);
  }
  
  .card.daily-coach .footer .highlight {
	color: rgba(0, 239, 0, 1);
  }
  
  .card.closed .header {
	background-color: #525252;
	border-bottom: 7px solid #C8C8C8;
  }
  
  .card.closed .date,
  .card.closed .footer {
	background-color: #525252;
	color: #C8C8C8;
	border-top: 3px solid rgba(255, 255, 255, 0.14);
  }
  
  .card.daily-coach-start .header {
	background-color: rgba(0, 239, 0, 1);
	border-bottom: 7px solid white;
  }
  
  .card.daily-coach-start .date {
	background-color: rgb(23, 61, 59);
	color: white;
  }
  
  .card.daily-coach-start .date .number {
	color: rgba(0, 239, 0, 1);
  }
  
  .card.daily-coach-start .footer {
	background-color: rgb(23, 61, 59);
	color: rgba(0, 239, 0, 1);
	border-top: 3px solid rgba(255, 255, 255, 0.14);
  }
  
  .card.daily-coach-start .footer .highlight {
	color: white;
  }
  
  .card.tournament .header {
	background-color: rgba(0, 239, 0, 1);
	border-bottom: 7px solid rgb(200, 200, 200);
  }
  
  .card.tournament .date {
	background-color: white;
	color: rgba(0, 239, 0, 1);
  }
  
  .card.tournament .footer {
	background-color: white;
	color: rgba(0, 239, 0, 1);
	border-top: 3px solid rgba(0, 239, 0, 1);
  }
  
  .card.tournament .footer .highlight {
	color: rgb(23, 61, 59);
  }
  
  .load-more-container {
	padding: 50px 13%;
  }
  
  .load-more-btn {
	height: 70px;
	width: 100%;
	background-color: rgba(0, 239, 0, 1);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: white;
  }
  
  /* ======================================================
	 15. SWIPER PERSONALIZZATO
  ====================================================== */
  .swiper {
	padding: 0;
	overflow: visible;
	max-width: 100%;
  }
  
  .swiper-slide {
	position: relative;
	transition: all 0.3s ease-in-out;
	border-radius: 30px;
  }
  
  .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 30px;
	pointer-events: none;
	background: linear-gradient(to right, rgb(0 0 0 / 30%), rgba(0, 0, 0, 0.4), rgb(0 0 0 / 30%));
	opacity: 0;
	transition: opacity 0.5s ease;
  }
  
  .swiper-slide:not(.swiper-slide-active)::before {
	opacity: 1;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
	width: 30px;
	height: 30px;
	color: var(--main-color);
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
	font-size: 30px;
	color: var(--main-color);
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
	color: rgba(0, 200, 0, 1);
  }
  
  /* ======================================================
	 16. MAP
  ====================================================== */
  .map-container {
	padding: 40px 0px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 50px;
	margin: auto;
	max-width: 1300px;
  }
  
  .map-container iframe {
	border-radius: 20px;
	border: 0;
	padding: 5px;
	background-color: #01ef03;
	height: 500px;
  }
  
  /* ======================================================
	 18. NAVBAR: GRADIENT & BLUR EFFECTS
  ====================================================== */
  .gradient-effect {
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
	height: 5px;
	width: 122px;
	z-index: 1;
	background: radial-gradient(44.6% 825% at 50% 50%, rgb(255, 255, 255) 0%, rgba(255, 72, 109, 0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
  }
  
  .blur-effect {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgb(1, 239, 3);
	border-radius: 4px;
	filter: blur(8px);
	-webkit-filter: blur(8px);
	height: 5px;
	width: 40px;
	opacity: 0;
	transition: opacity 0.3s ease;
	overflow: visible;
	overflow: hidden;
  }
  
  .navbar.shrink .blur-effect:hover,
  .navbar.shrink .gradient-effect:hover,
  .navbar-item-wrapper:hover .gradient-effect,
  .navbar-item-wrapper:hover .blur-effect {
	opacity: 1;
  }
  
  /* ======================================================
	 19. CONTENITORE CONTATTI
  ====================================================== */
  .contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    box-sizing: border-box;
}

.contact-item {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-item p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin: 5px 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .contact-item h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-item p {
        font-size: 16px;
    }
}
  
  /* ======================================================
	 20. SEZIONE CAMPI
  ====================================================== */
  .campi-section {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 0;
  }
  
  .campi-section h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #333;
  }
  
  .campo-blocco {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
  }
  
  .campo-blocco .campo {
	max-width: 100%;
	height: 600px;
	width: 100%;
	border-radius: 8px;
	margin-bottom: 50px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
  }
  
  .campo-blocco .campo.competition {
	background-image: url(../images/public/competition.png);
  }
  
  .campo-blocco .campo.panoramic {
	background-image: url(../images/public/panoramic.png);
  }
  
  .campo-blocco .campo.fx {
	background-image: url(../images/public/fx.png);
  }
  
  .campo-testo {
	text-align: center;
	background: #01ef03;
	border-radius: 40px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 20px;
  }
  
  .campo-testo h3 {
	font-size: 3.5rem;
	color: var(--secondary-color);
	margin-bottom: 15px;
  }
  
  .campo-testo p {
	color: white;
	line-height: 1.5;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 30px;
	width: 70%;
  }
  
  .campo-testo p strong {
	display: block;
	margin-bottom: 5px;
	color: white;
	font-size: 2.3rem;
  }
  
  /* ======================================================
	 21. LOADER OVERLAY
  ====================================================== */
  #loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--secondary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 999999;
  }
  
  .loader-text {
	color: #ffffff20;
	font-family: sans-serif;
	font-size: 1.7rem;
	margin-bottom: 30px;
  }
  
  #progress-bar-container {
	width: 70%;
	max-width: 400px;
	height: 12px;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
  }
  
  #progress-bar-fill {
	width: 0%;
	height: 100%;
	background-color: var(--main-color);
	animation: eloading 2s linear forwards;
  }
  
  /* ======================================================
	 22. LOADING-VIDEO
  ====================================================== */
  #loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--secondary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow: hidden;
	transition: opacity 0.5s ease-out;
  }
  
  #loading-video {
	width: 100%;
	scale: 1;
  }
  
  #animationContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 30000;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
  }
  
  /* ======================================================
	 23. LOGO WIDGET (LOTTIE)
  ====================================================== */
  #lottie-container {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 200px;
	height: 200px;
	z-index: 1000;
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
  }
  
  #text {
	display: block;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) scale(0);
	background-color: #23403E;
	border: 3px solid #ffffffba;
	color: white;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 14px;
	white-space: nowrap;
	font-family: 'Roboto';
	font-weight: 700;
	opacity: 0;
	transition: opacity 0.5s, transform 0.5s;
  }
  
  #lottie-container:hover #text {
	opacity: 1;
	transform: translateX(-50%) scale(1);
  }
  
  #lottie {
	width: 100%;
	height: 100%;
  }
  
  @media only screen and (max-width: 600px) {
	#lottie-container {
	  width: 150px;
	  height: 150px;
	}
	#text {
	  padding: 8px 25px;
	  font-size: 12px;
	  bottom: 90%;
	}
  }
  
  /* ======================================================
	 MEDIA QUERIES (LAYOUT RESPONSIVE)
  ====================================================== */
  
  /* 0 - 1400px */
  @media only screen and (max-width: 1400px) {
	.abbonamenti-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 0;
        padding: 10px !important;
    
    }

	    .navbar {

	border-bottom: 0px solid #01ef03c4;
	}
    .mobile-menu-content {

		margin-top: -40px;
		}
	.card-header {
	  border-radius: 20px 20px 0 0;
	  font-size: 1.2rem;
	}
  
	.card-footer {
	  border-radius: 0 0 20px 20px;
	  font-size: 0.9rem;
	}
  
	.abbonamenti-header {
	  font-size: 24px;
	}
  
	.card-content {
        gap: 20px;
        height: 100%;
        padding: 40px;
        text-align: center;
        align-items: center;
        font-size: 20px;
        padding: 40px 20px;
        align-items: center !important;
    
    }
  
	.card-header.left {
	  border-radius: 50px;
	}
  
	.card-footer {
        border-radius: 30px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20PX;
        align-items: center !important;
        text-align: center;
    
    }
  
	.card-footer-row {
        border-right: 0px solid #ffffff40;
        padding-right: 0px;
        display: flex;
        align-items: center;
        text-align: center;
    
    }
  
	.card-header.right {
	  border-radius: 50px;
	}
  
	.card-header.center {
	  border-radius: 50px;
	}
  
	.card-footer.center {
	  border-radius: 30px;
	}
  
	.card-footer.right {
	  border-radius: 30px;
	}
  
	.card-header {
	  border-radius: 50px;
	  font-size: 22px;
	  text-align: center;
	  padding: 30px 0;
	  box-sizing: content-box;
	  height: auto;
	  background: var(--main-color);
	}
  
	.modulo-abbonamenti-header {
	  height: 400px;
	  width: 100%;
	  background-image: url('https://www.nextsportclub.it/wp-content/uploads/2024/05/Padel-Copertina-pagina-interna.png');
	  background-size: cover;
	  background-position: center;
	  border-radius: 30px;
	  display: none; /* Nascondi su tablet o schermi sotto i 1400px, come da esempio */
	}
  
	.abbonamenti-header-title {
	  font-size: 40px;
	}
  
	.abbonamenti-header.is-sticky .abbonamenti-header-title {
	  font-size: 25px;
	}
  
	.abbonamenti-header img {
	  width: 70px;
	}
  
	.abbonamenti-header.is-sticky {
	  height: 60px;
	}
  
	.abbonamenti-header.is-sticky img {
	  width: 50px;
	}
  
	.partners-container {
	  padding: 20px;
	}
  
	.partners-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  
	.footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 20px;
    
    }
  
	.footer-logo img {
	  width: 75%;
	}
  
	.footer-info,
	.footer-hours,
	.footer-links {
	  margin: 10px 0;
	}
  
	.footer-social {
	  margin-bottom: 20px;
	}
  
	.gallery-section {
	  gap: 30px;
	  background-color: #ffffff;
	  display: flex;
	  box-sizing: border-box;
	  width: 100%;
	  margin: 50px 0;
	  padding: 0 5rem;
	}
  
	.navbar-category {
	  display: none;
	}
  
	.navbar-button {
	  display: none;
	}
  
	.membership-grid {
	  grid-template-columns: 1fr;
	  gap: 20px;
	  margin-top: 0;
	}
  
	.membership-row {
	  flex-direction: column-reverse;
	  gap: 20px;
	  margin-top: 0 !important;
	}
  
	.membership-left,
	.membership-right {
	  width: 100%;
	}
  
	.box-left,
	.box-right {
	  border-radius: 20px;
	  border-right: 10px solid var(--secondary-color);
	  border-left: 10px solid var(--secondary-color);
	}
  
	.image-left,
	.image-right {
	  border-radius: 20px;
	}
  
	.membership-row:nth-child(odd),
	.membership-row:nth-child(even) {
	  opacity: 0;
	  transform: translateY(50px);
	  animation: slideInUp 1s ease-out forwards !important;
	}
  
	.membership-row:nth-child(1) {
	  animation-delay: 0.2s !important;
	}
  
	.membership-row:nth-child(2) {
	  animation-delay: 0.4s !important;
	}
  
	.membership-row:nth-child(3) {
	  animation-delay: 0.6s !important;
	}
  
	.membership-row:nth-child(4) {
	  animation-delay: 0.8s !important;
	}
  
	.membership-row:nth-child(5) {
	  animation-delay: 1s !important;
	}
  
	.membership-row:nth-child(6) {
	  animation-delay: 1.2s !important;
	}
  
	.discover-grid {
	  grid-template-columns: 1fr;
	  width: 90%;
	  margin: 0 auto;
	  gap: 40px;
	}
  
	.discover-image-left,
	.discover-image-right {
	  border-radius: 20px;
	  margin: 0 auto;
	  width: 100%;
	  height: 200px;
	}
  
	.discover-center {
	  padding: 60px 20px;
	}
  
	.green-bg {
	  font-size: 40px;
	  letter-spacing: 5px;
	}
  
	.green-bg::before {
	  background-size: 900px;
	}
  
	.hero {
	  min-height: 200px;
	}
  
	.hero-image {
	  width: 100%;
	}
  
	.next-text-container {
	  padding: 0 30px;
	}
  
	.next-text-section h1 {
	  font-size: 1.8rem;
	}
  
	.next-text-section .subtitle {
	  font-size: 1.1rem;
	}
  
	.next-text-section p {
	  font-size: 0.95rem;
	}
  
	.navbar {
	  flex-wrap: wrap;
	  justify-content: center;
	  font-size: 18px;
	}
  
	.gallery-section {
        flex-direction: column;
        padding: 10px;
    
    }
  
	.swiper {
	  height: auto;
	}
  
	.discover-text {
	  text-align: center;
	  font-size: 20px;
	}
  
	.prenota {
        margin: 0 auto;
        font-size: 20px;
        padding: 15px 30px;
    
    }
  
	.section-content {
	  padding: 30px 20px;
	}
  
	.map-container {
	  padding: 40px 20px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 50px;
	}
  
	.next-text-section h1 {
	  font-size: 2.3rem;
	}
  
	.next-text-section .subtitle {
	  font-size: 1.8rem;
	}
  
	.next-text-section p {
	  font-size: 1.4rem;
	  width: 100%;
	}
  
	.membership-box-text {
	  font-size: 21px;
	}
  
	.membership-box-header {
	  font-size: 29px;
	}
  
	.membership-image {
	  height: 200px;
	}
  
	.membership-card-header {
	  font-size: 1.8rem;
	}
  
	.membership-card-price {
	  font-size: 0.8rem;
	}
  
	.detail-item {
	  font-size: 0.7rem;
	}
  
	.detail-item-icon {
	  width: 40px;
	  height: 40px;
	  background-size: 20px;
	}
  
	.membership-card-header {
	  font-size: 1.2rem;
	  padding: 20px 0;
	}
  
	.membership-card-price {
	  font-size: 35px;
	}
  
	.detail-item {
	  font-size: 0.8rem;
	  width: 100%;
	  padding: 20px;
	}
  
	.footer-sponsor-swiper .swiper-wrapper {
	  gap: 20px;
	  height: 70px;
	  padding: 20px;
	}
  
	.partner-footer-wrapper {
	  padding: 15px;
	  position: relative;
	  transition: all 0.3s ease-in-out;
	  border-radius: 20px !important;
	}
  
	.footer-sponsor-swiper {
	  background-color: #0f2f2f;
	  height: 140px;
	  display: flex !important;
	  align-items: center;
	}
  
	.partners-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  
	.campo-blocco .campo {
	  height: 250px;
	}
  
	.campo-testo p {
	  font-size: 20px;
	  width: 100%;
	}
  
	.campo-testo p strong {
	  display: block;
	  margin-bottom: 5px;
	  color: white;
	  font-size: 2rem;
	}
  
	.campo-testo h3 {
	  font-size: 2.5rem;
	  color: var(--secondary-color);
	  margin-bottom: 15px;
	}
  
	.mobile-menu a {
	  font-size: 30px;
	}
  
	.modulo-abbonamenti-container {
	  display: flex;
	  flex-direction: column;
	  margin: 0;
	}
  
	.next-text-section ul {
	  font-size: 1.3rem;
	  margin: 30px 0px;
	}
  
	.section-content strong {
	  font-size: 40px;
	}
  
	.section-content span {
	  font-size: 25px;
	}
  
	.lezioni .card-footer.left {
	  /* height: 200px; */
	}
  
	.cards-wrapper {
	  display: grid;
	  gap: 20px;
	  text-align: center;
	  padding: 50px 20px;
	  justify-content: center;
	  grid-template-columns: repeat(1, 1fr);
	  text-transform: uppercase;
	}
  
	.modulo-abbonamenti-content {
	  width: 100%;
	}
  }
  
  /* 1401px - 2200px */
  @media only screen and (min-width: 1401px) {
	.footer-container {
	  flex-direction: row;
	  justify-content: space-between;
	  align-items: flex-start;
	  text-align: left;
	  padding: 40px 20px;
	}
	.footer-logo,
	.footer-social,
	.footer-info,
	.footer-hours,
	.footer-links {
	  flex: 1;
	  max-width: 300px;
	  margin: 0 auto;
	}
	.footer-social {
	  justify-content: center;
	}
	.footer-info,
	.footer-hours,
	.footer-links {
	  margin-top: 20px;
	}
	.footer-copyright {
	  text-align: center;
	  width: 100%;
	}
	.swiper.membership-width {
	  max-width: 100%;
	  overflow-x: hidden !important;
	}
	.membership-row {
	  margin-top: -220px;
	}
	.next-text-container {
	  max-width: 1300px;
	}
	.swiper.membership-width {
	  max-width: 2000px;
	}
	.multisport-content {
	  max-width: 1300px;
	}
  }
  
  /* >= 2200px */
  @media only screen and (min-width: 2200px) {
	.next-text-container {
	  max-width: 1900px;
	}
	.swiper.membership-width {
	  max-width: 100%;
	  overflow-x: hidden !important;
	}
	.navbar-content {
	  max-width: 1900px;
	}
	.membership-card-price {
	  height: 220px;
	}
	.next-text-section h2 {
	  margin-bottom: 10px;
	  font-size: 35px;
	}
	.multisport-content {
	  max-width: 1800px;
	}
	.membership-box-text {
	  padding: 30px 60px;
	  font-size: 22px;
	}
	.mobile-menu a {
	  font-size: 50px;
	}
	.mobile-menu-logo {
	  height: 140px;
	  margin-bottom: 40px;
	}
	.card-footer {
	  width: 100%;
	}
	.card-content {
	  /* font-size: 20px; */
	}
	.next-text-section ul {
	  font-size: 2rem;
	}
	.campi-section {
	  width: 100%;
	  max-width: 1400px;
	  margin: 0 auto;
	  padding: 40px 0;
	}
	.map-container {
	  padding: 40px 0px;
	  max-width: 1900px;
	}
  }
  
  /* Media Queries per tablet */
  @media screen and (max-width: 1024px) {
	.modulo-abbonamenti-content {
	  width: 100%;
	}
	.modulo-abbonamenti-header {
	  display: none;
	}
	.abbonamenti-header-title {
	  font-size: 40px;
	}
	.abbonamenti-header.is-sticky .abbonamenti-header-title {
	  font-size: 25px;
	}
  }
  
  @media screen and (max-width: 768px) {
	.abbonamenti-header {
	  padding: 10px;
	  top: 100px;
	}
	.abbonamenti-header-title {
	  font-size: 30px;
	}
	.abbonamenti-header.is-sticky .abbonamenti-header-title {
	  font-size: 20px;
	}
	.abbonamenti-header img {
	  width: 70px;
	}
	.abbonamenti-header.is-sticky {
	  height: 60px;
	}
	.abbonamenti-header.is-sticky img {
	  width: 50px;
	}
  }
  
  /* Media Queries per mobile piccoli */
  @media screen and (max-width: 480px) {
	.abbonamenti-header {
	  padding: 8px;
	  top: 70px;
	}
	.abbonamenti-header-title {
	  font-size: 24px;
	}
	.abbonamenti-header.is-sticky .abbonamenti-header-title {
	  font-size: 16px;
	}
	.abbonamenti-header img {
	  width: 60px;
	}
	.abbonamenti-header.is-sticky {
	  height: 50px;
	}
	.abbonamenti-header.is-sticky img {
	  width: 40px;
	}
  }
  
  /* Privacy Policy Styles */
  .privacy-policy-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
  }
  
  .privacy-policy-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: #000;
  }
  
  .privacy-policy-content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
  }
  
  .privacy-policy-content h2 {
    font-size: 1.8em;
    margin: 30px 0 15px;
    color: #000;
  }
  
  .privacy-policy-content h3 {
    font-size: 1.4em;
    margin: 20px 0 10px;
    color: #000;
  }
  
  .privacy-policy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .privacy-policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
  }
  
  .privacy-policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .privacy-consent-form {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
  }
  
  .consent-checkboxes {
    margin-top: 20px;
  }
  
  .consent-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  
  .consent-text {
    display: block;
    margin-bottom: 10px;
  }
  
  .radio-group {
    display: flex;
    gap: 20px;
  }
  
  .radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .radio-group input[type="radio"] {
    margin: 0;
    cursor: pointer;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .privacy-policy-container {
      margin: 100px auto 40px;
      padding: 0 15px;
    }
  
    .privacy-policy-content {
      padding: 20px;
    }
  
    .privacy-policy-content h1 {
      font-size: 2em;
    }
  
    .privacy-policy-content h2 {
      font-size: 1.5em;
    }
  
    .privacy-policy-content h3 {
      font-size: 1.2em;
    }
  
    .consent-item {
      padding: 10px;
    }
  
    .radio-group {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  .section-title strong {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
  }
  
  /* Login Form Styles */
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 100px;
  }
  
  .login-box {
    background: white;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
  }
  
  .login-description {
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 15px;
  }
  
  .new-account {
    color: #666;
    font-size: 15px;
  }
  
  .input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 12px 45px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(18, 65, 68, 0.1);
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.input-icon.mail {
    background-image: url('/assets/icon/mail.svg');
}

.input-icon.phone {
    background-image: url('/assets/icon/phone.svg');
}

.input-icon.pass {
    background-image: url('/assets/icon/pass.svg');
}

@media (max-width: 768px) {
    .input-wrapper {
        margin-bottom: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"] {
        padding-right: 40px;
        font-size: 14px;
    }

    .input-icon {
        width: 18px;
        height: 18px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"] {
        padding: 10px;
        padding-right: 35px;
        font-size: 13px;
    }

    .input-icon {
        width: 16px;
        height: 16px;
        right: 10px;
    }
}
  
  .login-button {
    width: 100%;
    padding: 15px;
    background-color: #26413C;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
  }
  
  .terms {
    font-size: 13px;
    color: #666;
  }
  
  .terms a {
    color: #00EF00;
    text-decoration: none;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .input-wrapper {
    position: relative;
  }
  
  .input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .login-button:hover {
    background: #264f4a;
  }
  
  .terms {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
  }
  
  .terms a {
    color: #00b300;
    text-decoration: none;
  }
  
  /* Form Containers */
  .login-container,
  .registration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
    background-color: #f5f5f5;
    flex-direction: column;
  }
  
  .login-box,
  .registration-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 3px solid var(--secondary-color);;
  }
  
  .registration-box {
    max-width: 800px;
  }
  
  .logo {
    width: auto;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
  }
  
  .centered-logo {
    display: block;
    margin: 0 auto 30px;
    position: relative;
    max-width: 80%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .centered-logo {
      max-width: 70%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .centered-logo {
      max-width: 60%;
      margin-bottom: 15px;
    }
  }
  
  .registration-box .centered-logo {
    width: auto;
    max-height: 80px;
    margin: -120px auto 30px;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .registration-box .centered-logo {
      max-height: 60px;
      margin: -100px auto 30px;
    }
  }
  
  @media (max-width: 480px) {
    .registration-box .centered-logo {
      max-height: 50px;
      margin: -80px auto 30px;
    }
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .login-description {
    color: #666;
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .form-group.full-width {
    width: 100%;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
  }
  
  .input-wrapper {
    position: relative;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"] {
    width: 100%;
    padding: 12px;
    padding-right: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
  }
  
  .input-icon.mail {
    background-image: url('../../assets/icon/mail.svg');
  }
  
  .input-icon.phone {
    background-image: url('../../assets/icon/phone.svg');
  }
  
  .input-icon.pass {
    background-image: url('../../assets/icon/pass.svg');
  }
  
  .login-button,
  .register-button {
    width: 100%;
    padding: 14px;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
  }
  
  .login-button:hover,
  .register-button:hover {
    background-color: #1a2e2a;
  }
  
  .new-account {
    margin: 20px 0;
  }
  
  .create-account {
    color: #00EF00;
    text-decoration: none;
    font-weight: 500;
  }
  
  .create-account:hover {
    text-decoration: underline;
  }
  
  .privacy-section {
    text-align: left;
    margin: 20px 0;
  }
  
  .checkbox-group,
  .consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
    text-align: left;
  }
  
  .consent-group label {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .terms {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
  }
  
  .terms a {
    color: #00EF00;
    text-decoration: none;
  }
  
  .terms a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .login-box,
    .registration-box {
      padding: 20px;
    }
  }
  
  .registration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.registration-box {
    background: white;
    padding: 40px;
    border-radius: 0px 25px 25px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1000px;
    text-align: center;
    position: relative;
    border: 2px solid var(--secondary-color);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    text-align: left;
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.logo.centered-logo {
    width: 200px;
    margin: 0px auto 25px;
    display: block;
    height: auto;
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .registration-box {
        max-width: 900px;
        padding: 35px;
    }
    
    .logo.centered-logo {
        width: 180px;
        margin: 0px auto 35px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"] {
        padding: 8px 35px 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .registration-container {
        padding-top: 30px;
    }
    
    .registration-box {
        padding: 25px;
        max-width: 100%;
    }
    
    .logo.centered-logo {
        width: 160px;
        margin: 0px auto 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}
  
  .navbar-logo {
    height: 50px;
    width: auto;
  }
  
  @media (max-width: 480px) {
    .navbar-logo {
      height: 35px;
    }
  }
  
  .hidden-section {
    display: none !important;
  }
  
  /* Contatti Page Styles */
  .map-container {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 2rem;
   background: var(--dark-green);
  }
  
  .map-wrapper {
   width: 100%;
   height: 400px;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   width: 100%;
  }
  
  .contact-card {
   background: var(--secondary-color);
   padding: 2rem;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-align: center;
}

.contact-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-content h3 {
   color: var(--main-color);
   font-size: 1.8rem;
   margin-bottom: 15px;
}

.contact-content p, 
.contact-content a {
   color: white;
   font-size: 1.2rem;
   margin: 5px 0;
   text-decoration: none;
}

.contact-content a:hover {
   color: var(--main-color);
   transition: color 0.3s ease;
}
  
/* Stili per la sezione gallery di multisport.html */
.multisport-gallery-slide {
  height: 650px;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
}

.multisport-gallery-section {
  margin-bottom: 100px;
}

.multisport-section-title {
  margin-bottom: 100px;
}
  
/* ======================================================
   REGISTRATION CARDS
====================================================== */
.registration-cards-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   max-width: 1200px;
   margin: 0 auto;
}

.registration-card {
   background-color: var(--secondary-color);
   border-radius: 8px;
   position: relative;
   color: white;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   width: 100%;
   max-width: 300px;
   height: 100%;
   margin: 0 auto;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.registration-card-wrapper {
   padding: 0;
   width: 100%;
   height: 100%;
   display: flex;
}

.registration-card h3 {
   font-size: 28px;
   margin: 0;
   font-weight: 800;
   letter-spacing: 1px;
   width: 100%;
   color: white;
   text-align: center;
   padding: 15px;
   text-transform: uppercase;
}

.registration-card .price {
   background-color: white;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 5px;
   padding: 10px;
   margin: 0;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.registration-card .price-amount {
   font-size: 40px;
   font-weight: 600;
   color: var(--main-color);
}

.registration-card .price-period {
   color: black;
   font-size: 15px;
   margin-top: 5px;
}

.registration-card-content {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   flex-direction: column;
   padding: 10px 0;
   gap: 10px;
}

.navbar-logo {
   width: 100px;
   margin: 5px auto;
}

.registration-card-text {
   background-color: white;
   border-radius: 8px;
   padding: 12px;
   width: calc(100% - 30px);
   margin: 0 15px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
   min-height: 80px;
}

.registration-card p {
   font-size: 14px;
   line-height: 1.6;
   margin: 0;
   color: black;
   text-align: center;
}

.registration-card p span {
   color: var(--main-color);
   font-weight: 600;
}

.registration-card input[type="radio"] {
   position: absolute;
   opacity: 0;
}

.registration-radio-label {
   width: 24px;
   height: 24px;
   border: 2px solid var(--secondary-color);
   border-radius: 50%;
   display: block;
   background-color: white;
   transition: all 0.3s ease;
   position: relative;
   cursor: pointer;
}

.registration-card input[type="radio"]:checked + .registration-radio-label {
   border-color: var(--main-color);
   background-color: var(--main-color);
}

.registration-card input[type="radio"]:checked + .registration-radio-label::after {
   content: '';
   width: 12px;
   height: 12px;
   background: white;
   border-radius: 50%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
}

#registration-cards-container {
   margin-top: 30px;
   transition: all 0.3s ease;
}

@media (max-width: 768px) {
   .registration-cards-grid {
      grid-template-columns: 1fr;
   }
   
   .registration-card {
      max-width: 100%;
   }
}

.registration-note-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.registration-note {
  color: #1B3D2F;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  opacity: 0.8;
  font-style: italic;
}
  
/* --- NEWS & EVENTI HERO --- */
.news-hero-section {
  padding: 48px 0 32px 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-hero-title {
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.news-hero-main {
  background: #111;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  padding: 0 0 32px 0;
  max-width: 1100px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-hero-image-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.news-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-hero-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 40%, rgba(0,0,0,0.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 48px 32px 48px;
}
.news-hero-content {
  color: #fff;
  font-family: var(--font-family-base);
}
.news-hero-heading {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}
.news-hero-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.news-hero-desc .highlight {
  color: #00ef00;
  font-weight: 700;
}
.news-hero-thumbnails {
  display: flex;
  gap: 18px;
  margin: 28px 0 0 0;
}
.news-hero-thumb {
  width: 140px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: border 0.2s, opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.news-hero-thumb.active,
.news-hero-thumb:hover {
  border: 2px solid #00ef00;
  opacity: 1;
  transform: scale(1.05);
}
.news-hero-btn {
  margin-top: 28px;
  background: #111;
  color: #00ef00;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid #00ef00;
  border-radius: 10px;
  padding: 14px 48px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s;
}
.news-hero-btn:hover {
  background: #00ef00;
  color: #111;
}
@media (max-width: 1200px) {
  .news-hero-main { max-width: 98vw; }
  .news-hero-image-container { height: 260px; }
  .news-hero-title { font-size: 2rem; }
  .news-hero-heading { font-size: 1.3rem; }
  .news-hero-thumbnails { gap: 10px; }
  .news-hero-thumb { width: 80px; height: 48px; }
  .news-hero-overlay { padding: 18px 18px 12px 18px; }
}
@media (max-width: 700px) {
  .news-hero-section { padding: 18px 0 10px 0; margin: 18px 0 0 0; border-radius: 10px; }
  .news-hero-main { border-radius: 10px; padding: 0 0 12px 0; }
  .news-hero-image-container { border-radius: 10px 10px 0 0; height: 140px; }
  .news-hero-title { font-size: 1.1rem; margin-bottom: 10px; }
  .news-hero-heading { font-size: 1rem; }
  .news-hero-desc { font-size: 0.9rem; }
  .news-hero-thumbnails { gap: 4px; margin-top: 10px; }
  .news-hero-thumb { width: 38px; height: 22px; border-radius: 4px; }
  .news-hero-btn { font-size: 0.9rem; padding: 8px 18px; border-radius: 6px; margin-top: 10px; }
  .news-hero-overlay { padding: 6px 6px 4px 6px; }
}
  
.news-hero-container {
  max-width: 1300px;
  margin: 0 auto 48px auto;
  width: 100%;
  padding: 0 16px;
}
.news-hero-section {
  background: #111;
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .news-hero-container { padding: 0 4px; }
  .news-hero-section { margin-top: 18px; border-radius: 10px; }
}
  
@media (max-width: 700px) {
  .news-hero-container {
    padding: 0 2vw;
    margin-bottom: 18px;
  }
  .news-hero-section {
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: 0 6px 24px 0 rgba(0,0,0,0.13);
    padding-bottom: 10px;
  }
  .news-hero-main {
    border-radius: 10px;
    padding: 0 0 10px 0;
  }
  .news-hero-image-container {
    border-radius: 10px 10px 0 0;
    height: 180px;
    min-height: 140px;
    max-height: 220px;
  }
  .news-hero-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .news-hero-heading {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .news-hero-desc {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .news-hero-thumbnails {
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
  }
  .news-hero-thumb {
    width: 48px;
    height: 32px;
    border-radius: 5px;
  }
  .news-hero-btn {
    font-size: 0.98rem;
    padding: 8px 18px;
    border-radius: 6px;
    margin-top: 14px;
    min-width: 0;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .news-hero-overlay {
    padding: 10px 8px 8px 8px;
  }
}
  