/* ============================= */
/* FONT E COLORI BASE             */
/* ============================= */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #eee;
  background: linear-gradient(160deg, #121212, #1b1b1b 70%);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================= */
/* HEADER / HERO                  */
/* ============================= */
header.hero {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #f5a623;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

header p {
  font-size: 1rem;
  color: #ddd;
  margin: 1rem 0 2rem;
}

header .cta {
  display: inline-block;
  background: #f5a623;
  color: #121212;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

header .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245,166,35,0.4);
}

/* ============================= */
/* ACADEMY NAVBAR PREMIUM        */
/* ============================= */

.academy-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Scroll effect */
.academy-nav.scrolled {
  background: rgba(10,10,10,0.85);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Brand */
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5a623;
  cursor: pointer;
  letter-spacing: 1px;
}

/* Right container */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language group */
.lang-group {
  display: flex;
  gap: 0.5rem;
}

/* Buttons */
.nav-btn {
  background: transparent;
  border: 1px solid rgba(245,166,35,0.5);
  color: #f5a623;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

/* Hover animation */
.nav-btn:hover {
  background: #f5a623;
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}

/* Flags */
.nav-btn img.flag {
  width: 18px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .academy-nav {
    padding: 0.8rem 1rem;
  }

  .nav-brand {
    font-size: 1.1rem;
  }

  .nav-btn {
    padding: 0.35rem 0.6rem;
  }
}

/* ============================= */
/* SEZIONI                        */
/* ============================= */
section {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

section.highlight {
  background: rgba(245,166,35,0.05);
  border-left: 6px solid #f5a623;
  padding: 2rem 1rem;
  border-radius: 8px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border-left: 4px solid #f5a623;
  padding-left: 0.8rem;
  letter-spacing: 0.02em;
}

section p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

section ul {
  list-style: none;
  padding-left: 0;
}

/* Icona musica */
li.musica::before {
  content: "🎶";
  margin-right: 0.5rem;
  color: #f5a623;
}

/* Basso per alcune voci */
li.basso::before {
  content: "🎸";
  margin-right: 0.5rem;
  color: #f5a623;
}

/* Studente per altre voci */
li.studente::before {
  content: "👨‍🎓";
  margin-right: 0.5rem;
  color: #f5a623;
}

/* Icona microfono */
li.microfono::before {
  content: "🎤";
  margin-right: 0.5rem;
  color: #f5a623;
}

/* Piano */
li.piano::before {
  content: "🎹";
  margin-right: 0.5rem;
  color: #f5a623;
}

section ul li {
  margin-bottom: 0.8rem;
}

/* ============================= */
/* EXPERIENCE / SERVICES / HIGHLIGHT CON IMG */
/* ============================= */
.experience, .services, .highlight-with-img {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.experience img, .services img, .studies img, .influences img, .highlight-with-img img {
  width: 40%;
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.experience img:hover, .services img:hover, .studies img:hover, .influences img:hover, .highlight-with-img img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.experience .text, .services .text, .studies .text, .influences .text, .highlight-with-img .text {
  flex: 1;
}

/* ============================= */
/* CTA SEZIONE CONTATTI           */
/* ============================= */
#contacto {
  text-align: center;
}

#contacto .cta {
  display: inline-block;
  background: #f5a623;
  color: #121212;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  margin-top: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#contacto .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245,166,35,0.4);
}

/* ============================= */
/* FOOTER                         */
/* ============================= */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* ============================= */
/* GALLERY                        */
/* ============================= */
.gallery {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  border-left: 4px solid #f5a623;
  padding-left: 0.8rem;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* ============================= */
/* RESPONSIVE                     */
/* ============================= */
@media (max-width: 768px) {
  .experience, .services, .highlight.studies, .influences, .highlight-with-img {
    flex-direction: column;
  }

  .experience img, .services img, .highlight.studies img, .influences img, .highlight-with-img img {
    width: 100%;
  }

  header h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  section h2 {
    font-size: 1.6rem;
  }
  
  .header-nav {
    flex-direction: column;
    gap: 0.4rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* ============================= */
/* WHATSAPP FLOAT GOLD BUTTON    */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5c15a, #d89c1d);
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 6px 18px rgba(0,0,0,0.4),
    0 0 12px rgba(245,166,35,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Hover premium */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.5),
    0 0 20px rgba(245,166,35,0.8);
}

/* Mobile leggermente più piccolo */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

/* ============================= */
/* WHATSAPP LUXURY BAR           */
/* ============================= */

.whatsapp-bar {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: linear-gradient(145deg, #f8d27a, #d89c1d);
  color: #121212;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    0 0 12px rgba(245,166,35,0.4);
  transition: all 0.35s ease;
  z-index: 999;
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
}

/* Entrance animation */
@keyframes fadeSlide {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Icon circle */
.wa-icon {
  background: rgba(0,0,0,0.15);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover premium */
.whatsapp-bar:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.45),
    0 0 20px rgba(245,166,35,0.7);
}

/* Subtle breathing glow */
.whatsapp-bar {
  animation: fadeSlide 1s ease forwards, luxuryGlow 4s ease-in-out infinite;
}

@keyframes luxuryGlow {
  0%,100% {
    box-shadow:
      0 8px 20px rgba(0,0,0,0.35),
      0 0 12px rgba(245,166,35,0.4);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(0,0,0,0.45),
      0 0 18px rgba(245,166,35,0.6);
  }
}

/* Mobile refinement */
@media (max-width: 768px) {
  .whatsapp-bar {
    bottom: 20px;
    right: 20px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* ============================= */
/* WHATSAPP FREE TRIAL ELITE     */
/* ============================= */

.whatsapp-trial {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 60px;
  background: linear-gradient(145deg, #f8d27a, #d89c1d);
  color: #121212;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    0 0 14px rgba(245,166,35,0.45);
  transition: all 0.35s ease;
  z-index: 999;
  animation: trialEntrance 1s ease forwards, luxuryPulse 5s ease-in-out infinite;
  opacity: 0;
}

/* Entrance animation */
@keyframes trialEntrance {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Subtle pulse */
@keyframes luxuryPulse {
  0%,100% {
    box-shadow:
      0 10px 25px rgba(0,0,0,0.35),
      0 0 14px rgba(245,166,35,0.45);
  }
  50% {
    box-shadow:
      0 12px 32px rgba(0,0,0,0.45),
      0 0 22px rgba(245,166,35,0.7);
  }
}

/* Icon circle */
.whatsapp-trial .wa-icon {
  background: rgba(0,0,0,0.18);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover luxury */
.whatsapp-trial:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow:
    0 14px 35px rgba(0,0,0,0.5),
    0 0 25px rgba(245,166,35,0.85);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .whatsapp-trial {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ============================= */
/* LOGO SVG ANIMATO SUBTLE       */
/* ============================= */
.logo-svg {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5a623;
  position: relative;
  cursor: pointer;
}

.logo-svg .notes-svg text {
  animation: float-notes 3s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Animazione note con leggero movimento verticale e rotazione */
@keyframes float-notes {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(-4px) rotate(-10deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-6px) rotate(10deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-3px) rotate(-5deg);
    opacity: 0.9;
  }
}

/* Hover effect sul logo */
.logo-svg:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(245,166,35,0.6);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo-svg:hover .notes-svg text {
  animation: float-notes-hover 2s ease-in-out infinite;
}

@keyframes float-notes-hover {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  25% { transform: translateY(-6px) rotate(-15deg); opacity: 0.9; }
  50% { transform: translateY(-10px) rotate(15deg); opacity: 0.8; }
  75% { transform: translateY(-5px) rotate(-8deg); opacity: 0.9; }
}

.justified-text {
  text-align: justify;
}

/* ============================= */
/* Icone FAQ per Domande e Risposte */
/* ============================= */
.faq-question::before {
  content: "❓";  /* Icona di domanda */
  margin-right: 8px;
  color: #f5a623;  /* Colore dorato per l'icona */
}

.faq-answer::before {
  content: "✔️";  /* Icona di check per la risposta */
  margin-right: 8px;
  color: #f5a623;  /* Colore dorato per l'icona */
}

.faq-text {
  text-align: justify;
}












