* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(#f7f3ea, #f9f3e8);

}

/* NAVBAR */
.navbar {
  background-color: white;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.nav-links li a {
  text-decoration: none;
  color: #d32f2f;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: #b71c1c;
}

/* HERO SECTION */
.hero-section {
  background-image: url(../assets/banner.jpg);

  padding: 60px 40px;
  border: 2px solid #d2d2d2;
  margin: 20px;
}



.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 90px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 180px;
  height: 155px;
}
.logo-box {
  border: 3px solid #d32f2f;
  padding: 20px;
  text-align: center;
  background-color: white;
  width: 250px;
}


.logo-text {
  color: #d32f2f;
  font-weight: bold;
  font-size: 18px;
}

.logo-text span {
  font-size: 12px;
  display: block;
  margin-top: 5px;
}


/* CONCERT IMAGE SECTION */
.concert-image-section {
  margin: 20px;
}

.concert-image-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* FEATURED EVENTS */
.featured-events {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.event-card {
  width: 100%;
  max-width: 600px;
}

.ticket-design {
  border: 3px solid #d32f2f;
  background-color: white;
  padding: 30px;
  position: relative;
}

.ticket-design::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  border-radius: 50%;
  border: 3px solid #d32f2f;
}

.ticket-design::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  border-radius: 50%;
  border: 3px solid #d32f2f;
}

.ticket-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.music-icon {
  font-size: 40px;
  color: #d32f2f;
}

.event-details h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.event-details p {
  font-size: 16px;
  color: #666;
}

/* ALL EVENTS SECTION */
.all-events {
  background-color: white;
  padding: 40px;
  margin: 20px;
  border: 2px solid #ddd;
}

.all-events h2 {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.evento-item {
  background-color: white;
  border: 2px solid #ddd;
  overflow: hidden;
  transition: transform 0.3s;
}

.evento-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 2px solid #ddd;
}

.evento-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.evento-item a img {
  transition: transform 0.3s;
}

.evento-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.evento-item a:hover img {
  transform: scale(1.05);
}

.evento-info {
  padding: 20px;
}

.evento-info h3 {
  color: #d32f2f;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.evento-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.precio {
  background-color: #d32f2f;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

/* FOOTER CONTACT */
.footer-contact {
  background-color: white;
  padding: 60px 40px;
  margin: 20px;
  border: 2px solid #ddd;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-info p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .logo-box {
    width: 200px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .ticket-content {
    flex-direction: column;
    text-align: center;
  }
}
