@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Black Country Brass Band - Complete Styles */
:root {
  /* Modern Brand Colors - Aqua Blue & Royal Blue */
  --primary: 196 85% 35%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 65% 20%;
  --secondary-foreground: 0 0% 100%;
  
  /* Modern Accent System */
  --accent: 42 100% 55%;
  --accent-foreground: 220 85% 15%;
  --aqua-light: 196 75% 65%;
  --aqua-dark: 196 95% 25%;
  --gold-light: 48 90% 65%;
  --gold-dark: 42 75% 35%;
  
  /* Neutral System */
  --background: 0 0% 100%;
  --foreground: 220 25% 15%;
  --card: 0 0% 100%;
  --card-foreground: 220 25% 15%;
  
  /* Muted Colors */
  --muted: 220 15% 96%;
  --muted-foreground: 220 15% 45%;
  --border: 220 15% 90%;
  --input: 220 15% 95%;
  
  /* Design Tokens */
  --radius: 0.75rem;
  
  /* Shadows */
  --shadow-soft: 0 4px 16px hsla(220, 25%, 15%, 0.08);
  --shadow-royal: 0 12px 40px hsla(220, 65%, 20%, 0.2);
  --shadow-gold: 0 8px 24px hsla(42, 100%, 55%, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.min-h-screen {
  min-height: 100vh;
}

/* Content Blocks */
.content-block {
  padding: 8rem 2rem;
  position: relative;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.4), hsl(var(--secondary) / 0.3));
}

.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 20;
  width: 4rem;
  height: 4rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 6rem;
  font-weight: bold;
  color: hsl(var(--primary-foreground));
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-accent {
  display: block;
  color: hsl(var(--accent));
}

.hero-divider {
  width: 8rem;
  height: 0.25rem;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--gold-dark)));
  margin: 0 auto 2rem;
}

.hero-text {
  font-size: 1.5rem;
  color: hsl(var(--primary-foreground) / 0.95);
  font-weight: 300;
  line-height: 1.6;
  max-width: 64rem;
  margin: 0 auto 1rem;
}

.hero-subtext {
  font-size: 1.25rem;
  color: hsl(var(--primary-foreground) / 0.85);
  font-weight: 300;
  font-style: italic;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--gold-dark)));
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px hsla(42, 100%, 55%, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary-foreground) / 0.8);
  color: hsl(var(--primary-foreground));
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: hsl(var(--primary-foreground) / 0.1);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 2px solid hsl(var(--border));
  transition: all 0.5s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-royal);
  transform: translateY(-12px);
}

.card-header {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  color: hsl(var(--primary-foreground));
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.card-content {
  padding: 2rem;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.event-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.event-text {
  font-weight: 500;
  font-size: 1.125rem;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-text {
    font-size: 1.25rem;
  }
  
  .content-block {
    padding: 4rem 1.5rem;
  }
}

/* Section Titles */
.section-title {
  font-size: 4rem;
  font-weight: bold;
  color: hsl(var(--secondary));
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title-accent {
  color: hsl(var(--primary));
}

.section-divider {
  width: 8rem;
  height: 0.25rem;
  background: linear-gradient(135deg, hsl(var(--aqua-light)), hsl(var(--aqua-dark)));
  margin: 0 auto 4rem;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.85), hsl(var(--secondary) / 0.75));
}

.parallax-content {
  position: relative;
  z-index: 10;
}

/* Content Boxes */
.content-box {
  background: hsl(var(--primary-foreground) / 0.15);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  box-shadow: var(--shadow-royal);
}

.content-box h3 {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: hsl(var(--accent));
  margin-bottom: 1.5rem;
}

.content-box p {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.9);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* Quote Box */
.quote-box {
  background: hsl(var(--accent) / 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid hsl(var(--accent) / 0.3);
}

.quote-text {
  color: hsl(var(--accent));
  font-weight: 500;
  font-style: italic;
  font-size: 1.25rem;
}

/* Gradient Backgrounds */
.bg-gradient-modern {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.bg-gradient-aqua {
  background: linear-gradient(135deg, hsl(var(--aqua-light)), hsl(var(--aqua-dark)));
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-logo.animate {
  opacity: 1;
  transform: scale(1);
}

/* Utility Classes */
.text-center { text-align: center; }
.max-w-5xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Loading & Error States */
.loading-text,
.error-text {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  padding: 2rem;
}
