/* Color Variables - Matching Original Design */
:root {
  --background: hsl(0, 0%, 8%);
  --foreground: hsl(0, 0%, 95%);
  --card: hsl(0, 0%, 12%);
  --card-foreground: hsl(0, 0%, 95%);
  --primary: hsl(35, 90%, 55%);
  --primary-foreground: hsl(0, 0%, 10%);
  --secondary: hsl(0, 0%, 15%);
  --secondary-foreground: hsl(0, 0%, 95%);
  --muted: hsl(0, 0%, 18%);
  --muted-foreground: hsl(0, 0%, 60%);
  --accent: hsl(25, 85%, 50%);
  --accent-foreground: hsl(0, 0%, 95%);
  --border: hsl(0, 0%, 20%);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-background-fallback {
  position: absolute;
  inset: 0;
  background-image: url('assets/band-photo.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), var(--background));
}

/* Hide fallback when video is playing */
.hero-video:not([poster]) ~ .hero-background-fallback {
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 0;
}

/* Add overlay gradient on top of video for better text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), var(--background));
  z-index: 1;
  pointer-events: none;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo img {
  width: 256px;
  height: auto;
  filter: brightness(0) invert(1);
  drop-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-logo img {
    width: 320px;
  }
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 2rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-social {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--foreground);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-social-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.2;
}

.hero-social-label {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-social-stats {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.button-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background-color: hsl(35, 90%, 50%);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px hsla(35, 90%, 55%, 0.5);
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.section-alt {
  background-color: var(--card);
}

.section-header {
  max-width: 64rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--primary);
}

.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.card p {
  color: var(--muted-foreground);
}

/* Repertoire */
.repertoire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 96rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .repertoire-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.repertoire-card {
  background-color: var(--card);
  border: 2px solid hsla(35, 90%, 55%, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px -10px hsla(35, 90%, 55%, 0.2);
  transition: all 0.3s;
  overflow: hidden;
}

.repertoire-card:hover {
  box-shadow: 0 10px 40px -10px hsla(35, 90%, 55%, 0.3);
}

.repertoire-card-accent {
  border-color: hsla(25, 85%, 50%, 0.3);
  box-shadow: 0 10px 40px -10px hsla(25, 85%, 50%, 0.2);
}

.repertoire-card-accent:hover {
  box-shadow: 0 10px 40px -10px hsla(25, 85%, 50%, 0.3);
}

.repertoire-header {
  background: linear-gradient(to bottom right, hsla(35, 90%, 55%, 0.2), hsla(35, 90%, 55%, 0.1));
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repertoire-card-accent .repertoire-header {
  background: linear-gradient(to bottom right, hsla(25, 85%, 50%, 0.2), hsla(25, 85%, 50%, 0.1));
}

.repertoire-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.badge {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

.song-list {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.song-list li {
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.song-list .note {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Video Section */
.video-container {
  max-width: 64rem;
  margin: 0 auto;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  background-color: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--secondary), var(--card));
  padding: 2rem;
  text-align: center;
}

.video-placeholder-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: hsla(35, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.video-placeholder-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.video-placeholder-text {
  color: var(--muted-foreground);
}

.video-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 112rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid hsla(35, 90%, 55%, 0.2);
  aspect-ratio: 1;
  transition: all 0.3s;
}

.gallery-item:hover {
  border-color: hsla(35, 90%, 55%, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px -10px hsla(35, 90%, 55%, 0.2);
}

.benefit-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsla(35, 90%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.benefit-check svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.benefit-card p {
  color: var(--muted-foreground);
}

/* Testimonials Carousel */
.testimonials-carousel {
  max-width: 48rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.testimonial-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px -10px hsla(35, 90%, 55%, 0.2);
  transform: translateY(-2px);
}

.testimonial-text {
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
  padding: 0;
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

/* Booking Form */
.booking-container {
  max-width: 42rem;
  margin: 0 auto;
}

.booking-card {
  background-color: var(--card);
  border: 2px solid hsla(35, 90%, 55%, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px hsla(35, 90%, 55%, 0.1);
  overflow: hidden;
}

.booking-header {
  background: linear-gradient(to bottom right, hsla(35, 90%, 55%, 0.15), hsla(25, 85%, 50%, 0.1));
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.booking-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.booking-header p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.booking-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(35, 90%, 55%, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info {
  margin-top: 2rem;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-foreground);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 12rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-foreground);
  transition: all 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Floating Book Us Button */
.floating-book-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.floating-book-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-book-button .button {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 10px 30px -10px rgba(217, 119, 6, 0.6);
  border-radius: 999px;
}

.floating-book-button .button:hover {
  box-shadow: 0 15px 40px -10px rgba(217, 119, 6, 0.8);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .floating-book-button {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .floating-book-button .button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}
