   :root {
      --black: #0c0d10;
      --dark: #14161c;
      --light: #f4f4f4;
      --gold: #c9a24d;
      --gray: #9da1a8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--light); line-height: 1.6; }
    a { color: inherit; text-decoration: none; }

    /* ---------- HERO ---------- */
    .hero {
      min-height:90vh;
      background: linear-gradient(to right, rgba(12,13,16,.85), rgba(12,13,16,.4)), url("img/hero-bg.jpg") center/cover no-repeat;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      padding: 6rem;
      align-items: center;
    }

    .hero-logo {
  font-size: 3.2rem;
  letter-spacing: .15em;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-logo .stars {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}


    .hero-sub { font-size: .85rem; letter-spacing: .3em; margin: 1rem 0 2rem; color: var(--gray); }
    .hero h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 500; margin-bottom: 1.5rem; }
    .hero p { max-width: 520px; color: var(--gray); margin-bottom: 2.5rem; }
    .hero-buttons { display: flex; gap: 1rem; }
    .btn { padding: .9rem 1.8rem; border-radius: 40px; font-size: .85rem; transition: .3s; cursor: pointer; }
    .btn-gold { background: var(--gold); color: #000; }
    .btn-outline { border: 1px solid var(--gray); color: var(--light); }
    .hero-person img { max-width: 420px; margin-left: auto; display: block; border-radius:  30px; }


    @media(max-width:900px){
  .hero {
    min-height: auto;
    padding-top: 6rem;
  }
}


  /* ---------- INTRO ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(to top, rgba(12,13,16,.85), rgba(12,13,16,.85)), url("img/section-bg.jpg") center/cover no-repeat;
  padding: 5rem 6rem;
}

.intro-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.intro-text p { max-width: 600px; color: var(--gray); }
.intro-text .highlight { font-weight: 600; color: var(--gold); margin-top: 1rem; display: block; }
.intro-text .signature { margin-top: 1.5rem; font-style: italic; color: var(--light); }

.intro-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media(max-width:900px) {
  .intro { 
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem;
  }
  .intro-image { margin-top: 2rem; }
  .intro-image img { margin: 0 auto; }
}

    /* ---------- ARTISTS ---------- */
    .artists { padding: 6rem; }
    .artists h2 { text-align: center; margin-bottom: .5rem; }
    .artists p { text-align: center; color: var(--gray); margin-bottom: 3rem; }
    .artist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
    .artist-card { background: #14161c; border-radius: 18px; overflow: hidden; opacity:0; transform:translateY(40px); transition:all .9s ease; }
    .artist-card.active { opacity:1; transform:translateY(0); }
.artist-card img {
    width: 100%;
    height: 250px;   /* altezza uniforme */
    object-fit: contain;  /* l’immagine intera viene mostrata */
    background: #14161c;  /* colore di sfondo se non riempie tutto */
    display: block;
}


    .artist-card div { padding: 1.2rem; }
    .artist-card span { color: var(--gray); font-size: .8rem; }

    /* ---------- PARTNERS ---------- */
    .partners { background: var(--dark); padding: 4rem 6rem; text-align: center; }
    .partners h3 { margin-bottom: 2rem; }
    .partners-logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: .7; }

  /* ---------- CTA ---------- */
.cta { 
  padding: 5rem 2rem; 
  text-align: center; 
  background: radial-gradient(circle, #1b1f28 0%, #0c0d10 70%); 
}

.cta h2 { 
  margin-bottom: 1rem; /* ridotto leggermente per dare più spazio al testo */
  font-size: 2.2rem; 
}

.cta p { 
  margin-bottom: 2rem; /* spazio sufficiente tra testo e bottone */
  font-size: 1.1rem;
  color: var(--gray);
}

.cta .btn { 
  display: inline-block; 
  margin-top: 1rem; /* aggiunto per separare sempre dal testo */
}


/* ---------- FOOTER ---------- */

.site-footer {
  background: linear-gradient(
    to top,
    #08090c,
    #0c0d10
  );
  padding: 4rem 6rem 2rem;
  color: var(--gray);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  letter-spacing: .2em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-nav a {
  color: var(--light);
  font-size: .9rem;
  width: fit-content;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
}

.footer-tagline {
  letter-spacing: .2em;
  color: var(--gray);
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
  .site-footer {
    padding: 3rem 2rem 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .6rem;
    text-align: center;
  }
}


    /* ---------- REVEAL ANIMATIONS ---------- */
    .reveal { opacity:0; transform:translateY(40px); transition: all .9s ease; }
    .reveal.active { opacity:1; transform:translateY(0); }




/* ---------- WELCOME SECTION ---------- */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 6rem;
  background: linear-gradient(to top, rgba(12,13,16,.85), rgba(12,13,16,.85)), url("intro.png") center/cover no-repeat;
  position: relative;
}

.welcome-text h2 { 
  font-size: 2.2rem; 
  margin-bottom: 1rem; 
  color: var(--light);
}

.welcome-text p { 
  max-width: 600px; 
  color: var(--gray); 
  line-height: 1.6; 
}

.welcome-text .highlight { 
  font-weight: 600; 
  color: var(--gold); 
  margin-top: 1rem; 
  display: block; 
}

/* ---------- IMAGE WITH WHITE FADE ---------- */
.welcome-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.welcome-image-wrapper .welcome-image-overlay {
  position: absolute;
  left: -40px; /* estende la sfumatura verso il testo */
  top: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(to left, rgba(255,255,255,.6), transparent);
  z-index: 1;
  border-radius: 12px;
}

.welcome-image-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ---------- MOBILE ---------- */
@media(max-width:900px){
  .welcome { grid-template-columns: 1fr; text-align: center; padding: 3rem; }
  .welcome-image-wrapper { margin-top: 2rem; justify-content: center; }
  .welcome-image-wrapper .welcome-image-overlay { display: none; }
  .welcome-image-wrapper img { margin: 0 auto; }
}

.welcome-text {
  text-align: center; /* centra tutti gli elementi al suo interno */
  margin: 0 auto;     /* opzionale, per sicurezza */
}



/* -------- partners -------*/ 

.partners {
  background: var(--dark);
  padding: 4rem 6rem;
  text-align: center;
}

.partners h3 { 
  margin-bottom: 3rem;
  color: var(--light);
  font-size: 1.8rem;
}

/* ---------- GRID LOGHI ---------- */
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
    max-width: 1000px;
  margin: auto;
}

/* ---------- CARD QUADRATA ---------- */
.partner-card {
  background: #fff;          /* sfondo bianco */
  padding: 1rem;             /* spazio attorno al logo */
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;       /* angoli arrotondati */
  box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* elegante e glamour */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ---------- HOVER GLAMOUR ---------- */
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .partner-card {
    width: 150px;
    height: 150px;
    padding: 0.5rem;
  }
  .partner-card img {
    max-width: 75%;
    max-height: 75%;
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(12,13,16,0.6);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 1rem 6rem;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .stars { font-size: 1rem; color: var(--gold); }

.nav-links a {
  color: var(--light);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }

/* ---------- BURGER MENU ---------- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ---------- SCROLL EFFECT ---------- */
.navbar.scrolled {
  background: rgba(12,13,16,0.8);
  padding: 0.6rem 6rem;
}

@media(max-width: 900px) {


  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;

    background: rgba(12,13,16,0.97);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    padding-top: 5rem; /* spazio per la navbar */
    overflow-y: auto;

    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 998;
  }

  .nav-links.active {
    transform: translateX(0);
  }
  
  .burger {
    display: flex;
    z-index: 999;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


.hero-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--light);
}

.hero-logo .stars {
  display: block;
  margin-top: .4rem;
  letter-spacing: .4em;
  color: var(--gold);
  opacity: .4;
  transition: opacity .4s ease, transform .4s ease;
}

.hero-logo:hover .stars {
  opacity: 1;
  transform: translateY(-3px);
}


@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem 3rem;
    text-align: center;
  }

  .hero-person {
    display: none; /* scelta premium: focus sul messaggio */
  }

  .hero-buttons {
    flex-direction: column;
    gap: .8rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}





  /* ---------- SUBNAV SECTION ---------- */

.subnav {
  background: linear-gradient(
    to bottom,
    rgba(12,13,16,.85),
    rgba(12,13,16,.95)
  );
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.subnav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1.8rem 6rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.subnav-label {
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--gray);
  text-transform: uppercase;
  white-space: nowrap;
}

.subnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.subnav-links a {
  font-size: .9rem;
  color: var(--light);
  position: relative;
}

.subnav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.subnav-links a:hover::after {
  width: 100%;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
  .subnav-container {
    padding: 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .subnav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {
  .subnav-links a {
    padding: .4rem 0;
    font-size: .95rem;
  }
}



