/* Keys & Frets — blue & green theme */

:root {
  --wood-dark: #0d3b4f;
  --wood-mid: #14708f;
  --wood-light: #1fb673;
  --cream: #f3f9f7;
  --cream-2: #e2f1ec;
  --accent: #14b88a;
  --accent-dark: #0e8f6b;
  --text-main: #10262d;
  --text-soft: #4c6b70;
  --shadow: 0 6px 18px rgba(13, 59, 79, 0.15);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  background-color: var(--cream);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--wood-dark);
  letter-spacing: 0.3px;
  margin-top: 0;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */

header.site-header {
  background: linear-gradient(180deg, var(--wood-dark), var(--wood-mid));
  color: var(--cream);
  padding: 18px 0;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
  height: 54px;
  width: auto;
}

.hero-mark {
  display: block;
  margin: 0 auto 18px;
  height: 270px;
  width: auto;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.member-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cream);
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--cream-2);
  opacity: 0.85;
  display: block;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
}

/* Hero */

.hero {
  background: linear-gradient(rgba(8,35,45,0.35), rgba(8,35,45,0.35)),
    linear-gradient(135deg, var(--wood-mid), var(--wood-light));
  color: var(--cream);
  padding: 90px 0 70px;
  text-align: center;
}

.hero-photos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-photo {
  width: 190px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo-name {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-photo-role {
  font-size: 0.8rem;
  color: var(--cream-2);
  opacity: 0.9;
  margin-top: -6px;
}

.hero h1 {
  color: var(--cream);
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--cream-2);
  max-width: 640px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */

section {
  padding: 60px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 36px;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13,59,79,0.08);
}

/* Gig list */

.gig-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gig-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-left: 5px solid var(--accent);
}

.gig-date {
  min-width: 100px;
  text-align: center;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.gig-date .weekday {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-dark);
}

.gig-date .day {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-dark);
  line-height: 1;
}

.gig-date .month {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 1px;
}

.gig-details {
  flex: 1;
  min-width: 200px;
}

.gig-details h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.gig-meta {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.gig-empty {
  text-align: center;
  color: var(--text-soft);
  font-style: italic;
  padding: 30px 0;
}

/* About / photos */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.photo-placeholder {
  background: var(--cream-2);
  border: 2px dashed var(--wood-light);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

/* Video grid */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact / booking form */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

form.booking-form {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form label {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-soft);
  display: block;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfe4df;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */

footer.site-footer {
  background: var(--wood-dark);
  color: var(--cream-2);
  padding: 36px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer.site-footer a {
  color: var(--cream);
}

.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 14px 0;
}

.placeholder-note {
  background: #eafaf3;
  border: 1px dashed #35b58a;
  color: #12664a;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 20px auto;
  max-width: 700px;
  text-align: center;
}
