body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #111;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Navbar base */
.navbar {
  background-color: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link,
.nav-icon {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-icon:hover {
  color: #00bcd4;
}

.nav-link.active {
  border-bottom: 2px solid #00bcd4;
}

/* Mobile */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .nav-links.open {
    display: flex;
  }
}

header.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: #1a1a1a;
}

.logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about, .instagram, .contact, .partners, .gallery {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.instagram {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #111; /* sfondo scuro */
  color: #f0f0f0;
}

.instagram h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00bcd4; /* azzurro coerente */
}

.instagram .elfsight-app-41ecf671-9546-44ba-8d06-bdd3abe5db96 {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

a {
  color: #00bcd4;
  text-decoration: none;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.grid-item {
  width: 220px;
  text-align: center;
}

.grid-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.05);
}

.grid-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 1.5rem;
}

.filter-buttons button {
  background-color: #eee;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: #007bff;
  color: #fff;
}

.contact-info,
.contact-channels,
.contact-hours {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.contact-list {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.contact-list li a {
  color: #00bcd4;
  text-decoration: none;
}

.contact-list li a:hover {
  text-decoration: underline;
}


.ig-embed {
  width: 100%;
  height: 400px;
  border: none;
}

ul.socials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

ul.socials li {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.socials li a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1rem;
}

ul.socials li a:hover {
  color: #00bcd4;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* === MEDIA KIT === */

.mediakit {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #f0f0f0;
}

.mediakit header {
  text-align: center;
  margin-bottom: 2rem;
}

.mediakit h1 {
  font-size: 2.5rem;
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.mediakit p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.mediakit section {
  margin-bottom: 2.5rem;
}

.mediakit h2 {
  font-size: 1.6rem;
  color: #00bcd4;
  margin-bottom: 1rem;
}

.mediakit ul {
  list-style: none;
  padding-left: 0;
}

.mediakit ul li {
  margin: 0.5rem 0;
  font-size: 1.05rem;
}

.mediakit a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mediakit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.mediakit section {
  padding-left: 0;
  padding-right: 0;
}

.mediakit section {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mediakit .content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem; /* sicurezza mobile */
}

a i.fas {
  margin-right: 0.4rem;
}

.mediakit ul,
.mediakit p {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.mediakit ul {
  list-style: none;
  padding-left: 0;
}


@media (max-width: 600px) {
  .mediakit {
    padding: 1.2rem;
  }

  .mediakit h1 {
    font-size: 2rem;
  }

  .mediakit h2 {
    font-size: 1.3rem;
  }

  .mediakit p, .mediakit ul li {
    font-size: 1rem;
  }
}

/* Transizione fade in/out */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.fade-out {
  opacity: 1;
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.spotters-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  color: #f0f0f0;
  text-align: center;
}

.spotters-page header {
  margin-bottom: 2rem;
}

.spotters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.spotter-card {
  background-color: #121212;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
  text-align: center;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.spotter-card:hover {
  transform: translateY(-5px);
}

.spotter-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.spotter-card h3 {
  margin: 0.5rem 0 0.2rem;
  color: #00bcd4;
}

.spotter-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.ig-link {
  display: inline-block;
  color: #f0f0f0;
  background-color: #e1306c;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.ig-link:hover {
  background-color: #c72c61;
}

.cta-spotter {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: #111;
  border-radius: 1rem;
  color: #f0f0f0;
}

.cta-spotter h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00bcd4;
}

.cta-spotter p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1ebc5a;
}

.btn-scopri {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #00bcd4;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-scopri:hover {
  background-color: #0097a7;
}

.gallery-search {
  text-align: center;
  margin: 1.5rem 0;
}

.gallery-search input {
  width: 100%;
  max-width: 400px;
  padding: 0.7rem 1rem;
  border: 1px solid #444;
  border-radius: 32px;
  background: #111;
  color: #f0f0f0;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.gallery-search input:focus {
  border-color: #00bcd4;
}

/* Pagina singolo mezzo */
.scheda-mezzo {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.scheda-mezzo h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.scheda-mezzo img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.5rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.dettagli-mezzo {
  background-color: #282829;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.dettagli-mezzo h2 {
  margin-bottom: 0.8rem;
}

.dettagli-mezzo ul {
  list-style: none;
  padding: 0;
}

.dettagli-mezzo li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #ddd;
}

.dettagli-mezzo li:last-child {
  border-bottom: none;
}

/* Bottone indietro */
.btn-indietro {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #00bcd4;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-indietro:hover {
  background-color: #0097a7;
}

/* === COME DIVENTARE SPOTTER === */
.mediakit .cta-button {
  display: inline-block;
  background-color: #00bcd4;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 32px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mediakit .cta-button:hover {
  background-color: #008ba3;
}

.mediakit section {
  margin-bottom: 2.5rem;
}

.mediakit h1, 
.mediakit h2 {
  color: #00bcd4;
}

/* Responsive */
@media (max-width: 600px) {
  .mediakit {
    padding: 1.2rem;
  }

  .mediakit h1 {
    font-size: 2rem;
  }

  .mediakit h2 {
    font-size: 1.3rem;
  }

  .mediakit p, 
  .mediakit ul li {
    font-size: 1rem;
  }
}

/* === PAGINA 404 === */
.container-404 {
  max-width: 600px;
  padding: 20px;
}
.h1-404 {
  font-size: 5rem;
  margin: 0;
  color: #b30000;
}
.h2-404 {
  margin: 10px 0;
  font-size: 1.5rem;
}
.p404 {
  margin: 20px 0;
  font-size: 1rem;
}
.a404 {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background-color: #b30000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}
.a404:hover {
  background-color: #800000;
}
.logo-404 {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Stile Sezione Novità WhatsApp */
.novita-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.novita-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.novita-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #007c3f;
  text-transform: capitalize;
}

.novita-section p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.novita-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.novita-section ul li {
  margin: 10px 0;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.novita-section ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.qr-code {
  margin-top: 20px;
  width: 150px;
  height: 150px;
}

/* Responsive */
@media (max-width: 600px) {
  .novita-section h2 {
    font-size: 22px;
  }

  .novita-section p,
  .novita-section ul li {
    font-size: 14px;
  }
}