/* ---------------------------------
   Nick McGinnis Music
   Homepage
---------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #080808;
  color: #f3f0e8;
}


/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #080808;
  overflow: hidden;
}


/* LEFT SIDE */

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 6vw;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(201, 164, 93, 0.07),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #050505 0%,
      #111111 100%
    );
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c9a45d;
}

h1 {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.tagline {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  color: #d7d2c8;
}


/* BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-block;
  min-width: 180px;
  padding: 14px 22px;
  border: 1px solid #c9a45d;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #c9a45d;
  color: #090909;
}

.button.primary:hover {
  background: #ddbd78;
}

.button.secondary {
  background: transparent;
  color: #f3f0e8;
}

.button.secondary:hover {
  background: rgba(201, 164, 93, 0.1);
}


/* RIGHT-SIDE PERFORMANCE PHOTO */

.hero-image-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #080808;
}

.hero-image {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;

  /*
     This controls which part of Nick stays visible.
     We'll fine-tune it after seeing the result.
  */
  object-position: 50% 30%;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  /*
     Softly blends the photograph into the black
     text column without covering Nick.
  */
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.75) 0%,
      rgba(8, 8, 8, 0.18) 18%,
      rgba(8, 8, 8, 0) 40%
    );

  pointer-events: none;
}

/* INTRO / ABOUT */

.intro {
  background:
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #111111 100%
    );
  padding: 96px 24px;
  border-top: 1px solid rgba(201, 164, 93, 0.14);
}

.intro-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #c9a45d;
}

.intro h2 {
  margin: 0 0 28px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.intro p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #cfcac0;
}

.intro .intro-lead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: #f0ece3;
}

.intro .intro-quote {
  margin: 32px 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  color: #c9a45d;
}

/* FEATURED PERFORMANCES */

.performances {
  background:
    linear-gradient(
      180deg,
      #111111 0%,
      #080808 100%
    );
  padding: 72px 24px 100px;
  border-top: 1px solid rgba(201, 164, 93, 0.14);
}

.performances-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.section-heading > p:last-child {
  margin: 0;
  color: #cfcac0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.performance-card {
  background: #101010;
  border: 1px solid rgba(201, 164, 93, 0.16);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.performance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 93, 0.45);
}

.performance-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.performance-image-nirvana {
  object-position: 50% 28%;
}

.performance-image-time {
  object-position: 50% 30%;
}

.performance-image-journey {
  object-position: 50% 30%;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #1a1a1a,
      #090909
    );
  color: #77736b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.performance-card-content {
  padding: 24px;
}

.performance-meta {
  margin: 0 0 10px;
  color: #c9a45d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.performance-card h3 {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
}

.performance-artist {
  margin: 8px 0 22px;
  color: #aaa59c;
  font-size: 0.95rem;
}

.performance-link {
  display: inline-block;  
  color: #f3f0e8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.performance-link:hover {
  color: #c9a45d;
}

/* VIDEO MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(201, 164, 93, 0.4);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(201, 164, 93, 0.55);
  border-radius: 50%;
  background: #101010;
  color: #f3f0e8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.video-modal-close:hover {
  background: #c9a45d;
  color: #090909;
}

body.modal-open {
  overflow: hidden;
}

/* TABLET + MOBILE */

