/* CCC Site Styles */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Bebas+Neue&family=Nunito+Sans:wght@400;600;700;800&display=swap');

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #fdce78;
  --coral: #ed5552;
  --deep-red: #b32824;
  --navy: #00344e;
  --cream: #fdf8f0;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--deep-red);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.subhead {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
}

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--gold {
  background: var(--gold);
}

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

/* Navigation */
.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 70px;
  width: auto;
  padding: 4px 0;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}

/* Nav adjustments for larger logo */
.nav {
  background: var(--navy);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
}

.nav__cta:hover {
  background: var(--deep-red);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,52,78,0.85) 0%, rgba(0,52,78,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

.hero__title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

.hero__text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--deep-red);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--coral);
  line-height: 1;
}

.stat__label {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 8px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,52,78,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,52,78,0.12);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  color: var(--navy);
}

.card p {
  color: var(--text-light);
}

/* Event Feature */
.event-feature {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,52,78,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.event-feature__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.event-feature__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-feature__badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.event-feature__title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.event-feature__details {
  list-style: none;
  margin: 20px 0;
}

.event-feature__details li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.event-feature__details li strong {
  color: var(--navy);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.team-member {
  text-align: center;
}

.team-member__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-member__title {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Concert Lineup */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.lineup-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,52,78,0.08);
  position: relative;
  overflow: hidden;
}

.lineup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--coral) 0%, var(--gold) 100%);
}

.lineup-card:nth-child(2)::before { background: linear-gradient(180deg, var(--gold) 0%, var(--deep-red) 100%); }
.lineup-card:nth-child(3)::before { background: linear-gradient(180deg, var(--deep-red) 0%, var(--navy) 100%); }
.lineup-card:nth-child(4)::before { background: linear-gradient(180deg, var(--navy) 0%, var(--coral) 100%); }
.lineup-card:nth-child(5)::before { background: linear-gradient(180deg, var(--coral) 0%, var(--gold) 100%); }
.lineup-card:nth-child(6)::before { background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%); }

.lineup-card__date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.lineup-card__band {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-inline {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.form-inline input {
  flex: 1;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 16px;
}

.footer__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Badges */
.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.badge {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge--coral {
  background: var(--coral);
  color: var(--white);
}

.badge--gold {
  background: var(--gold);
  color: var(--navy);
}

.badge--navy {
  background: var(--navy);
  color: var(--white);
}

/* Page Header */
.page-header {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,52,78,0.15);
}

/* Initiative Cards */
.initiative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #eee;
}

.initiative:last-child {
  border-bottom: none;
}

.initiative:nth-child(even) {
  direction: rtl;
}

.initiative:nth-child(even) > * {
  direction: ltr;
}

.initiative__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,52,78,0.1);
}

.initiative__content h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 968px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat__number {
    font-size: 4rem;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-feature__image {
    min-height: 250px;
  }

  .two-col,
  .initiative {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col--reverse,
  .initiative:nth-child(even) {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .badge-row {
    justify-content: center;
  }
}
