/* ==========================
   NOSTALGIA – GLOBAL STYLES
   ========================== */

/* Colours */
:root {
  --nost-bg: #070509;
  --nost-bg-soft: #111018;
  --nost-teal: #72bcc9;
  --nost-teal-soft: #7fbec9;
  --nost-pink: #ff35b5;
  --nost-white: #ffffff;
  --nost-text-soft: #d7d7e0;
  --nost-border-soft: rgba(255, 255, 255, 0.12);
}

/* Reset-ish basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--nost-bg);
  color: var(--nost-white);
  font-size: 1.6rem;
  line-height: 1.6;
}

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

a {
  color: var(--nost-pink);
  text-decoration: none;
}

a:hover {
  color: #ffd7f4;
}

/* Utility */
.text-center {
  text-align: center;
}

/* ==========================
   HEADER & NAV
   ========================== */

.header-style-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 16px 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 5, 9, 0.9),
    rgba(7, 5, 9, 0.4),
    transparent
  );
}

.header-clear {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content-left,
.header-content-center,
.header-content-right {
  display: flex;
  align-items: center;
}

/* Logo */
.logo img {
  max-height: 72px;
}

/* Nav */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav li {
  position: relative;
}

.main-nav .menu-link {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--nost-white);
  font-weight: 500;
  padding-bottom: 4px;
}

.main-nav .menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--nost-pink);
  transition: width 0.2s ease-out;
}

.main-nav .menu-link:hover::after,
.main-nav .menu-item.current .menu-link::after {
  width: 100%;
}

.main-nav .menu-link:hover,
.main-nav .menu-item.current .menu-link {
  color: var(--nost-pink);
}

