/* Band Template Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* Color Variables */
:root {
  --band-accent: #c9b8ff;
  --band-purple: #7649e1;
  --band-gray: #545552;
  --band-dark: #141414;
  --band-light: #f5f5f5;
}

/* Typography */
.band-hero h1,
.band-hero h2,
.band-section h2,
.band-section-alt h2,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.band-section p,
.band-section-alt p,
.band-section li,
.band-section-alt li,
p, li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Hero Section */
.band-hero {
  background: linear-gradient(135deg, var(--band-purple) 0%, var(--band-dark) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin: -1rem -1rem 2rem -1rem;
  border-radius: 0 0 1rem 1rem;
}

.band-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: white;
}

.band-hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--band-accent);
  margin-top: 0;
}

/* Content Sections */
.band-section {
  padding: 2rem;
  margin: 1.5rem 0;
  background: var(--band-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--band-purple);
}

.band-section h2 {
  color: var(--band-purple);
  margin-top: 0;
}

.band-section p,
.band-section li {
  color: var(--band-gray);
}

/* Alternate Section (Dark) */
.band-section-alt {
  padding: 2rem;
  margin: 1.5rem 0;
  background: var(--band-dark);
  border-radius: 0.5rem;
  border-left: 4px solid var(--band-accent);
}

.band-section-alt h2 {
  color: var(--band-accent);
  margin-top: 0;
}

.band-section-alt p,
.band-section-alt li,
.band-section-alt td,
.band-section-alt th {
  color: var(--band-light);
}

.band-section-alt table {
  width: 100%;
  border-collapse: collapse;
}

.band-section-alt th,
.band-section-alt td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--band-gray);
}

.band-section-alt th {
  color: var(--band-accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Links */
.band-section a,
.band-section-alt a {
  color: var(--band-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.band-section a:hover,
.band-section-alt a:hover {
  color: var(--band-purple);
  text-decoration: underline;
}

/* Color Swatches for Reference */
.color-swatches {
  padding: 2rem;
  margin: 2rem 0;
}

.color-swatches h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--band-gray);
  margin-bottom: 1.5rem;
}

.swatch {
  padding: 1.5rem 2rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.swatch-accent {
  background: var(--band-accent);
  color: var(--band-dark);
}

.swatch-purple {
  background: var(--band-purple);
  color: white;
}

.swatch-gray {
  background: var(--band-gray);
  color: white;
}

.swatch-dark {
  background: var(--band-dark);
  color: var(--band-light);
}

.swatch-blue {
  background: #5fb4f7;
  color: var(--band-dark);
}

/* List Styling */
.band-section ul,
.band-section-alt ul {
  list-style: none;
  padding-left: 0;
}

.band-section li,
.band-section-alt li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.band-section li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--band-purple);
}

.band-section-alt li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--band-accent);
}

/* Font Samples */
.font-samples {
  padding: 2rem;
  margin: 2rem 0;
}

.font-samples h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--band-gray);
  margin-bottom: 1.5rem;
}

.font-sample {
  padding: 1.5rem 2rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  background: var(--band-light);
  border-left: 4px solid var(--band-purple);
}

.font-sample h3 {
  color: var(--band-purple);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.font-opensans {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}
