/* Home page specific styles */

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: url('../images/mainbg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.hero-content {
  position: relative;
  top: 50%;
  text-align: center;
  z-index: 1;
  font: Roboto, sans-serif;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 100;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
  
  .bio-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Content Sections */
.content-section {
  padding: 24px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Bio Section */
.bio-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.bio-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.bio-text .contact-info {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-text .contact-info strong {
  color: rgb(184, 29, 76);
}

.bio-text .contact-info p {
  margin-bottom: 8px;
}

/* Shows Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.show-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.show-title {
  color: rgb(184, 29, 76);
  font-weight: 400;
  margin-bottom: 8px;
}

.show-date,
.show-venue {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-title {
  color: rgb(184, 29, 76);
  font-weight: 400;
  margin-bottom: 8px;
}
