/* FONT GENERALE + SPAZIO PER MENU FISSO */
body {
  font-family: "Poppins", sans-serif;
  background: #d9ecf2;
  margin: 0;
  padding: 20px;
  padding-top: 150px !important;
  color: #0a2a43;
}

/* CARD PRINCIPALE */
.mare-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  max-width: 900px;
  margin: 0 auto;
}

/* TITOLO PRINCIPALE */
.mare-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  color: #0a2a43;
}

/* DESCRIZIONE */
.mare-desc {
  text-align: center;
  font-size: 1.1rem;
  color: #1b3b57;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* SEZIONI */
.mare-section {
  margin-bottom: 35px;
}

.mare-section h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: #0a2a43;
}

/* PULSANTI PRINCIPALI */
.mare-btn {
  display: block;
  background: #00aaff;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mare-btn:hover {
  background: #0088cc;
  transform: translateY(-3px);
}

/* NOTE PICCOLE */
.note {
  font-size: 0.95rem;
  opacity: 0.7;
}

/* TORNA ALLA HOME */
.back-home {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.back-home:hover {
  text-decoration: underline;
}

/* CARD SPIAGGE */
.spiaggia-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.spiaggia-card img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.spiaggia-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICONA PARCHEGGIO */
.parking-icon {
  font-size: 1.8rem;
  text-decoration: none;
  margin-left: 8px;
  color: #0077cc;
  transition: transform 0.2s ease, color 0.2s ease;
}

.parking-icon:hover {
  transform: scale(1.2);
  color: #005fa3;
}

/* METEO */
.mare-meteo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* MENU FISSO */
.menu-fisso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.menu-link {
  position: absolute;
  left: 20px;
  color: #0077cc !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.menu-link:hover {
  text-decoration: underline;
}

.menu-titolo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a2a43;
  white-space: nowrap;
}

/* SPORT ACQUATICI */
.sport-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.sport-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.sport-card h4 {
  font-size: 1.15rem;
  margin: 12px 0 6px;
  color: #005f99;
}

.sport-card p {
  font-size: 0.95rem;
  padding: 0 12px;
  color: #444;
  margin-bottom: 14px;
}

/* PULSANTI SPORT */
.sport-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0077c8, #00aaff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 18px;
  transition: background 0.2s ease;
}

.sport-btn:hover {
  background: linear-gradient(135deg, #005f99, #0088cc);
}

/* PULSANTE PREMIUM UNIVERSALE */
.btn-premium {
  display: inline-block;
  background: #0078ff;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 0;
  transition: background 0.2s ease;
}

.btn-premium:hover {
  background: #005fa3;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mare-card { 
    padding: 25px 18px; 
  }
  .mare-title { 
    font-size: 1.7rem; 
  }
  .mare-btn { 
    font-size: 1rem; 
    padding: 10px 15px; 
  }
  .spiaggia-card { 
    flex-direction: column; 
    text-align: center; 
  }
  .spiaggia-card img { 
    width: 100%; 
    height: 150px; 
  }
  iframe { 
    width: 100% !important; 
    height: 420px !important; 
  }
}
