/* =========================================================
   Nolan Pike — Modern Country / Cinematic Onepager
   Video removed, global background + scroll snap
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #f4f1ec;
  line-height: 1.6;

  /* Global background image for entire page */
  background-image: url("assets/hero-montana.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  /* Scroll snap */
  scroll-snap-type: y proximity;
  overflow-y: auto;
}

/* Soft overlay for legibility across the entire page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 13, 11, 0.50),
    rgba(14, 13, 11, 0.88)
  );
  pointer-events: none;
  z-index: -1;
}

/* iOS / mobile performance: fixed background can be janky */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* ------------------------------
   Accessibility
-------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: #f4f1ec;
  color: #0e0d0b;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus {
  top: 1rem;
}

/* =========================================================
   Scroll Snap Targets
   ========================================================= */

.snap {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* Avoid snapping for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { scroll-snap-type: none; }
  .snap { scroll-snap-align: none; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* =========================================================
   Typography
   ========================================================= */

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  margin: 0 0 1rem;
}

.tagline {
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.big {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  margin: 0.25rem 0 0.75rem;
}

.muted {
  opacity: 0.78;
}

/* =========================================================
   Glass Panels
   ========================================================= */

.glass-panel {
  max-width: 720px;
  padding: clamp(1.6rem, 4vw, 2.75rem);
  background: rgba(18, 16, 13, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.glass-panel.wide {
  max-width: 900px;
}

/* Hero animation */
.fade-in {
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
}

/* =========================================================
   Buttons
   ========================================================= */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #c48a52;
  color: #0e0d0b;
}

.btn-primary:hover {
  background: #d39a63;
}

.btn-disabled {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

/* =========================================================
   Scroll Indicator (button)
   ========================================================= */

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-align: center;
  padding: 0.5rem 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.scroll-indicator:focus {
  outline: 2px solid rgba(196, 138, 82, 0.7);
  outline-offset: 4px;
  border-radius: 10px;
}

.scroll-indicator .line {
  width: 1px;
  height: 28px;
  margin: 0.5rem auto 0;
  background: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Sections / Layout
   ========================================================= */

main {
  position: relative;
}

.section {
  min-height: 100vh;              /* makes snapping feel intentional */
  padding: clamp(4rem, 10vw, 7rem) 1rem;
  display: flex;
  align-items: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.split {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* =========================================================
   Artist Image (Mockup-sized)
   ========================================================= */

.artist-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
  .artist-image img {
    max-width: 320px;
  }
}

/* =========================================================
   Footer
   ========================================================= */

footer {
  padding: 3rem 1rem;
  background: rgba(11, 10, 9, 0.78);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer a {
  color: #c48a52;
  text-decoration: none;
  letter-spacing: 0.1em;
}

footer p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.65;
}