body {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: color 0.3s ease;
}
a:hover {
  color: #ff0000;
}

ul { list-style: none; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff0000;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #cc0000;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo-img {
  height: 40px;
  object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: 81px;
}

nav ul li a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-home {
  color: #ff0000;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 50px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.178), rgba(0, 0, 0, 0.801)), url('teaser.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 800px;
  margin-top: 50px;
}

.hero-logo-large {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: #ccc;
}

.hero-info { margin-bottom: 30px; }

.hero-date {
  color: #cc0000;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.hero-location {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.lineup {
  padding: 100px 50px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-label {
  color: #cc0000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}

.artist-card {
  position: relative;
  background-color: #111;
  padding-bottom: 140%; 
  overflow: hidden;
  border: 2px solid transparent; 
  transition: all 0.3s ease;
}

.artist-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease; 
}

.artist-card .img-bw {
  opacity: 0.7; 
  z-index: 1;
}

.artist-card .img-color {
  opacity: 0;
  z-index: 2;
}

.artist-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 3; 
}

.artist-name {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 4; 
  transition: transform 0.3s ease;
}

.view-artist {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  color: #cc0000;
  font-size: 10px;
  z-index: 5; 
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover {
    border: 2px solid #cc0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transform: scale(1.05);
    z-index: 10;
}
.artist-card:hover .img-bw { opacity: 0; }
.artist-card:hover .img-color { opacity: 1; }
.artist-card:hover .artist-name { transform: translateY(-10px); }
.artist-card:hover .view-artist { opacity: 1; }

.about {
  display: flex;
  padding: 50px;
  gap: 50px;
  align-items: center;
}

.about-video {
  flex: 1;
  position: relative;
}

.about-text {
  flex: 1;
  max-width: 500px;
}

.about-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-primary { color: #cc0000; }

.about-desc {
  color: #888888;
  margin-bottom: 30px;
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}
.footer-nav a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

.socials {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  header, .hero, .lineup, .about, footer {
    padding: 20px;
  }
  
  header {
    position: relative; 
    background: #000;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about {
    flex-direction: column;
    text-align: center;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
