body {
  font-family: 'Poppins', sans-serif;
  background:#0F0F0F;
  color:#FAFAFA;
}

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

h1,h2,h3 {
  font-family: 'Bangers', cursive;
  color:#FFC928;
}

/* NAVBAR */

/* NAVBAR BASE */
.nav-vls {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

/* link leggibili su hero */
.nav-vls a {
    color: #FAFAFA;
    transition: color 0.5s ease;
}

/* LOGO nascosto inizialmente */
.nav-vls .nav-logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-10px);
}

/* quando scrolli */
body.scrolled .nav-vls {
    background: rgba(255, 201, 40, 1.00); /* arancione semi-trasparente */
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

body.scrolled .nav-vls a {
    color: #0F0F0F; /* link scuri per contrasto */

}

/* logo visibile con effetto */
body.scrolled .nav-vls .nav-logo {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


.nav-vls.nav-scrolled {
    background: rgba(15,15,15,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* logo visibile quando scrolli */
.nav-vls.nav-scrolled .nav-logo {
    opacity: 1;
    pointer-events: auto;
}

.btn-vls {
  background:#FFC928;
  color:#0F0F0F;
  font-weight:800;
}

.btn-vls:hover {
    background-color: #FF8C1A;
}

.section-dark { background:#0F0F0F; }
.section-live { background:#1C1C1C; }
.section-press { background:#FF8C1A; color:#0F0F0F; }

.footer-vls {
    background: #0F0F0F;
    padding: 60px 0 30px;
    color: #FAFAFA;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-vls h5 {
    font-family: 'Bangers', cursive;
    color: #FFC928;
}

.footer-vls a {
    color: #FAFAFA;
}

.footer-vls a:hover {
    color: #FFC928;
}

.footer-social a img {
    width: 26px;
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}


.hero-video {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-mobile {
    display: none;
}

@media (max-width: 600px) {
    .video-desktop {
        display: none;
    }
    .video-mobile {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 20px;
}

.section-media {
    background: #8FE3E0;
    color: #0F0F0F;
}

.section-media h2 {
    color: #0F0F0F;
}

/* Band: grigio medio, come stacco */
.section-band {
    background: #2B2B2B; /* grigio scuro ma diverso dal nero del concept */
    color: #FAFAFA;
}


/* Pulsante CTA navbar */
.btn-navbar-cta {
    font-weight: 800;
    text-transform: uppercase;
    height: 36px;
    line-height: 36px;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Materialize mantiene ripple */
.btn-navbar-cta:hover {
    background-color: #FF8C1A;
    color: #0F0F0F;
}

/* Sullo hero, il pulsante deve essere bianco per contrasto */
body:not(.scrolled) .nav-vls .btn-navbar-cta { 
	background-color: #FFC928;
    color: #0F0F0F;
}

/* Quando scrolli, torna arancione */
body.scrolled .nav-vls .btn-navbar-cta {
    background-color: #FAFAFA;
    color: #0F0F0F;
}

/* Allinea verticalmente i pulsanti CTA nella navbar */
.nav-vls .btn-navbar-cta {
    height: 36px;          /* altezza bottone */
    line-height: 36px;     /* linea centrata */
}

/* Mobile: bottone Contatti centrato con margine laterale */
.sidenav .btn-navbar-cta {
    display: block;           /* mantiene block per centratura verticale */
    width: auto;              /* larghezza automatica in base al testo */
    margin: 10px auto;        /* centri e aggiungi spazio sopra/sotto */
    padding: 0 20px;          /* spazio a sinistra e destra */
    text-align: center;       /* centra il testo nel bottone */
}

@media (max-width: 992px) {
    .nav-vls .nav-wrapper {
        display: flex;
        align-items: center;       /* centra verticalmente tutto */
        justify-content: center;   /* centro orizzontale del logo */
        position: relative;        /* per posizionare l’hamburger */
        height: 64px;
    }

    /* Logo centrato */
    .nav-vls .brand-logo {
        position: relative;        /* rimuove absolute che dava problemi */
        left: auto;
        top: 35px;
        transform: none;
    }

    /* Hamburger a sinistra */
    .nav-vls .sidenav-trigger {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.band-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.band-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.5);
}

/* Immagine in bianco e nero */
.band-card .card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Al passaggio del mouse, colore e zoom leggero */
.band-card:hover .card-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Contenuto testo centrato */
.band-card .card-content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1C1C1C; /* sfondo sotto l’immagine */
}

.scrollspy {
    scroll-margin-top: 64px;
}


.section-live {
    background-color: #111;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-today .collapsible-header {
    border-left: 5px solid #ff1744;
    background-color: #1c1c1c;
}

.badge {
    margin-left: 10px;
}

.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}


/* Sezione contatti dark */
#contatti input,
#contatti textarea {
  color: #ffb300; /* arancio/giallo */
}

/* Colore label */
#contatti .input-field label {
  color: #ffcc80;
}

/* Label attiva */
#contatti .input-field input:focus + label,
#contatti .input-field textarea:focus + label {
  color: #ffb300 !important;
}

/* Sottolineatura input */
#contatti .input-field input:focus,
#contatti .input-field textarea:focus {
  border-bottom: 1px solid #ffb300 !important;
  box-shadow: 0 1px 0 0 #ffb300 !important;
}

/* Colore placeholder */
#contatti input::placeholder,
#contatti textarea::placeholder {
  color: rgba(255, 179, 0, 0.6);
}



/* LIVE - nuova sezione in evidenza */
.section-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FF8C1A;
    margin-bottom: 6px;
}

.live-heading h2,
.section-tech h2 {
    margin-top: 0;
}

.live-heading p,
.band-intro,
.section-tech .flow-text {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.live-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.live-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 320px;
    background: #191919;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.live-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 420px) 1fr;
    min-height: 460px;
    border-color: rgba(255,201,40,0.45);
}

.live-poster-wrap {
    position: relative;
    background: #000;
    min-height: 100%;
}

.live-poster {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.live-card-featured .live-poster {
    min-height: 460px;
}

.live-date-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    min-width: 68px;
    background: #FFC928;
    color: #0F0F0F;
    border-radius: 14px;
    text-align: center;
    padding: 8px 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.live-date-badge span {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    line-height: 1;
}

.live-date-badge small {
    display: block;
    font-weight: 800;
}

.live-card-content {
    padding: 28px;
}

.live-card-content h3 {
    margin: 8px 0 18px;
    color: #FFC928;
}

.live-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #FAFAFA;
}

.live-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.live-badge {
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
}

.live-tech-note {
    background: rgba(255,201,40,0.08);
    border-left: 4px solid #FFC928;
    padding: 12px 14px;
    border-radius: 8px;
}

.live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.no-live-box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 18px;
    background: #191919;
    border: 1px solid rgba(255,255,255,0.08);
}

/* BAND - schede navigabili */
.band-filter {
    margin: 26px 0 36px;
}

.band-filter-btn {
    color: #FAFAFA;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    margin: 4px;
    font-weight: 800;
}

.band-filter-btn.active,
.band-filter-btn:hover {
    background: #FFC928;
    color: #0F0F0F;
}

.band-grid {
    display: flex;
    flex-wrap: wrap;
}

.band-item {
    margin-bottom: 26px;
}

.band-card {
    background: #1C1C1C;
    color: #FAFAFA;
}

.band-card-title {
    font-family: 'Bangers', cursive;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

.band-card .card-content {
    align-items: flex-start;
    text-align: left;
}

.band-role-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0F0F0F;
    background: #FFC928;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.band-card .card-action {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #151515;
}

.band-card .card-action a {
    color: #FFC928 !important;
    font-weight: 800;
}

.band-modal {
    background: #151515;
    color: #FAFAFA;
    border-radius: 18px;
    max-height: 88%;
}

.band-modal h3,
.band-modal h5,
.band-modal h6 {
    color: #FFC928;
}

.band-modal .modal-footer {
    background: #0F0F0F;
}

.band-modal .modal-footer a {
    color: #FFC928;
}

.band-modal-main,
.band-modal-gallery img {
    border-radius: 14px;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.band-modal-gallery img {
    aspect-ratio: 1 / 1;
    margin-top: 8px;
}

/* INFO TECNICHE */
.section-tech {
    background: #FFC928;
    color: #0F0F0F;
}

.section-tech h2,
.section-tech .section-kicker {
    color: #0F0F0F;
}

.tech-grid {
    margin-top: 36px;
}

.tech-card,
.tech-rider-box {
    background: rgba(15,15,15,0.92);
    color: #FAFAFA;
    border-radius: 18px;
    padding: 24px;
    min-height: 260px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.tech-card i {
    font-size: 42px;
    color: #FFC928;
}

.tech-card h5,
.tech-rider-box h5 {
    color: #FFC928;
    font-weight: 800;
}

.tech-rider-box {
    margin-top: 20px;
    min-height: auto;
}

@media (max-width: 992px) {
    .live-feature-grid { grid-template-columns: 1fr; }
    .live-card,
    .live-card-featured { grid-template-columns: 1fr; }
    .live-poster,
    .live-card-featured .live-poster { height: auto; min-height: auto; aspect-ratio: 4 / 5; }
}

@media (max-width: 600px) {
    .live-card-content { padding: 22px; }
    .live-actions .btn { width: 100%; }
    .band-card .card-image img { height: 320px; }
}