@media (max-width: 900px) {

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-image-wrap {
    order: 1;
    width: 100%;
    min-height: 55vh;
    height: 55vh;
  }

  .hero-image {
    width: 100%;
    height: 55vh;
    object-fit: cover;
    object-position: 50% 28%;
  }

  .hero-image-wrap::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0) 55%,
        rgba(8, 8, 8, 0.9) 100%
      );
  }

  .hero-copy {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 44px 24px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .intro {
    padding: 76px 24px;
  }

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

  .performances {
    padding: 76px 24px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .performance-image {
    height: 280px;
  }

}

/* SMALL PHONES */

@media (max-width: 600px) {

  .hero-image-wrap,
  .hero-image {
    height: 48vh;
    min-height: 48vh;
  }

  .hero-copy {
    padding: 38px 20px 50px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.7rem);
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .performance-image {
  height: 240px;
}

}

/* =========================
   SITE HEADER / NAVIGATION
   ========================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-nav {
  width: 100%;
  height: 84px;
  margin: 0;
  padding: 0 clamp(24px, 3vw, 48px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: auto;
  height: clamp(56px, 4.5vw, 64px);
  object-fit: contain;
}

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

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;

  background: #d4af37;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile navigation */

@media (max-width: 700px) {

  html {
    scroll-padding-top: 74px;
  }

  .site-nav {
    height: 68px;
    padding: 0 20px;
  }

  .site-logo img {
    height: 44px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 440px) {

  .site-nav {
    padding: 0 16px;
  }

  .site-logo img {
    height: 40px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.57rem;
    letter-spacing: 0.08em;
  }
}

/* =========================
   FOLLOW NICK
   ========================= */

.follow {
  padding: 96px 24px 110px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 164, 93, 0.07),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #080808 0%,
      #101010 100%
    );
  border-top: 1px solid rgba(201, 164, 93, 0.14);
}

.follow-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
  text-align: center;
}

.follow h2 {
  margin: 0 0 20px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.follow-intro {
  max-width: 650px;
  margin: 0 auto 48px;
  color: #cfcac0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  position: relative;
  min-height: 150px;
  padding: 30px 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #0d0d0d;
  border: 1px solid rgba(201, 164, 93, 0.22);
  border-radius: 16px;

  color: #f3f0e8;
  text-align: left;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 93, 0.65);
  background: #121212;
}

.social-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.social-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;

  color: #c9a45d;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.social-handle {
  color: #aaa59c;
  font-size: 0.88rem;
}

.social-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: #c9a45d;
  font-size: 1.2rem;
}

/* Follow Nick mobile */

@media (max-width: 700px) {

  .follow {
    padding: 76px 20px 86px;
  }

  .follow-intro {
    margin-bottom: 34px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 125px;
  }
}

/* =========================
   SITE FOOTER
   ========================= */

.site-footer {
  padding: 54px clamp(24px, 3vw, 48px) 28px;
  background: #050505;
  border-top: 1px solid rgba(201, 164, 93, 0.18);
}

.footer-inner {
  width: 100%;
  margin: 0 auto 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.footer-brand-copy p {
  margin: 0;
}

.footer-name {
  margin-bottom: 6px !important;

  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #f3f0e8;
}

.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #aaa59c;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-social a {
  position: relative;

  color: #d7d2c8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: #c9a45d;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: #8a857c;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}


/* Footer mobile */

@media (max-width: 700px) {

  .site-footer {
    padding: 44px 24px 26px;
  }

  .footer-inner {
    margin-bottom: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-logo img {
    height: 48px;
  }

  .footer-social {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   INTERMEDIATE DESKTOP HERO
   ========================= */

@media (min-width: 901px) and (max-width: 1250px) {

  .hero-copy {
    padding-left: clamp(32px, 5vw, 56px);
    padding-right: clamp(32px, 5vw, 56px);
  }

  .hero-buttons {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .hero-buttons .button {
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: nowrap;
  }
}

/* =========================
   ACCESSIBILITY / KEYBOARD FOCUS
   ========================= */

.site-logo:focus-visible,
.nav-links a:focus-visible,
.button:focus-visible,
.performance-card:focus-visible,
.social-card:focus-visible,
.footer-logo:focus-visible,
.footer-social a:focus-visible,
.video-modal-close:focus-visible {
  outline: 2px solid #c9a45d;
  outline-offset: 4px;
}

.nav-links a:focus-visible {
  color: #d4af37;
}

.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.performance-card:focus-visible,
.social-card:focus-visible {
  border-color: rgba(201, 164, 93, 0.75);
}

/* =========================
   ACCESSIBILITY / REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .button,
  .performance-card,
  .social-card,
  .nav-links a,
  .nav-links a::after,
  .footer-social a {
    transition: none;
  }

  .button:hover,
  .performance-card:hover,
  .social-card:hover {
    transform: none;
  }
}

/* =========================
   ACCESSIBILITY / SKIP LINK
   ========================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;

  padding: 10px 16px;

  background: #c9a45d;
  color: #080808;

  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;

  border-radius: 6px;

  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}