/* css/sections.css */

/* === GENERAL SECTION STYLES === */
.section {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0;
  overflow-y: auto;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-primary);
}

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  letter-spacing: 0.1em;
}

/* Section content wrapper */
.section .container {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--spacing-md);
  padding-top: 45vh;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-text-primary);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-primary);
}

.hero-subtitle {
  display: block;
  font-size: 0.4em;
  letter-spacing: 0.3em;
  color: rgba(255, 215, 0, 0.9);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.hero-description {
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0 auto var(--spacing-lg);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.scroll-indicator span {
  display: block;
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  color: rgba(255, 215, 0, 0.8);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* === MUSIC SECTION === */
.music-section {
  /* Background managed in backgrounds.css */
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.music-player h3 {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.1em;
}

.placeholder-player {
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-gold);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--color-text-muted);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === VIDEOS SECTION === */
.videos-section {
  /* Background managed in backgrounds.css */
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.video-item {
  position: relative;
  overflow: hidden;
  border: var(--border-gold);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base);
}

.video-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.placeholder-video {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  color: var(--color-text-muted);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === GALLERY SECTION === */
.gallery-section {
  /* Background managed in backgrounds.css */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: var(--border-gold);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--color-primary);
}

.placeholder-image {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  color: var(--color-text-muted);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === TOUR SECTION === */
.tour-section {
  /* Background managed in backgrounds.css */
}

.tour-list {
  max-width: 800px;
  margin: 0 auto;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold-light);
  transition: all var(--transition-base);
}

.tour-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(10px);
}

.tour-date {
  text-align: center;
  min-width: 80px;
}

.tour-date .month {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-weight: bold;
}

.tour-date .day {
  display: block;
  font-size: var(--font-size-2xl);
  color: var(--color-text-primary);
  font-weight: 300;
  line-height: 1;
}

.tour-info {
  flex: 1;
}

.tour-info h3 {
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.tour-info p {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
}

.tour-ticket-btn {
  padding: 0.8rem 2rem;
  background: rgba(230, 57, 70, 0.9);
  color: white;
  text-decoration: none;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all var(--transition-base);
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-ticket-btn:hover {
  background: rgba(230, 57, 70, 1);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

/* === MERCH SECTION === */
.merch-section {
  /* Background managed in backgrounds.css */
}

.merch-preview {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold);
}

.merch-preview p {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

/* === CONTACT SECTION === */
.contact-section {
  /* REMOVED: padding-bottom: 01.5in; - no longer needed with in-page footer */
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.email-signup,
.social-links,
.booking-info {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold-light);
}

.email-signup h3,
.social-links h3,
.booking-info h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.1em;
}

.email-signup p,
.booking-info p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

.signup-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 400px;
  margin: 0 auto;
}

/* === RESPONSIVE SECTIONS === */
@media (max-width: 768px) {
  .music-grid,
  .video-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tour-item {
    flex-direction: column;
    text-align: center;
  }

  .signup-form {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero {
    background-attachment: scroll;
  }
}