/* Mobile-ish stack */
@media (max-width: 768px) {
  .header-clear {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-nav ul {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* ==========================
   HERO – VIDEO / POSTER
   ========================== */

.content.nostalgia-landing {
  padding-top: 20;
}

/* wrapper */
.main-video {
  padding-top: 100;
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

/* video background */
.video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gradient overlay so text pops */
.image-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(114, 188, 201, 0.4), transparent 60%),
    linear-gradient(to bottom, rgba(7, 5, 9, 0.9), rgba(7, 5, 9, 0.8));
}

/* hero text */
.image-title {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 960px;
  margin-left: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.nost-tagline {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.2rem;
  color: var(--nost-pink);
  margin-bottom: 0.6rem;
}

.nost-hero-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

@media (min-width: 768px) {
  .nost-hero-title {
    font-size: 4rem;
  }
}

.nost-hero-meta {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--nost-text-soft);
  margin-bottom: 1.4rem;
}

.nost-hero-desc {
  font-size: 1.5rem;
  max-width: 680px;
  margin: 0 auto 1.8rem;
  color: var(--nost-text-soft);
}

/* buttons */
.button-basic-1 {
  display: inline-block;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 999px;
  padding: 11px 30px;
  border: 2px solid transparent;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.nost-cta-main {
  background: var(--nost-pink);
  border-color: var(--nost-pink);
  color: #000;
}

.nost-cta-main:hover {
  background: #ff5fc8;
  border-color: #ff5fc8;
  color: #000;
  transform: translateY(2px);
}

.nost-cta-secondary {
  background: transparent;
  border-color: var(--nost-pink);
  color: var(--nost-pink);
  margin-top: 1rem;
}

.nost-cta-secondary:hover {
  background: var(--nost-pink);
  color: #000;
}

/* ==========================
   ABOUT SECTION
   ========================== */

.global-block.nostalgia-about {
  padding: 80px 0;
  background: var(--nost-bg-soft);
}

.nostalgia-about .item-content {
  color: var(--nost-text-soft);
}

.nost-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.1rem;
  color: var(--nost-pink);
  margin-bottom: 0.6rem;
}

.nost-section-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

/* ==========================
   LINE-UP (LOGO GRID)
   ========================== */

.nost-lineup {
  padding: 80px 0 70px;
  background: var(--nost-teal-soft);
  color: #022027;
}

.nost-lineup .section-title h2,
.nost-lineup .section-title p {
  color: #022027;
}

.section-title {
  margin-bottom: 28px;
}

/* grid of band logos */
.nost-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.nost-logo-item {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nost-logo-item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* ==========================
   INFO CARDS
   ========================== */

.nost-info {
  padding: 80px 0;
  background: #0f0d13;
}

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

.nost-info-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid var(--nost-border-soft);
  color: var(--nost-text-soft);
  font-size: 1.4rem;
}

.nost-info-card h3 {
  color: var(--nost-white);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.nost-info-card ul {
  padding-left: 18px;
  margin: 0;
}

.nost-info-card li + li {
  margin-top: 4px;
}

.nost-ticket-card p {
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* ==========================
   CTA FINAL
   ========================== */

.nost-cta-final {
  background: var(--nost-bg);
  padding: 70px 0 90px;
  text-align: center;
}

.nost-cta-inner p {
  color: var(--nost-text-soft);
  max-width: 520px;
  margin: 0 auto 1.6rem;
}

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

.footer-style-1 {
  background: #000;
  color: var(--nost-text-soft);
  font-size: 1.3rem;
}

.footer-top {
  padding: 40px 0 30px;
}

.footer-widget h3 {
  color: var(--nost-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-widget p {
  margin: 0 0 0.6rem;
}

/* social icons */
.soc-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.soc-icon-list li {
  display: inline-block;
  margin-right: 10px;
}

.soc-icon-list a {
  color: var(--nost-white);
  font-size: 2rem;
  transition: color 0.2s ease-out;
}

.soc-icon-list a:hover {
  color: var(--nost-pink);
}


/* ==========================
   RESPONSIVE ADJUSTMENTS
   ========================== */

@media (max-width: 768px) {
  .main-video {
    height: 80vh;
  }

  .global-block.nostalgia-about,
  .nost-lineup,
  .nost-info,
  .nost-cta-final {
    padding: 50px 0;
  }

  .nost-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
/* --- OVERRIDE AOS HIDING THINGS --- */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
/* ============================
   NOSTALGIA — ABOUT SECTION FIXES
   ============================ */

/* Make "About the night" label more visible */
.nost-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff55bb;
    margin-bottom: 12px;
}

/* Make About section title bigger */
.nost-section-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Increase paragraph readability */
.nostalgia-about p {
    font-size: 18px;
    line-height: 1.6;
    color: #e5e5e5;
}

/* Adjust ABOUT section layout */
.nostalgia-about .item-content {
    padding: 20px 10px;
}

/* Right-side image — small and aligned */
.nostalgia-about .img-header img {
    max-width: 360px;
    width: 100%;
    display: block;
    float: right;
    border-radius: 10px;
}

/* Add consistent spacing */
.nostalgia-about .row {
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* ============================
   HERO HEADING & TAGLINE
   ============================ */

.nost-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.nost-hero-meta {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.nost-hero-desc {
    font-size: 20px;
    line-height: 1.6;
    max-width: 720px;
}

/* ============================
   LINEUP HEADING FIX
   ============================ */

.nost-lineup .nost-section-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.nost-lineup .nost-label {
    font-size: 14px;
    letter-spacing: 2px;
}

/* Remove accidental dark block that covered hero text */
.main-video {
    position: relative;
    overflow: hidden;
    height: 95vh;
}


.main-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure hero text appears ABOVE video */
.image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

/* ============================
   FINAL NOSTALGIA TWEAKS
   ============================ */

/* HERO – bring back overlay but keep text visible */
.main-video {
  position: relative;
  height: 95vh;
  min-height: 560px;
  overflow: hidden;
}

.main-video .video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.main-video #myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark gradient overlay on video */
.main-video .image-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(114, 188, 201, 0.35), transparent 70%),
    linear-gradient(to bottom, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.92), transparent 30%);
}

/* hero text on top of overlay */
.image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

/* make hero heading + meta bigger */
.nost-hero-title {
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.nost-hero-meta {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 18px;
}

/* ABOUT / LINEUP LABELS + TITLES BIGGER */
.nost-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ff55bb;
  margin-bottom: 10px;
}

.nost-section-title {
  font-size: 3.6rem;
  line-height: 1.3;
  font-weight: 700;
}

/* lineup heading specifically */
.nost-lineup .nost-section-title {
  font-size: 4rem;
}

/* ABOUT PARAGRAPHS & BUTTON ALIGN */
.nostalgia-about p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e5e5e5;
}

/* centre the Get Tickets button in About */
.nostalgia-about .item-content a.nost-cta-secondary {
  display: block;
  width: max-content;
  margin: 24px auto 0;
}

/* smaller poster image on the right */
.nostalgia-about .img-header img {
  max-width: 360px;
  width: 100%;
  border-radius: 10px;
}

/* make sure about section content sits nicely */
.nostalgia-about .row {
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* BAND LOGO GRID – FIXED COLUMNS ON DESKTOP */
.nost-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)); /* always 6 cols on desktop */
  gap: 18px;
}

.nost-logo-item {
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* keep logos tidy on smaller screens */
@media (max-width: 1024px) {
  .nost-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nost-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ============================
   HERO – FINAL LAYOUT
   ============================ */

/* Fullscreen-ish hero */
.main-video {
  position: relative;
  height: 90vh;          /* almost fullscreen */
  min-height: 560px;
  overflow: hidden;
}

/* Video / background image */
.main-video .video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.main-video #myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay so text is easy to read */
.main-video .image-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(114, 188, 201, 0.35), transparent 60%),
    linear-gradient(to bottom, rgba(7, 5, 9, 0.96), rgba(7, 5, 9, 0.92));
}

/* Text block sits above everything, perfectly centred */
.image-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centre */
  align-items: center;       /* horizontal centre */
  text-align: center;
  padding: 0 24px;
}

/* Hero text sizing */
.nost-tagline {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.2rem;
  color: #ff55bb;
  margin-bottom: 8px;
}

.nost-hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
}

