/* RESET BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; font-family: 'Inter', sans-serif; color: #fff; background: #000; overflow-x: hidden; }

/* HERO SECTION */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100dvh;
  background: url("hardrockpalco.jpg") center top / cover no-repeat fixed;
}

/* OVERLAY HEADER */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.site-title { font-size: clamp(1.5rem,4vw,2.5rem); text-transform: uppercase; letter-spacing: 2px; }

/* SOCIAL LINKS HEADER */
.social-links { display: flex; align-items: center; gap: 15px; }
.social-links a { width: 28px; height: 28px; opacity: 0.9; transition: transform 0.2s ease, opacity 0.2s ease; }
.social-links a:hover { transform: scale(1.1); opacity: 1; }
.social-links img { width: 150%; filter: brightness(0) invert(1); }

/* CONTENUTO EVENTO */
.evento-text { position: relative; z-index: 5; text-align: center; }
.evento-text h1 { font-size: clamp(2rem,6vw,4rem); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.evento-text h2 { font-size: clamp(1.5rem,4vw,2.5rem); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }

/* PULSANTE SALVA DATA */
.button-container { display: flex; justify-content: center; }
.chalk-link {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(29, 185, 84, 0.85);
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem,3vw,1.5rem);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.chalk-link:hover { transform: scale(1.05); background: rgba(29, 185, 84, 1); }

/* FOOTER */
.footer-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 20px; padding: 20px 0; }


/* RESPONSIVE */
@media (max-width:600px){
  .evento-text h1 { font-size: clamp(1.8rem,8vw,3rem); }
  .evento-text h2 { font-size: clamp(1.2rem,6vw,2rem); }
  .chalk-link { font-size: clamp(0.9rem,5vw,1.2rem); padding: 10px 20px; }
}

/* PULSANTE SALVA DATA */
.chalk-link {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(30, 144, 255, 0.85); /* 👈 blu */
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem,3vw,1.5rem);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chalk-link:hover { 
  transform: scale(1.05); 
  background: rgba(30, 144, 255, 1); /* blu pieno al passaggio */
}


/* LOGO HARD ROCK */
.evento-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.evento-logo img {
  width: clamp(120px, 25vw, 200px); /* dimensione responsiva */
  height: auto;
  display: block;
}

/* ==========================
   MINI POPUP PRIVACY
========================== */
.privacy-mini {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: none;
}


.privacy-mini.show {
  display: block;
}

.privacy-box-mini {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 18px;
  max-width: 420px;
  width: 90vw;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.privacy-box-mini p {
  margin: 0;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.privacy-box-mini a {
  color: #1db954;
  text-decoration: none;
  font-weight: 500;
}

.privacy-box-mini a:hover {
  text-decoration: underline;
}

.close-mini {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.close-mini:hover {
  opacity: 1;
}



