/* ============================================================
   shared.css — Stili condivisi tra tutte le pagine RasenCard
   Includi con: <link rel="stylesheet" href="shared.css">
   ============================================================ */

/* Pulsante Accedi nella navbar — stile condiviso tra tutte le pagine */
.nav-accedi {
  background: linear-gradient(90deg, #00ffd5, #00b3ff);
  padding: 6px 14px;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-accedi:hover { opacity: 0.85; }

.footer {
  background: #000;
  padding: 30px;
  text-align: center;
  color: white;
  margin-top: 40px;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 16px;
  opacity: 0.8;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-copy {
  opacity: 0.7;
  font-size: 13px;
  margin-top: 10px;
}
