/* Import Professional Folk-Appropriate Fonts */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Lora:wght@400;500&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c5530;
  --secondary-color: #8b6f47;
  --accent-color: #d4a574;
  --accent-red: #dc2626;
  --text-dark: #2c2c2c;
  --text-light: #555;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --border-color: #e0d5c7;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: "Lora", Georgia, serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-light);
  position: relative;
  overflow-x: hidden;
  font-weight: 400;
}

/* Background Instrument SVG Decorations */
.bg-instrument {
  position: fixed;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  color: var(--primary-color);
}

.bg-guitar {
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  transform: rotate(-15deg);
}

.bg-fiddle {
  top: 45%;
  left: 3%;
  width: 100px;
  height: 100px;
  transform: rotate(20deg);
}

.bg-accordion {
  bottom: 25%;
  right: 8%;
  width: 120px;
  height: 120px;
  transform: rotate(10deg);
}

.bg-bodhran {
  top: 65%;
  left: 5%;
  width: 110px;
  height: 110px;
  transform: rotate(-10deg);
}

.bg-mandolin {
  top: 20%;
  left: 10%;
  width: 90px;
  height: 90px;
  transform: rotate(25deg);
}

/* Add subtle animation on scroll */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation));
  }
}

.bg-guitar {
  --rotation: -15deg;
  animation: float 6s ease-in-out infinite;
}
.bg-fiddle {
  --rotation: 20deg;
  animation: float 7s ease-in-out infinite 0.5s;
}
.bg-accordion {
  --rotation: 10deg;
  animation: float 8s ease-in-out infinite 1s;
}
.bg-bodhran {
  --rotation: -10deg;
  animation: float 6.5s ease-in-out infinite 1.5s;
}
.bg-mandolin {
  --rotation: 25deg;
  animation: float 7.5s ease-in-out infinite 2s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-link:hover {
  color: var(--accent-color);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section - Enhanced for Conversion */
.hero {
  margin-top: 70px;
  min-height: calc(95vh - 70px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(44, 85, 48, 0.05) 0%,
    var(--bg-white) 50%,
    rgba(212, 165, 116, 0.05) 100%
  );
  padding: 2rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-icon {
  margin-right: 0.5rem;
  font-size: 1em;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.9;
}

.social-proof-text {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-style: italic;
}

/* Album Cover Section */
.hero-album {
  text-align: center;
  position: relative;
}

.album-cover-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.album-cover {
  width: 350px;
  height: 350px;
  object-fit: contain; /* Changed from cover to contain to preserve aspect ratio */
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: transparent; /* Ensure transparent background */
  transition: transform 0.4s ease;
}

.album-cover:hover {
  transform: scale(1.02) rotate(1deg);
}

.album-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.album-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.track-info {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.track-count,
.duration {
  font-weight: 500;
}

.availability {
  display: flex;
  align-items: center;
}

.status.available {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    order: 2;
  }

  .hero-album {
    order: 1;
  }

  .album-cover {
    width: 280px;
    height: 280px;
  }

  /* Ensure CD artwork transparency is preserved */
  .album-cover.cd-artwork,
  .purchase-album-cover {
    background: transparent !important;
    object-fit: contain !important;
  }

  .hero-ctas {
    justify-content: center;
  }

  .btn-large,
  .btn-secondary {
    flex: 1;
    min-width: 200px;
  }
}

/* Story Section - Consolidated Journey + Album */
.story-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
  position: relative;
}

.story-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.story-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
}

.story-section-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-section-block.reverse {
  grid-template-columns: 400px 1fr;
}

.story-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.story-image {
  position: relative;
}

.story-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.story-photo:hover {
  transform: translateY(-5px);
}

.story-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  margin: 4rem auto;
  max-width: 200px;
  opacity: 0.6;
}

/* Featured Quote Styling */
.joe-quote {
  margin: 5rem 0;
  text-align: center;
}

.featured-quote {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-left: 5px solid var(--accent-color);
}

.quote-content p {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2rem;
  quotes: "" " " "" "'" "'";
}

.quote-content p::before {
  content: open-quote;
  font-size: 3rem;
  color: var(--accent-color);
  line-height: 0;
  vertical-align: -0.4em;
}

