/* ================================================
   ALTERNATIVE HOMEPAGE STYLES
   ================================================ */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
}

/* ================================================
   HERO HEADER
   ================================================ */

.hero-header {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 1080px;
  overflow: hidden;
}

.hero-header picture {
  display: block;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Visually hidden but accessible for screen readers and SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   BIO SECTION
   ================================================ */

.bio-section {
  padding: 6rem 2rem;
  background: #fff;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.bio-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.bio-image-2 {
  margin-top: 3rem;
}

.bio-video {
  margin-top: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bio-content {
  padding-top: 2rem;
}

.bio-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.bio-heading::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: #1a1a1a;
}

.bio-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.bio-text-lead {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}

.bio-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-secondary {
  background: #555;
  color: #fff;
  border-color: #555;
}

.btn-secondary:hover {
  background: #666;
  border-color: #666;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-tickets {
  background: #fff;
  color: #1a1a1a;
  border-color: #1a1a1a;
  padding: 0.75rem 2rem;
  min-width: 140px;
  text-align: center;
}

.btn-tickets:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials-section {
  padding: 5rem 2rem;
  background: #f5f5f5;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-logo {
  flex-shrink: 0;
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 4px;
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  margin: 0 0 1rem 0;
  padding: 0;
}

.testimonial-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
}

.testimonial-quote p::before {
  content: '"';
}

.testimonial-quote p::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.testimonial-name {
  font-weight: 600;
  color: #1a1a1a;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #666;
}

/* ================================================
   EMAIL SIGNUP SECTION
   ================================================ */

.signup-section {
  padding: 5rem 2rem;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.signup-container {
  max-width: 600px;
  margin: 0 auto;
}

.signup-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.signup-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.signup-form-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

/* ================================================
   SHOWS SECTION
   ================================================ */

.shows-section {
  padding: 5rem 2rem;
}

.shows-upcoming {
  background: #1a1a1a;
  color: #fff;
}

.shows-past {
  background: #e8e8e8;
  color: #1a1a1a;
}

.shows-container {
  max-width: 1100px;
  margin: 0 auto;
}

.shows-heading {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shows-upcoming .shows-heading {
  color: #fff;
}

.shows-past .shows-heading {
  color: #1a1a1a;
}

.shows-list {
  border-top: 2px solid currentColor;
}

.shows-upcoming .shows-list {
  border-color: rgba(255,255,255,0.3);
}

.shows-past .shows-list {
  border-color: rgba(0,0,0,0.2);
}

.show-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid;
  gap: 2rem;
}

.past-show-item[hidden] {
  display: none;
}

.shows-upcoming .show-row {
  border-color: rgba(255,255,255,0.15);
}

.shows-past .show-row {
  border-color: rgba(0,0,0,0.1);
}

.show-info {
  flex: 1;
  min-width: 0;
}

.show-date {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.show-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.show-venue-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 3rem;
  align-items: baseline;
}

.show-venue {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.show-venue a {
  color: inherit;
  text-decoration: none;
}

.show-venue a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.show-location {
  font-size: 1rem;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}

.map-link {
  font-size: 0.75rem;
  font-variant: normal;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 0.5rem;
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shows-upcoming .map-link {
  color: #fff;
}

.shows-past .map-link {
  color: #1a1a1a;
}

.map-link:hover {
  opacity: 1;
}

.show-time {
  font-size: 0.9rem;
  opacity: 0.7;
}

.show-meta {
  font-size: 0.9rem;
  opacity: 0.7;
  font-variant: small-caps;
  letter-spacing: 0.02em;
}

.show-meta p {
  display: inline;
  margin: 0;
}

.show-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.show-meta a:hover {
  opacity: 0.8;
}

.past-shows-count {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0;
}

.pagination-controls {
  text-align: center;
  margin-top: 2rem;
}

.show-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.shows-footer {
  text-align: center;
  margin-top: 2rem;
}

.pagination-controls + .shows-footer {
  margin-top: 1.5rem;
}

.shows-upcoming .btn-outline {
  color: #fff;
  border-color: #fff;
}

.shows-upcoming .btn-outline:hover {
  background: #fff;
  color: #1a1a1a;
}

.shows-upcoming .btn-tickets {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.shows-upcoming .btn-tickets:hover {
  background: transparent;
  color: #fff;
}

.no-shows {
  text-align: center;
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 3rem 0;
}

/* ================================================
   SOCIAL SECTION
   ================================================ */

.social-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.social-container {
  max-width: 600px;
  margin: 0 auto;
}

.social-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  transition: transform 0.2s, background 0.2s;
}

.social-link:hover {
  background: #333;
  transform: scale(1.1);
}

.social-icon {
  width: 24px;
  height: 24px;
}

/* ================================================
   MODAL
   ================================================ */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.required {
  color: #c00;
}

.hidden {
  display: none;
}

.btn-full {
  width: 100%;
}

.form-message {
  text-align: center;
  padding: 2rem;
}

.form-success p {
  color: #1a1a1a;
}

.form-error p {
  color: #c00;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

/* ================================================
   RESPONSIVE - TABLET
   ================================================ */

@media (max-width: 1024px) {
  .bio-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bio-media {
    order: 2;
  }

  .bio-content {
    order: 1;
    padding-top: 0;
  }

  .bio-images {
    grid-template-columns: 1fr 1fr;
  }

  .bio-image-2 {
    margin-top: 2rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .show-venue-row {
    gap: 0.5rem 2rem;
  }
}

/* ================================================
   RESPONSIVE - MOBILE
   ================================================ */

@media (max-width: 640px) {
  .bio-section {
    padding: 4rem 1.5rem;
  }

  .bio-heading {
    font-size: 2rem;
  }

  .bio-images {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bio-image-2 {
    margin-top: 0;
  }

  .bio-cta {
    flex-direction: column;
  }

  .bio-cta .btn {
    width: 100%;
    text-align: center;
  }

  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .testimonial-author {
    justify-content: center;
    flex-wrap: wrap;
  }

  .signup-section {
    padding: 4rem 1.5rem;
  }

  .shows-section {
    padding: 4rem 1.5rem;
  }

  .shows-heading {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
  }

  .show-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .show-venue-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .show-actions {
    width: 100%;
  }

  .btn-tickets {
    width: 100%;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }
}
