/* ============================================================
   SOLD FOR SHEEP — Main Stylesheet
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === ROOT VARIABLES === */
:root {
  --color-bg:         #0a0a0a;
  --color-bg-2:       #111111;
  --color-bg-3:       #181818;
  --color-gold:       #c9a020;
  --color-gold-hover: #ddb52a;
  --color-gold-dim:   rgba(201, 160, 32, 0.15);
  --color-text:       #ffffff;
  --color-text-muted: #888888;
  --color-border:     #222222;
  --font-heading:     'Oswald', sans-serif;
  --font-body:        'Inter', sans-serif;
  --max-width:        1200px;
  --nav-height:       90px;
  --radius:           2px;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === UTILITY === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

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

.section--dark {
  background: var(--color-bg-3);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.text-gold {
  color: var(--color-gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--color-text);
  color: #000;
  border-color: var(--color-text);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 68px;
  width: auto;
}

.nav-logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-sfs {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--color-text);
}

.nav-links li a.active {
  color: var(--color-gold);
}

.nav-book {
  background: var(--color-gold) !important;
  color: #000 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-book:hover {
  background: var(--color-gold-hover) !important;
  color: #000 !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-inner {
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* === SONGS PREVIEW (homepage) === */
.songs-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.songs-preview-item {
  background: var(--color-bg-2);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.songs-preview-item:hover {
  background: var(--color-bg-3);
}

.song-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.song-artist {
  font-size: 15px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* === FULL SONG LIST (songs.html) === */
.song-list-header {
  text-align: center;
  padding: 48px 24px 48px;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}

.song-count-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: var(--color-gold);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.song-table-wrap {
  overflow-x: auto;
}

.song-table {
  width: 100%;
  border-collapse: collapse;
}

.song-table thead th {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--color-gold);
  background: var(--color-bg-2);
}

.song-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.15s;
}

.song-table tbody tr:hover {
  background: var(--color-bg-2);
}

.song-table tbody td {
  padding: 14px 20px;
  font-size: 17px;
}

.song-table td:first-child {
  color: var(--color-text-muted);
  font-size: 14px;
  width: 50px;
}

.song-table td:nth-child(2) {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.song-table td:last-child {
  color: var(--color-text-muted);
}

/* === VIDEOS === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  overflow: hidden;
  border-radius: var(--radius);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

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

.video-placeholder {
  background: var(--color-bg-3);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-placeholder svg {
  opacity: 0.3;
}

.video-card-body {
  padding: 16px 20px;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.video-card-meta {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* === ABOUT === */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-body p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 19px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-photo {
  aspect-ratio: 4/3;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-photo:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

/* === WHY BOOK === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.why-item {
  background: var(--color-bg);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-gold-dim);
  border: 1px solid rgba(201, 160, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.why-text h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-text);
}

.why-text p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === UPCOMING SHOWS === */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.show-item {
  background: var(--color-bg-2);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  transition: background 0.2s;
}

.show-item:hover {
  background: var(--color-bg-3);
}

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

.show-date-month {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
}

.show-date-day {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  display: block;
}

.show-info {}

.show-venue {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.show-location {
  font-size: 16px;
  color: var(--color-text-muted);
}

.show-type {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-dim);
  border: 1px solid rgba(201, 160, 32, 0.25);
  padding: 4px 10px;
  white-space: nowrap;
}

/* TBA style */
.show-item--tba .show-date-day {
  font-size: 17px;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* === CONTACT / BOOKING FORM === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

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

.contact-note {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

/* Form */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 12px 16px;
  font-size: 17px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
}

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

.form-group select option {
  background: var(--color-bg-3);
}

.form-submit {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-submit .btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  font-size: 15px;
  color: var(--color-text-muted);
  text-align: center;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--nav-height) + 48px) 0 48px;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}

.page-hero-label {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-hero-sub {
  font-size: 19px;
  color: var(--color-text-muted);
  margin-top: 14px;
  max-width: 480px;
}

/* === FOOTER === */
.footer {
  background: #000;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

.footer-brand img {
  height: 90px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand .nav-logo-sfs {
  font-size: 28px;
}

.footer-brand .nav-logo-sub {
  font-size: 10px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.2s;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
}

/* === HOMEPAGE SECTIONS LAYOUT === */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .songs-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 74px;
  }

  .nav-logo img {
    height: 54px;
  }

  .section {
    padding: 64px 0;
  }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 17px;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .show-item {
    grid-template-columns: 60px 1fr;
    padding: 16px 20px;
  }

  .show-type {
    display: none;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-group--full,
  .form-submit {
    grid-column: span 1;
  }

  .songs-preview-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-photo:first-child {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .song-table td:first-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }
}
