/* ============================================================
   Steel Creek Entertainment — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #1a1510;
  --bg-card:   #221c14;
  --bg-dark:   #120f0a;
  --brown:     #3d2b1a;
  --gold:      #c8942a;
  --gold-light:#e0aa45;
  --teal:      #2a5c5a;
  --teal-light:#3a7a77;
  --cream:     #f0e8d5;
  --cream-dim: #b8a98a;
  --border:    #3d2b1a;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--cream);
}

/* ── Header / Nav ──────────────────────────────────────────── */
.site-header {
  background-color: var(--bg-dark);
  border-bottom: 2px solid var(--brown);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-link img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .15em;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.45) saturate(.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,21,16,.3) 0%,
    rgba(26,21,16,.1) 50%,
    rgba(26,21,16,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: .35rem .75rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 7vw, 5.5rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  margin-bottom: .6rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream-dim);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: .6rem;
}

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

/* ── About Section ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-body p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}

.about-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.about-logo-display img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* ── Artist Card (Featured / Roster) ──────────────────────── */
.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.artist-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
}

.artist-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artist-card__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.artist-card__genre {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.artist-card__name {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.artist-card__bio {
  color: var(--cream-dim);
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ── Social Links ──────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: .3rem .65rem;
  border-radius: 2px;
  transition: color .2s, border-color .2s, background .2s;
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200,148,42,.08);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
}

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

/* ── Featured Artist (Homepage) ────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
}
.featured-img-wrap img {
  width: 100%;
  border-radius: 4px;
  border: 2px solid var(--border);
}
.featured-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px -8px 8px 8px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: .4;
}

.featured-body .artist-card__logo {
  height: 64px;
  margin-bottom: 1.25rem;
}

.featured-body p {
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background-color: var(--bg-dark);
  border-bottom: 2px solid var(--brown);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.page-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: .6rem auto 0;
}
.page-hero p {
  color: var(--cream-dim);
  max-width: 560px;
  margin: 1rem auto 0;
  font-style: italic;
  font-family: Georgia, serif;
}

/* ── Artists Roster Grid ────────────────────────────────────── */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ── Contact Form ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: .7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 2px;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8942a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { align-self: flex-start; }

.contact-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 2px;
}

.contact-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.contact-detail-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-detail-item .label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--cream);
  font-size: .95rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--bg-dark);
  border-top: 2px solid var(--brown);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  opacity: .85;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  font-size: .9rem;
}

.footer-contact a { color: var(--cream-dim); }
.footer-contact a:hover { color: var(--gold); }

.footer-copy {
  font-size: .78rem;
  color: var(--cream-dim);
  opacity: .6;
}

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  opacity: .3;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}
.divider span {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }
  .header-inner { height: 60px; }
  .logo-link img { height: 40px; }
  .logo-text { display: none; }

  .site-nav { gap: 1.25rem; }
  .site-nav a { font-size: .8rem; }

  .about-grid,
  .featured-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

  .featured-img-wrap::before { display: none; }

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

  .section { padding: 3.5rem 1.25rem; }

  .page-hero { padding: 3rem 1.25rem 2.5rem; }

  .hero { overflow: hidden; }
  .hero-content { padding: 1.5rem; }
  .hero h1 { font-size: clamp(1.4rem, 9vw, 3rem); letter-spacing: .02em; }

  .about-logo-display { padding: 0; }
  .about-logo-display img { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .site-nav { gap: .75rem; }
  .footer-contact { flex-direction: column; gap: .5rem; }
  .hero h1 { font-size: clamp(1.2rem, 8.5vw, 2.2rem); letter-spacing: 0; }
}
