﻿/* --- Stile generale --- */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #222;
}

/* --- Sfondo e overlay --- */
.bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('sfondo.jpg') no-repeat center center / cover;
  z-index: 0;                 
  filter: blur(3px) brightness(0.9);  
  transform: scale(1.03);     
  pointer-events: none;       
}

.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.28); 
  z-index: 1;
  pointer-events: none;
}

/* --- Contenuto sopra --- */
.page {
  position: relative;
  z-index: 2;
}

/* --- Hero con logo e titolo --- */
.hero-welcome {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.hero-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-logo {
  width: 60px;
  height: auto;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.6);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #eaeaea;
  text-shadow: 0 2px 4px rgba(0,0,0,.6);
}

/* --- Foto sotto il titolo --- */
.hero-photo {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
}

.hero-photo img {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.hero-photo img:hover {
  transform: scale(1.02);
}

/* --- Bande Parcheggio e Deposito --- */
.strip {
  background: #fff;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.strip__inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.strip--parking .strip__icon {
  background: #1976d2;
}

.strip--luggage .strip__icon {
  background: #388e3c;
}

.strip__text h2 {
  margin: 0;
  font-size: 1.3rem;
}

.strip__text p {
  margin: 3px 0 0;
  color: #555;
}

/* --- Sezione informazioni --- */
.section--info {
  background: #fff;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.info-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.section__title {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* --- Carte prezzi --- */
.prices {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.price-card {
  flex: 1;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-card__head h3 {
  margin: 5px 0;
}

.price-card__big {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #1976d2;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0d47a1;
}

.btn--block {
  display: block;
  width: 100%;
}

.section--contacts {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.85); /* Sfondo bianco semi-trasparente */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px); /* Effetto vetro satinato */
}

.section--contacts h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contacts-list li {
  margin: 5px 0;
}

.contacts-list strong {
  color: #333;
}

.contacts-list a {
  color: #1976d2;
  font-weight: 500;
  text-decoration: none;
}

.contacts-list a:hover {
  text-decoration: underline;
}

/* --- Pulsante Torna su --- */
.btn-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 12px;
  font-size: 20px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  transition: background 0.3s ease;
}

.btn-top:hover {
  background: #0d47a1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .prices {
    flex-direction: column;
  }

  .hero-photo img {
    max-width: 95%;
  }
}
/* Selettore lingua in alto a destra */
.lang-switch{
  position: fixed; top: 12px; right: 12px; z-index: 9999;
  font-family: inherit;
}
.lang-btn{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.lang-btn:hover{ filter: brightness(0.98); }

.lang-menu{
  position: absolute; right: 0; margin-top: 6px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px; padding: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.lang-menu button{
  display: block; width: 100%; text-align: left;
  background: transparent; border: 0; padding: 8px 10px;
  cursor: pointer; border-radius: 8px; font-weight: 600;
}
.lang-menu button:hover{ background: rgba(0,0,0,.06); }