body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
}

header {
  background-color: #111;
  padding: 20px 40px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav a {
  text-decoration: none;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
}
.scuola-call {
  background-color: #000;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #222;
}

.scuola-call h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.scuola-call p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.btn {
  background-color: #d4af37;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .logo {
    margin: 0 auto;
  }

  header {
    flex-direction: column;
    align-items: center;
  }
}
.scuola-programma {
  padding: 60px 20px;
  background-color: #000;
  text-align: center;
}

.scuola-programma h2 {
  color: #d4af37;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.scuola-programma li {
  background-color: #111;
  margin: 10px auto;
  padding: 15px 25px;
  border-left: 4px solid #d4af37;
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  max-width: 600px;
  border-radius: 8px;
}

.cta-final {
  background-color: #111;
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid #222;
}

.cta-final p {
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Animazione Hero */
.animated {
  animation: fadeInUp 1s ease-in-out;
}
/* Sezione "Chi è" */
.chi-e {
  padding: 80px 20px;
  text-align: center;
}

.chi-e h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.chi-e p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ccc;
}

/* Sezione Card */
.perche {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
}

.perche h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #222;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  color: #ccc;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #d4af3755;
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

/* Pulsante WhatsApp fisso */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 10px #25d36699;
  transition: background 0.3s ease;
  z-index: 999;
}

.whatsapp-button:hover {
  background-color: #1ebd5d;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
.bio {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: #ccc;
  line-height: 1.8;
  background-color: #000;
}

.bio h1 {
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bio p {
  font-size: 1.15rem;
  margin-bottom: 25px;
}

.bio strong {
  color: #d4af37;
  font-weight: 700;
}

.bio em {
  color: #fff;
  font-style: italic;
  display: block;
  margin-top: 40px;
  font-size: 1.2rem;
}
.contact-form-section {
  padding: 80px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ccc;
}

.contact-form-section h1 {
  font-size: 2.4rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-form-section p {
  margin-bottom: 40px;
  font-size: 1.15rem;
}

.contact-form label {
  display: block;
  text-align: left;
  color: #ccc;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  background-color: #111;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #d4af37;
}

.contact-form .btn {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 10px;
  }
}
.contact-form label::after {
  content: " *";
  color: red;
  font-weight: bold;
}
.contact-form-section em {
  color: #aaa;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 20px;
}

.privacy-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: #ccc;
  line-height: 1.8;
  background-color: #000;
}

.privacy-section h1 {
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: #d4af37;
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}
.thankyou {
  padding: 100px 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

.thankyou h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.thankyou p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.thankyou a.btn {
  background-color: #d4af37;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-top: 30px;
}

.thankyou a.btn:hover {
  background-color: #fff;
  color: #000;
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  border-top: 2px solid #f2a900;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  color: #f2a900;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a,
.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #f2a900;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.footer-brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #f2a900;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}
.social-section {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.social-title {
  font-size: 2rem;
  color: #f2a900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.social-text p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.social-text strong {
  color: #f2a900;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  animation: fadeInUp 1.5s ease;
}

.social-icon {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  background-color: #000;
  padding: 5px;
  box-shadow: 0 0 0 transparent;
}

.social-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px #f2a900aa;
  background-color: #1a1a1a;
}
.mappa-e-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  max-width: 1100px;
}

.box-mappa iframe {
  width: 400px;
  height: 400px;
  border: 3px solid #F2A900;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(242, 169, 0, 0.3);
}

.box-info-mappa {
  max-width: 400px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .mappa-e-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box-mappa iframe,
  .box-info-mappa {
    width: 90%;
    max-width: 90%;
  }

  .box-info-mappa {
    font-size: 1rem;
  }
}
.btn-mappa {
  display: inline-block;
  background-color: #F2A900;
  color: black;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-mappa:hover {
  background-color: #d99800;
}
.programma-lista {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 600px;
}

.programma-lista li {
  background-color: #111;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #F2A900;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.check-icon {
  color: #F2A900;
  font-weight: bold;
  margin-right: 12px;
}

.form-iscrizione {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
  margin-top: 60px;
  border-top: 1px solid #F2A900;
}

.form-iscrizione h3 {
  color: #F2A900;
  font-size: 24px;
  margin-bottom: 10px;
}

.form-iscrizione p {
  margin-bottom: 30px;
  font-size: 16px;
}

.form-scuola {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-scuola input,
.form-scuola textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  background-color: #222;
  color: #fff;
}

.form-scuola input::placeholder,
.form-scuola textarea::placeholder {
  color: #aaa;
}

.form-scuola .btn {
  background-color: #F2A900;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-scuola .btn:hover {
  background-color: #d89c00;
}

.privacy-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  flex-wrap: wrap;
  text-align: center;
  margin: 20px auto 30px;
  max-width: 700px;
}

.privacy-label input[type="checkbox"] {
  transform: scale(1.3);
  margin-top: 3px;
  accent-color: #F2A900;
}

.privacy-label a {
  color: #F2A900;
  text-decoration: underline;
}

.privacy-label a:hover {
  color: #fff;
}

.scuola-intro {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
}

.scuola-intro h2 {
  color: #F2A900;
  font-size: 2rem;
  margin-bottom: 20px;
}
/* Hero per pagina Scuola */
.hero-scuola {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  padding: 100px 20px 80px;
  text-align: center;
  color: white;
}

.hero-scuola .hero-title {
  color: #F2A900;
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-scuola .hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 1.5s ease-out;
}

/* Animazioni */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-home {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  padding: 100px 20px 80px;
  text-align: center;
  color: white;
}

.hero-home .hero-title {
  color: #F2A900;
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-home .hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 1.5s ease-out;
}
.foto-scuola {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
  background-color: #111;
}

.foto-container {
  text-align: center;
  border: 3px solid #FFD700;
  border-radius: 20px;
  padding: 20px;
  background-color: #000;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.immagine-elegante {
  width: 100%;
  border-radius: 15px;
  pointer-events: none;
  user-select: none;
}

.didaskalia {
  margin-top: 15px;
  font-style: italic;
  font-size: 1.1em;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
@media (max-width: 600px) {
  .foto-container {
    padding: 15px;
  }

  .didaskalia {
    font-size: 1em;
  }
}