.nost-hero-meta {
  font-size: 1.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nost-hero-desc {
  font-size: 1.8rem;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Slightly smaller on narrow screens so it doesn’t feel cramped */
@media (max-width: 768px) {
  .nost-hero-title {
    font-size: 3.4rem;
  }

  .nost-hero-meta {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }

  .nost-hero-desc {
    font-size: 1.6rem;
  }
}
/* ============================
   HERO VIDEO AS GREETING
   ============================ */

.main-video {
  position: relative;
  height: 70vh;          /* video height */
  min-height: 420px;
  overflow: hidden;
}

.main-video .video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.main-video #myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark overlay ON the video */
.main-video .video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(114, 188, 201, 0.35), transparent 99%),
    linear-gradient(to bottom, rgba(7, 5, 9, 0.9), rgba(7, 5, 9, 0.95));
}

/* ============================
   INTRO COPY UNDER VIDEO
   ============================ */

.nost-intro {
  background: #070509;
}

.nost-intro .image-title {
  position: static;            /* stop it overlaying the video */
  transform: none;
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 40px;
  text-align: center;
}

/* tagline / headings / body copy */
.nost-tagline {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.2rem;
  color: #ff55bb;
  margin-bottom: 8px;
}

.nost-hero-title {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
}

.nost-hero-meta {
  font-size: 1.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nost-hero-desc {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* centre the main CTA */
.nost-intro .nost-cta-main {
  display: inline-block;
}

/* make sure AOS doesn't hide this */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .nost-hero-title {
    font-size: 3.4rem;
  }

  .nost-hero-meta {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }

  .nost-hero-desc {
    font-size: 1.6rem;
  }

  .nost-intro .image-title {
    padding: 40px 16px 32px;
  }
}
/* ============================
   HERO VIDEO TWEAKS
   ============================ */

/* make the video section basically fullscreen */
.main-video {
  position: relative;
  height: 100vh;      /* full viewport height */
  min-height: 620px;  /* keeps it tall on laptops */
  overflow: hidden;
}

/* ensure the video fills the area properly */
.main-video .video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.main-video #myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* lighter overlay so we actually see the video/artwork */
.main-video .video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top, rgba(114, 188, 201, 0.18), transparent 60%),
    linear-gradient(to bottom, rgba(7, 5, 9, 0.45), rgba(7, 5, 9, 0.7));
}

/* keep the intro section starting just below the video */
.nost-intro {
  background: #070509;
  padding-top: 40px;
}
/* Global horizontal spacing */
.container {
  max-width: 1180px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
  /* or simply: margin: 0 auto; */

}
/* Make secondary CTA visually match main CTA */
.button-basic-1.nost-cta-secondary {
  background: transparent;
  border: 2px solid #ff55bb;
  color: #ff55bb;
  border-radius: 999px;
  padding: 10px 30px;
  font-weight: 600;
}

.button-basic-1.nost-cta-secondary:hover {
  background: #ff55bb;
  color: #070509;
}
/* ============================
   WHAT TO EXPECT SECTION
   ============================ */

.nost-expect {
  background: #070509;
  padding: 60px 0;
}

