body {
  font-family: system-ui, sans-serif;
  background-color: #121212;
  color: white;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #121212);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  top: 30%;
  transform: translateY(-30%);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.button {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: 0.3s;
}

.button.primary {
  background: #e11d48;
  color: white;
}

.button.primary:hover {
  background: #be123c;
}

.button.outline {
  border: 1px solid white;
  color: white;
  background: transparent;
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.event-details {
  background: #1a1a1a;
  padding: 4rem 2rem;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.event-details h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.event-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #2a2a2a;
  padding: 1rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

/* Stile per la card VIP */
.container .event-card.vip {
  background-color: #3a3a3a; /* Colore di sfondo più scuro per differenziare */
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.event-card.vip .event-time-info {
  color: #e11d48; /* Colore rosso per gli orari */
}

.event-card.vip .event-image img {
  opacity: 0.7; /* Immagine leggermente più visibile */
}

.event-card.vip .event-bottom-left {
  color: white;
}

.event-card.vip .event-info h3 {
  color: #e11d48; /* Titolo in rosso */
}

.event-card.vip .button-container .button {
  border-color: #e11d48; /* Pulsanti con bordo rosso */
  color: #e11d48;
}

.event-card.vip .button-container .button:hover {
  background-color: #e11d48; /* Sfondo rosso al passaggio del mouse */
  color: white;
}



.event-time-info {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.1rem;
  color: white;
  z-index: 2;
}

.event-time-info p {
  margin: 0.3rem 0;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.5;
  order:2;
}

.event-bottom-left {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  z-index: 2;
  order:1;
}

.event-date .day {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 1.1rem;
  color: #ccc;
}

.event-info h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.button-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Modal styles */
.modal-toggle {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-toggle:checked + .modal {
  display: flex;
}

.modal-content {
  background-color: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
}

.close-btn {
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
}

.modal h2 {
  margin-bottom: 1rem;
}

.modal ul {
  list-style: none;
  padding: 0;
}

.modal ul li {
  margin: 0.5rem 0;
}

/* Footer */
.footer {
  background: #1a1a1a;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  color: #e11d48;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #e11d48;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a3a3a3;
}

/* Navbar Styles */
.navbar {
  background-color: #121212;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.navbar-brand {
  font-size: 1.8rem;
  color: #e11d48;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-brand:hover {
  color: #be123c;
}

.navbar-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.navbar-links li {
  display: inline;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: #e11d48;
}

#informazioni{
  margin: 30px;
}

.event-description {
  background-color: #121212;
  color: #fff;
  padding: 3rem 0;
  margin: 30px;
}

.event-description h2 {
  color: #e91e63;
  text-align: center;
  margin-bottom: 2rem;
}

.description-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.description-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.description-text h3 {
  color: #64ffda;
  margin: 1.5rem 0 1rem;
}

.lineup-list {
  list-style: none;
  padding: 0;
}

.lineup-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lineup-list strong {
  color: #bb86fc;
}

/* box delle caratteristiche */
.description-content > div > div {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.description-content h4 {
  color: #bb86fc;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/*media query rwd*/
@media (max-width: 768px) {
  .description-content {
    grid-template-columns: 1fr;
  }
}