.quote-content p::after {
  content: close-quote;
  font-size: 3rem;
  color: var(--accent-color);
  line-height: 0;
  vertical-align: -0.4em;
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.quote-author strong {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.author-title {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.quote-decoration {
  position: absolute;
  top: -10px;
  right: 2rem;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
}

/* Story Mobile Responsive */
@media (max-width: 768px) {
  .story-section-block,
  .story-section-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .featured-quote {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .story-photo {
    height: 250px;
  }
}

/* Music Section - Enhanced Video Experience */
.music-section {
  padding: 6rem 0;
  background: var(--bg-white);
  position: relative;
}

.music-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* Featured Player */
.featured-player-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.player-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.player-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.player-info p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.track-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-meta span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Music Carousel */
.music-carousel {
  margin-top: 4rem;
}

.carousel-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 400;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  padding: 1rem;
}

.track-card {
  flex: 0 0 280px;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.track-thumbnail {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.track-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.track-card:hover .track-thumbnail img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(44, 85, 48, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  color: white;
  font-size: 1.2rem;
  margin-left: 2px;
}

.track-info {
  padding: 1.25rem;
}

.track-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.track-artist {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.track-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-duration {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.track-genre {
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(44, 85, 48, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-weight: 500;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(44, 85, 48, 0.9);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

/* Music CTAs */
.music-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Music Mobile Responsive */
@media (max-width: 768px) {
  .featured-player-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .track-meta {
    align-items: center;
  }

  .carousel-track {
    gap: 1rem;
    padding: 0.5rem;
  }

  .track-card {
    flex: 0 0 250px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-container {
    padding: 0 1rem;
  }

  .music-cta {
    flex-direction: column;
    align-items: center;
  }

  .music-cta .btn {
    min-width: 250px;
  }
}

/* Collaborators Section - Enhanced with Personalities */
.collaborators-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
  position: relative;
}

.collaborators-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 4rem auto;
  line-height: 1.7;
  font-weight: 400;
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}

.collaborator-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collaborator-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.collaborator-card.featured {
  border-left: 5px solid var(--accent-color);
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.collaborator-avatar {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 1rem;
  background: var(--bg-light);
  border: 3px solid var(--accent-color);
}

.avatar-placeholder.producer {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}
.avatar-placeholder.fiddle {
  background: linear-gradient(135deg, #4834d4, #686de0);
}
.avatar-placeholder.accordion {
  background: linear-gradient(135deg, #00d2d3, #01a3a4);
}
.avatar-placeholder.guitar {
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
}
.avatar-placeholder.bass {
  background: linear-gradient(135deg, #54a0ff, #2e86de);
}
.avatar-placeholder.guitar-alt {
  background: linear-gradient(135deg, #5f27cd, #341f97);
}

.role-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.collaborator-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.collaborator-roles {
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.collaborator-story {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.collaborator-specialty {
  display: flex;
  justify-content: flex-start;
}

.specialty-tag {
  background: rgba(44, 85, 48, 0.1);
  color: var(--primary-color);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(44, 85, 48, 0.2);
}

/* Recording Note */
.recording-note {
  text-align: center;
  margin-top: 3rem;
}

.note-content {
  background: rgba(44, 85, 48, 0.05);
  border-radius: 15px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(44, 85, 48, 0.1);
}

.note-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.note-content p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

/* Collaborators Mobile Responsive */
@media (max-width: 768px) {
  .collaborators-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .collaborator-card {
    padding: 1.5rem;
  }

  .avatar-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .note-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition);
  font-size: 0.95rem;
  border: 2px solid transparent;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
  color: white;
  border: 2px solid var(--accent-red);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transform: translateY(0);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-large {
  padding: 16px 50px;
  font-size: 1.05rem;
}

/* Images */
.hero-photo,
.journey-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.hero-photo {
  aspect-ratio: 1;
  object-position: center;
}

.journey-photo {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Image Placeholders (for sections still needing images) */
.image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background-color: var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Introduction Section */
.introduction {
  padding: 4rem 0;
  background-color: var(--bg-white);
  text-align: center;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
}

/* Journey Section */
.journey {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.journey-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.journey-image .image-placeholder {
  height: 400px;
  border-radius: 10px;
  max-width: 100%;
}

/* YouTube Videos Section */
.videos {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.videos-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.videos-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.featured-video {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

.featured-video h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-item {
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: var(--transition);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 15px solid var(--primary-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-item:hover .play-button {
  background-color: var(--accent-color);
}

.video-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.video-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.youtube-cta {
  text-align: center;
}

/* Album Section */
.album {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.album-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.album-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.album-details p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.album-quote {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 5px;
}

.album-quote p {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.album-quote cite {
  display: block;
  text-align: right;
  color: var(--secondary-color);
  font-style: normal;
  font-weight: 500;
}

.album-art-container .image-placeholder {
  height: 350px;
  position: sticky;
  top: 100px;
}

/* Collaborators Section */
.collaborators {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.collaborators-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.collaborator {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.collaborator:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.collaborator h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.collaborator p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Register Section */
.register {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.register-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.register-lead {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.register-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.register-form {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.register-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.register-form p {
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: white;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin-bottom: 2rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-link svg {
  fill: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide background instruments on mobile */
  .bg-instrument {
    display: none;
  }

  /* Navigation */
  .nav-logo {
    height: 45px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: calc(80vh - 70px);
    padding: 2rem 20px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .hero-image {
    opacity: 0.3;
  }

  .hero-image {
    padding-right: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .hero-photo {
    max-width: 350px;
    aspect-ratio: 1;
  }

  .journey-photo {
    height: 300px;
  }

  .image-placeholder {
    max-width: 350px;
    height: 350px;
  }

  /* Journey & Album */
  .journey-content,
  .album-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Videos */
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .video-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Section Titles */
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

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

  .video-list {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 1rem;
  }

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