.nost-expect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.nost-expect-col {
  flex: 1 1 0;
  min-width: 280px;
}

/* Video block */
.nost-expect-video video {
  width: 100%;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Copy block */
.nost-expect-copy {
  max-width: 520px;
}

.nost-expect-copy p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e5e5e5;
  margin-bottom: 14px;
}

.nost-expect-copy ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.nost-expect-copy li {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

/* Stack vertically on smaller screens */
@media (max-width: 900px) {
  .nost-expect-row {
    flex-direction: column;
  }

  .nost-expect-copy {
    max-width: 100%;
  }
}
/* Footer social icons */
.soc-icon-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 16px;
}

.soc-icon-list li {
  display: inline-block;
}

.soc-icon-list a {
  color: var(--nost-white);
  font-size: 2.2rem;  /* bigger icons */
  transition: color 0.2s ease-out;
}

.soc-icon-list a:hover {
  color: var(--nost-pink);
}
/* Footer social icons */
.soc-icon-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 16px;
}

.soc-icon-list li {
  display: inline-block;
}

.soc-icon-list a {
  color: var(--nost-white);
  font-size: 2.2rem;
  transition: color 0.2s ease-out;
}

.soc-icon-list a:hover {
  color: var(--nost-pink);
}

/* Footer social icons */
.soc-icon-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 12px;
}

.soc-icon-list li {
  display: inline-block;
}

.soc-icon-list a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--nost-white);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.soc-icon-list a:hover {
  background: var(--nost-pink);
  color: #070509;
  border-color: var(--nost-pink);
}
/* ============================
   FOOTER SOCIAL ICONS — GRUNGE BADGES
   ============================ */

.soc-icon-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 14px;
}

.soc-icon-list li {
  display: inline-block;
}

.soc-icon-list a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

.soc-icon-list a:hover {
  background: #ff55bb;
  border-color: #ff55bb;
  color: #070509;
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255, 85, 187, 0.6);
}
/* Center the footer content */
.footer-style-1 .footer-top .row > div {
  text-align: center;
}

/* Center the social icons row */
.footer-style-1 .soc-icon-list {
  justify-content: center;
}
/* ============================
   ABOUT PAGE LAYOUT
   ============================ */

.about-page .nost-page-hero {
  background: #070509;
  padding: 140px 0 80px;
}

.about-page .nost-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-page .nost-page-hero-copy {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--nost-text-soft);
  margin-top: 12px;
}

/* shared section wrapper on About */
.about-content .nost-section {
  padding: 70px 0;
  background: #070509;
}

.about-content .nost-section:nth-of-type(2n) {
  background: #111018; /* subtle alternation */
}

/* simple grid for cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.about-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid var(--nost-border-soft);
  padding: 22px 22px 20px;
  color: var(--nost-text-soft);
  font-size: 1.5rem;
}

.about-card h3 {
  margin: 0 0 4px;
  font-size: 1.8rem;
  color: var(--nost-white);
}

.about-role {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  color: var(--nost-teal);
}

/* bullet list style */
.nost-bullet-list {
  padding-left: 18px;
  margin: 0 0 10px;
}

.nost-bullet-list li {
  margin-bottom: 6px;
  font-size: 1.5rem;
  color: var(--nost-text-soft);
}

.nost-small-note {
  font-size: 1.2rem;
  color: #9a9ab0;
  margin-top: 4px;
}

/* tighten CTA spacing when reused on About */
.about-page .about-cta {
  padding-top: 60px;
}

/* About page responsive */
@media (max-width: 768px) {
  .about-page .nost-page-hero {
    padding: 120px 0 60px;
  }

  .about-content .nost-section {
    padding: 50px 0;
  }
}
/* ============================
   ABOUT — BAND MEMBER IMAGES
   ============================ */

/* ============================
   ABOUT — FIXED 3-COLUMN BAND GRID
   ============================ */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 columns */
  gap: 22px;
}

@media (max-width: 600px) {
  /* On very small screens, shrink spacing so the layout still fits comfortably */
  .about-grid {
    gap: 14px;
  }
}
/* ============================
   ABOUT — BAND IMAGES: GREYSCALE → COLOUR HOVER
   ============================ */

.about-card-image img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
}

