/* The Perfectionists - Restored site styles */
:root {
  --accent: #e72a6b;
  --accent-dark: #c41e58;
  --dark: #1a1a1a;
  --text: #333;
  --light: #f5f5f5;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.5;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-top {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-top:hover {
  text-decoration: underline;
}

.header .logo {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: #f0f0f0;
  border-radius: 8px;
  line-height: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-img[src=""],
.logo-img:not([src]) {
  min-width: 180px;
  height: 40px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 4px;
}

.social-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.social-top span {
  color: #666;
}

.social-top a {
  color: var(--accent);
  text-decoration: none;
}

.social-top a:hover {
  text-decoration: underline;
}

.nav {
  background: var(--dark);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/home.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(45, 27, 46, 0.7) 50%, rgba(26, 26, 26, 0.75) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-style: italic;
}

/* Sections */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}

.section-sub {
  color: #666;
  margin: 0 0 2rem;
}

/* About block */
.about-block {
  background: var(--white);
}

.about-block p,
.weddings-block p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.65;
}

.about-lead,
.weddings-lead {
  font-size: 1.15rem;
  color: #444;
  font-weight: 600;
}

.about-block p + p,
.weddings-block p + p {
  margin-top: 1rem;
}

/* Weddings & events block */
.weddings-block {
  background: var(--light);
}

.link-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.link-cta:hover {
  text-decoration: underline;
}

/* Partners block */
.partners-block {
  background: var(--white);
  border-top: 1px solid #eee;
}

.partners-intro {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.5;
}

.partners-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}

.partner-card {
  background: var(--light);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.partner-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.partner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.partner-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
}

.partner-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 900px) {
  .partners-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .partners-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* Schedule */
.schedule {
  background: var(--light);
}

.schedule h2 {
  color: #666;
  font-weight: 500;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--dark), #333);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}

.play-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.08);
}

.video-card h3 {
  margin: 0;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* Venues */
.venues {
  background: var(--dark);
  color: var(--white);
}

.venues h2 {
  color: var(--white);
}

.venues-list {
  margin: 0 0 2rem;
}

.venues-list p {
  margin: 0.5rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.venues-more {
  font-weight: 600;
}

.venues-events {
  margin-top: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.btn-book {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.btn-book:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

/* Feed image block */
.feed {
  padding: 0;
  max-width: 100%;
}

.feed-image {
  min-height: 400px;
  background: linear-gradient(180deg, #2d1b2e 0%, var(--dark) 100%);
  background-size: cover;
  background-position: center;
}

.feed-image {
  background-image: url('../images/feed-bg.jpg');
}
/* If no feed image, gradient from venues is enough */

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.footer-email {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-email a {
  color: var(--accent);
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Page layout (schedule, team) */
.page-main {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.schedule-page h1,
.team-intro h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.no-events {
  color: #666;
  margin: 0;
}

/* Past shows list */
.past-shows .show-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.show-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.show-item:last-child {
  border-bottom: 0;
}

.show-date {
  color: var(--accent);
  font-weight: 600;
}

.show-venue {
  color: #666;
  display: block;
  margin-top: 0.25rem;
}

.show-desc {
  display: block;
  margin-top: 0.5rem;
  color: #555;
  font-style: italic;
}

/* Meet the band / Backstage */
.team-intro {
  padding-bottom: 2rem;
}

.team-intro h1 {
  letter-spacing: 0.05em;
}

.member {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.member-photo {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);
  flex-shrink: 0;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-bio h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.member-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.member-bio p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.member-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .member {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .member-photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    gap: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