.about-card:hover .about-card-image img {
  filter: grayscale(0%);
  transform: scale(1.03); /* subtle zoom-in */
}
.about-card:hover {
  box-shadow: 0 0 14px rgba(255, 85, 187, 0.4);
}
/* Make entire band card clickable */
.about-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-card-link:hover .about-card {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

/* Maintain your grayscale → colour hover */
.about-card-link:hover .about-card-image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
/* ============================
   MERCH — COMING SOON PAGE
   ============================ */

.merch-coming-soon {
  background: #070509;
  padding: 160px 0 120px;
  text-align: center;
}

.merch-coming-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.merch-tagline {
  font-size: 1.8rem;
  color: var(--nost-text-soft);
  margin-bottom: 12px;
}

.merch-large {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff55bb;
  margin-top: 10px;
}
/* ==========================================
   MERCH — GLITCH + TYPEWRITER + NEON FLICKER
   ========================================== */

.glitch-type {
  font-family: "Montserrat", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff55bb;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;

  /* KEY: start width at 0 or animation won't show */
  width: 0;

  animation:
    typewriter 1.8s steps(12) 0.4s forwards,
    neonPulse 2.5s infinite ease-in-out 2.4s;
}

/* TYPEWRITER EFFECT */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

/* NEON FLICKER / GLOW */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 8px #ff55bb, 0 0 18px #ff55bb; }
  50% { text-shadow: 0 0 3px #ff55bb, 0 0 7px #ff55bb; }
}

/* GLITCH SHADOW COPY */
.glitch-type::after {
  content: "Coming Soon";
  position: absolute;
  left: 3px;
  top: 0;
  color: #ff55bb;
  opacity: 0.35;
  clip-path: inset(0 0 48% 0);
  animation: glitchShift 0.7s infinite;
}

@keyframes glitchShift {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(2px, 0); }
  100% { transform: translate(0); }
}
/* Ensure all ticket buttons remain styled even with onclick attributes */
a.button-basic-1,
a.nost-cta-main,
.button-basic-1.nost-cta-main {
  display: inline-block;
  text-decoration: none;
}
/* ============================
   MOBILE TWEAKS
   ============================ */

/* General text + section sizing on small screens */
@media (max-width: 768px) {
  .nost-section-title {
    font-size: 2.6rem;
  }

  .nost-hero-title {
    font-size: 3.2rem;
  }

  .nost-hero-desc {
    font-size: 1.5rem;
  }

  .nost-expect {
    padding: 40px 0;
  }
}

/* Band grid: 2 columns on small, 1 column on very small */
@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Merch "coming soon" – reduce massive padding on phones */
@media (max-width: 640px) {
  .merch-coming-soon {
    padding: 120px 16px 80px;
  }

  .merch-large {
    font-size: 3.2rem;
  }
}

/* Footer – give it breathing room on mobile */
@media (max-width: 640px) {
  .footer-top {
    padding: 30px 0 24px;
  }

  .footer-style-1 .footer-top .row > div {
    margin-bottom: 18px;
  }
}


/* =====================================
   ABOUT SECTION — DESKTOP LAYOUT FIX
   ===================================== */

@media (min-width: 900px) {
  /* make the row a proper flex row */
  .nostalgia-about .row {
    display: flex;
    align-items: center;          /* vertical centre */
    justify-content: space-between;
    gap: 48px;                    /* space between text + image */
  }

  /* kill Bootstrap floats so flex can take over */
  .nostalgia-about .col-md-5,
  .nostalgia-about .col-md-7 {
    float: none;
    width: auto;
  }

  /* text column: left */
  .nostalgia-about .col-md-7 {
    order: 1;                     /* text first */
    flex: 1 1 0;
  }

  /* image column: right */
  .nostalgia-about .col-md-5 {
    order: 2;                     /* image second */
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
  }

  /* poster styling + extra breathing room */
  .nostalgia-about .img-header img {
    float: none;                  /* override old float:right */
    max-width: 380px;
    width: 100%;
    border-radius: 12px;
    margin-left: 24px;            /* extra space away from text */
  }
}
/* ============================
   SHOW PAGE – ZIGZAG LAYOUT
   ============================ */

.show-page {
  padding: 90px 0;
}

.show-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.show-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.show-text p {
  font-size: 1.6rem;
  color: var(--nost-text-soft);
}

.show-text ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.show-text li {
  font-size: 1.55rem;
  margin-bottom: 6px;
  color: #d0d0d0;
}

/* Mobile: stack nicely */
@media (max-width: 900px) {
  .show-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-image img {
    max-width: 100%;
  }

  .show-text {
    width: 100%;
  }
}
