/* RioAction CSS (v68 refactored) */

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

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #06070b;
  --ink: #f2f4ff;
  --gold: #ffb000;
  --gold2: #ff7a00;
  --line: rgba(255, 255, 255, .28);
  --glass: rgba(10, 12, 18, .78);
  --r: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .62);
}

/* ===== CSS RESET ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.35
}

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

/* ===== LAYOUT ===== */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px
}

.clear {
  clear: both
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 28px 0 10px;
  background:
    radial-gradient(900px 520px at 25% 0%, rgba(255, 176, 0, .38), transparent 58%),
    radial-gradient(900px 520px at 80% 0%, rgba(124, 92, 255, .42), transparent 60%),
    linear-gradient(180deg, rgba(6, 7, 11, .75), rgba(6, 7, 11, .95));
  animation: gradientShift 8s ease-in-out infinite;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 176, 0, .25) 0%, transparent 70%);
  animation: floatingGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.heroCard {
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(10, 12, 18, .72);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden
}

.heroInner {
  position: relative;
  padding: 22px 18px 18px;
  text-align: center
}

.heroLogo {
  width: 118px;
  height: 118px;
  margin: 14px auto 6px;
  border-radius: 999px;
  background: url("../images/asset-b9bed20ace.jpg") center/cover no-repeat;
  border: 2px solid rgba(255, 176, 0, .85);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .75), 0 0 0 10px rgba(255, 176, 0, .25), 0 0 40px rgba(255, 176, 0, .40);
  animation: logoPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.heroLogo:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .75), 0 0 0 10px rgba(255, 176, 0, .25), 0 0 60px rgba(255, 176, 0, .4);
}

@media (max-width:520px) {
  .heroLogo {
    width: 104px;
    height: 104px;
  }
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(6, 7, 11, .65);
  font-weight: 900;
  letter-spacing: .8px;
  font-size: 16px;
  animation: floatBadge 3s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.h1 {
  margin: 14px 0 6px;
  font-size: 64px;
  letter-spacing: 1px;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .5), 0 0 30px rgba(255, 176, 0, .15);
}

@media (max-width:520px) {
  .h1 {
    font-size: 50px
  }
}

.image-title {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .5)) drop-shadow(0 0 30px rgba(255, 176, 0, .15));
}

@media (max-width:520px) {
  .image-title {
    max-height: 60px;
  }
}

.genre {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(255, 176, 0, .3);
}

/* ===== BUTTONS ===== */
.btnRow {
  margin-top: 16px
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .30);
  background: rgba(6, 7, 11, .68);
  margin: 8px 6px 0;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(255, 176, 0, .98), rgba(255, 122, 0, .88));
  color: #0b0b10;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 18px rgba(255, 176, 0, .20);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn:hover {
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.btn.primary:hover {
  box-shadow: 0 22px 54px rgba(0, 0, 0, .55), 0 0 40px rgba(255, 176, 0, .45);
  transform: translateY(-4px) scale(1.03);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Active nav state */
.btn.active {
  border-color: var(--gold);
  background: rgba(255, 176, 0, .15);
  color: var(--gold);
}

/* Brand treatments for buttons */
.btn.fb {
  color: #cfe0ff;
  border-color: rgba(24, 119, 242, .42);
  background: linear-gradient(135deg, rgba(24, 119, 242, .34), rgba(24, 119, 242, .18));
}

.btn.yt {
  color: #ffd0d0;
  border-color: rgba(255, 0, 0, .40);
  background: linear-gradient(135deg, rgba(255, 0, 0, .30), rgba(255, 0, 0, .14));
}

.btn.sc {
  color: #ffe3c7;
  border-color: rgba(255, 85, 0, .42);
  background: linear-gradient(135deg, rgba(255, 85, 0, .30), rgba(255, 85, 0, .14));
}

/* ===== MOBILE HAMBURGER NAVIGATION ===== */
.hamburger-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(6, 7, 11, .65);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-btn:hover {
  background: rgba(6, 7, 11, .85);
  border-color: var(--gold);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  background: linear-gradient(135deg, rgba(10, 12, 18, .98), rgba(6, 7, 11, .98));
  border-left: 1px solid rgba(255, 255, 255, .18);
  box-shadow: -10px 0 40px rgba(0, 0, 0, .6);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-nav-links {
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 20px;
  background: rgba(6, 7, 11, .65);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: var(--ink);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  background: rgba(6, 7, 11, .85);
  border-color: rgba(255, 255, 255, .28);
  transform: translateX(-4px);
}

.mobile-nav-link.active {
  border-color: var(--gold);
  background: rgba(255, 176, 0, .15);
  color: var(--gold);
}

/* Show hamburger menu on mobile, hide desktop nav and back button */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .btnRow {
    display: none !important;
  }

  .back-btn-positioned {
    display: none !important;
  }
}

/* ===== SECTIONS ===== */
.strip {
  padding: 16px 0 6px;
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.strip .wrap {
  text-align: center
}

.kicker {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(242, 244, 255, .90);
}

.kicker-link {
  display: block;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.kicker-link:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 176, 0, .4);
}

.smallK {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(242, 244, 255, .85);
}

.section {
  padding: 14px 0 26px
}

.card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 12, 18, .62);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .40);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .50);
}

.muted {
  color: rgba(242, 244, 255, .82);
}

/* ===== GRID ===== */
.grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 14px;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.col {
  padding: 10px;
  box-sizing: border-box;
}

.col.third {
  width: 33.3333%;
  display: flex;
}

@media (max-width:900px) {
  .col.third {
    width: 100%;
    margin-top: 12px
  }
}

/* ===== TILES ===== */
.tile {
  border-radius: 22px;
  border: 1px solid rgba(255, 176, 0, .55);
  background: rgba(10, 12, 18, .62);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .40);
  overflow: hidden;
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .50), 0 0 20px rgba(255, 176, 0, .12);
  border-color: rgba(255, 176, 0, .75);
}

.tileHead {
  padding: 14px 14px 10px;
  text-align: center;
  flex: 1 1 auto;
}

.dateBig {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 30px;
  margin: 6px 0 0;
  color: var(--gold);
  text-transform: uppercase;
}

.venue {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 30px;
  color: rgba(242, 244, 255, .88);
  margin: 10px 0 10px;
}

.timePill {
  display: inline-block;
  margin: 4px 4px 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 92, 255, .16);
  border: 1px solid rgba(124, 92, 255, .34);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 16px;
}

.tagPill {
  display: inline-block;
  margin: 4px 4px 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(76, 175, 80, .16);
  border: 1px solid rgba(76, 175, 80, .34);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 16px;
  color: rgba(142, 230, 145, .95);
}

.upcoming-tag {
  display: inline-block;
  margin: 4px 4px 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(76, 175, 80, .16);
  border: 1px solid rgba(76, 175, 80, .34);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 12px;
  color: rgba(142, 230, 145, .95);
}

/* ===== FOOTER ===== */
.footer {
  padding: 24px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(6, 7, 11, .92), rgba(3, 4, 6, 1));
  color: rgba(242, 244, 255, .70);
  font-size: 16px;
}

.footer a {
  text-decoration: underline;
  transition: color 0.25s ease;
}

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

.footer-copyright {
  margin-top: 12px;
  font-size: 16px;
  opacity: 0.6;
}

/* ===== SOCIAL LINKS (Option A) ===== */
.socialA {
  max-width: 980px;
  margin: 16px auto 0;
  text-align: center;
}

.fbHero {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding: 16px 14px 14px;
  border-radius: 26px;
  border: 1px solid rgba(24, 119, 242, .60);
  background: linear-gradient(135deg, rgba(24, 119, 242, .48), rgba(24, 119, 242, .28));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .42);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fbHero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .60), 0 0 32px rgba(24, 119, 242, .4);
  border-color: rgba(24, 119, 242, .65);
}

.fbHero .ico {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(0, 0, 0, .35);
  line-height: 72px;
  transition: transform 0.3s ease;
}

.fbHero:hover .ico {
  transform: rotate(5deg) scale(1.05);
}

.fbHero svg {
  width: 40px;
  height: 40px;
  margin-top: 16px;
  fill: #cfe0ff;
}

.fbHero .lab {
  display: block;
  font-weight: 900;
  font-size: 16px;
  color: rgba(242, 244, 255, .98);
  text-transform: uppercase;
}

@media (max-width:820px) {
  .fbHero {
    width: 72%;
  }
}

@media (max-width:700px) {
  .fbHero {
    width: 100%;
  }
}

.groupRow {
  margin-top: 14px;
  font-size: 0;
}

.groupCard {
  display: inline-block;
  width: 48%;
  margin: 0 1%;
  padding: 14px 14px 12px;
  vertical-align: top;
  position: relative;
}

@media (max-width:700px) {
  .groupCard {
    width: 100%;
    margin: 10px 0 0;
  }
}

.gTitle {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(242, 244, 255, .88);
  margin-bottom: 10px;
}

.gBtns {
  font-size: 0;
}

.gBtn {
  display: inline-block;
  width: 46%;
  margin: 0 2% 16px;
  padding: 16px 10px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(10, 12, 18, .70);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.gBtn:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(255, 255, 255, .38);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
}

.gBtn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gBtn .ico {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(0, 0, 0, .35));
  line-height: 64px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .1);
  transition: transform 0.3s ease;
}

.gBtn:hover .ico {
  transform: rotate(5deg) scale(1.05);
}

.gBtn svg {
  width: 34px;
  height: 34px;
  margin-top: 14px;
  fill: currentColor;
}

.gBtn .lab {
  display: block;
  font-weight: 900;
  font-size: 14px;
  color: rgba(242, 244, 255, .98);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  margin-top: 2px;
  text-transform: uppercase;
}

@media (max-width:520px) {
  .gBtn {
    width: 100%;
    margin: 0 0 18px;
  }
}

/* Brand treatments for social buttons */
.gBtn.ig {
  color: #ffd2f0;
  border-color: rgba(225, 48, 108, .55);
  background: linear-gradient(135deg, rgba(131, 58, 180, .48), rgba(253, 29, 29, .38), rgba(252, 176, 69, .35));
  box-shadow: 0 4px 12px rgba(131, 58, 180, .2);
}

.gBtn.ig:hover {
  box-shadow: 0 8px 28px rgba(131, 58, 180, .45), 0 0 24px rgba(225, 48, 108, .35);
}

.gBtn.x {
  color: #e9f0ff;
  border-color: rgba(255, 255, 255, .40);
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .14));
  box-shadow: 0 4px 12px rgba(255, 255, 255, .15);
}

.gBtn.x:hover {
  box-shadow: 0 8px 28px rgba(255, 255, 255, .3);
}

.gBtn.yt {
  color: #ffd0d0;
  border-color: rgba(255, 0, 0, .60);
  background: linear-gradient(135deg, rgba(255, 0, 0, .45), rgba(255, 0, 0, .24));
  box-shadow: 0 4px 12px rgba(255, 0, 0, .2);
}

.gBtn.yt:hover {
  box-shadow: 0 8px 28px rgba(255, 0, 0, .45), 0 0 24px rgba(255, 0, 0, .35);
}

.gBtn.sc {
  color: #ffe3c7;
  border-color: rgba(255, 85, 0, .62);
  background: linear-gradient(135deg, rgba(255, 85, 0, .45), rgba(255, 85, 0, .24));
  box-shadow: 0 4px 12px rgba(255, 85, 0, .2);
}

.gBtn.sc:hover {
  box-shadow: 0 8px 28px rgba(255, 85, 0, .45), 0 0 24px rgba(255, 85, 0, .35);
}

/* ===== UPCOMING GIGS PREVIEW ===== */
.upcoming-preview {
  padding: 24px 0 18px;
}

.upcoming-preview .kicker {
  text-align: center;
  margin-bottom: 16px;
}

.upcoming-gigs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .upcoming-gigs-grid {
    grid-template-columns: 1fr;
  }
}

.upcoming-gig-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 176, 0, .65);
  background: rgba(10, 12, 18, .68);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-gig-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 176, 0, .75);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), 0 0 24px rgba(255, 176, 0, .25);
}

.upcoming-date {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(255, 176, 0, .3);
}

.upcoming-venue {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: rgba(242, 244, 255, .98);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.upcoming-time {
  display: inline-block;
  margin: 8px 4px 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 92, 255, .16);
  border: 1px solid rgba(124, 92, 255, .34);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.upcoming-cta {
  text-align: center;
  margin-top: 20px;
}

/* ===== GALLERY ===== */
.gallery {
  margin-top: 10px;
  position: relative;
}

.galleryScroll {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: #05060a;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 14px 14px 16px;
  scroll-snap-type: x proximity;
  /* Changed from mandatory to allow auto-scroll */
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.galleryScroll::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Opera */
}

.gItem {
  display: inline-block;
  width: 260px;
  height: 160px;
  margin-right: 10px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  vertical-align: top;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gItem::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 28px;
}

.gItem:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .70), 0 0 20px rgba(255, 176, 0, .3);
  border-color: var(--gold);
  z-index: 2;
}

.gItem:hover::after {
  opacity: 1;
}

.gItem:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width:900px) {
  .gItem {
    width: 230px;
    height: 150px;
  }
}

@media (max-width:520px) {
  .gItem {
    width: 210px;
    height: 140px;
  }
}

/* Edge fade */
.gallery:before,
.gallery:after {
  content: '';
  position: absolute;
  top: 36px;
  bottom: 18px;
  width: 40px;
  pointer-events: none;
  z-index: 3;
}

/* ===== GALLERY PAGE GRID (Masonry) ===== */
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 20px;
}

.gallery-grid .gItem {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 0;
  margin-right: 0;
  margin-bottom: 16px;
  break-inside: avoid;
}

.gallery-grid .gItem img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-grid .gItem:hover img {
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .70), 0 0 20px rgba(255, 176, 0, .3);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 14px;
  }

  .gallery-grid .gItem {
    margin-bottom: 14px;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
    column-gap: 12px;
  }

  .gallery-grid .gItem {
    margin-bottom: 12px;
  }
}


/* ===== BAND MEMBERS (About page) ===== */
.bandList {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px
}

.memberRow {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 215, 0, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04)
}

.memberIcon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, .40);
  flex: 0 0 58px;
  object-fit: cover;
  background: rgba(0, 0, 0, .25);
}

.memberName {
  font-weight: 1000;
  letter-spacing: .5px;
  font-size: 18px
}

.memberRole {
  opacity: .9;
  font-weight: 900
}

.memberBio {
  opacity: .9;
  margin-top: 6px;
  line-height: 1.55
}

/* Charity items */
.charityItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(12, 14, 22, .40);
}

.cIcon {
  font-size: 24px;
}

/* Testimonials */
.quoteStrip {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.q {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
}

/* ===== ANIMATIONS ===== */

/* Logo pulse animation */
@keyframes logoPulse {

  0%,
  100% {
    box-shadow: 0 22px 70px rgba(0, 0, 0, .65), 0 0 0 10px rgba(255, 176, 0, .15), 0 0 40px rgba(255, 176, 0, .25);
  }

  50% {
    box-shadow: 0 22px 70px rgba(0, 0, 0, .65), 0 0 0 10px rgba(255, 176, 0, .25), 0 0 60px rgba(255, 176, 0, .4);
  }
}

/* Floating badge animation */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Gradient shift animation */
@keyframes gradientShift {

  0%,
  100% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(5deg);
  }
}

/* Floating glow animation */
@keyframes floatingGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-45%, -45%) scale(1.1);
    opacity: 0.5;
  }
}

/* Pulse glow for primary buttons */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 18px rgba(255, 176, 0, .20);
  }

  50% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 28px rgba(255, 176, 0, .35);
  }
}

/* Fade in up animation for upcoming shows */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes halo {
  0% {
    opacity: .35;
    box-shadow: 0 0 10px rgba(255, 176, 0, .10), 0 0 0 rgba(124, 92, 255, 0);
  }

  50% {
    opacity: .75;
    box-shadow: 0 0 22px rgba(255, 176, 0, .18), 0 0 18px rgba(124, 92, 255, .14);
  }

  100% {
    opacity: .35;
    box-shadow: 0 0 10px rgba(255, 176, 0, .10), 0 0 0 rgba(124, 92, 255, 0);
  }
}

@keyframes halo {
  0% {
    opacity: .35;
    box-shadow: 0 0 10px rgba(255, 176, 0, .10), 0 0 0 rgba(124, 92, 255, 0);
  }

  50% {
    opacity: .75;
    box-shadow: 0 0 22px rgba(255, 176, 0, .18), 0 0 18px rgba(124, 92, 255, .14);
  }

  100% {
    opacity: .35;
    box-shadow: 0 0 10px rgba(255, 176, 0, .10), 0 0 0 rgba(124, 92, 255, 0);
  }
}

@-webkit-keyframes nudge {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: .75;
  }

  60% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: .75;
  }
}

@keyframes nudge {
  0% {
    transform: translateX(0);
    opacity: .75;
  }

  60% {
    transform: translateX(6px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: .75;
  }
}

/* Glow on social elements */
.fbHero:before,
.groupCard:before,
.gBtn:before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: .45;
  -webkit-animation: halo 4.8s ease-in-out infinite;
  animation: halo 4.8s ease-in-out infinite;
}

.fbHero:hover:before,
.groupCard:hover:before,
.gBtn:hover:before {
  opacity: 1;
  box-shadow: 0 0 28px rgba(255, 176, 0, .28), 0 0 22px rgba(124, 92, 255, .22);
}

.swipeHint {
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 16px;
  color: rgba(242, 244, 255, .70);
  -webkit-animation: nudge 2.4s ease-in-out infinite;
  animation: nudge 2.4s ease-in-out infinite;
}

/* ===== UTILITY CLASSES ===== */

/* Spaced button row */
.btn-row-spaced {
  margin-top: 14px;
}

/* Content error message (when Gist fetch fails) */
.content-error {
  text-align: center;
  padding: 24px 16px;
  color: rgba(242, 244, 255, .55);
  font-size: 14px;
  font-weight: 500;
}

/* Large heading */
.heading-large {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
}

/* Back button positioned top-left */
.back-btn-positioned {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

/* Smaller h1 for subpages */
.h1-smaller {
  font-size: 48px;
}

/* Genre with bottom spacing */
.genre-spaced {
  margin-bottom: 10px;
}

/* Centered media card */
.media-card-centered {
  text-align: center;
}

/* Media platform title */
.media-title {
  font-weight: 1000;
  font-size: 26px;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Media embed container */
.media-embed-wrap {
  max-width: 900px;
  margin: 14px auto 0;
}

/* Video aspect ratio container */
.video-aspect {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, .22);
  background: rgba(0, 0, 0, .35);
}

/* Video iframe fill */
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption below media */
.media-caption {
  margin-top: 10px;
  opacity: .8;
  font-weight: 900;
}

/* SoundCloud embed styling */
.soundcloud-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, .22);
  background: rgba(0, 0, 0, .25);
}

/* Video grid layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

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

.video-grid-item {
  width: 100%;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  margin-top: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 16px;
  color: rgba(242, 244, 255, .78);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, .25);
  background: rgba(0, 0, 0, .30);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(242, 244, 255, .45);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, .40);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, .15);
}

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

.form-submit {
  margin-top: 24px;
  text-align: center;
}

.btn-large {
  padding: 15px 32px;
  font-size: 16px;
}

/* Section heading */
.section-heading {
  font-weight: 1000;
  font-size: 20px;
  margin-top: 6px;
  color: var(--gold);
}

/* Section body text */
.section-body {
  margin-top: 12px;
  opacity: .92;
}

/* Member name styling */
.memberName {
  color: var(--gold);
}

/* Testimonials section background */
.testimonials-section {
  background: linear-gradient(180deg, rgba(20, 40, 80, .45), rgba(10, 10, 20, .85));
  padding: 28px 0 36px;
}

.testimonials-section .smallK {
  text-align: center;
}

.testimonials-section .quoteStrip {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .q {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  font-style: italic;
  padding: 24px 28px 24px 48px;
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  border-left: 4px solid var(--gold);
}

.testimonials-section .q::before {
  content: '"';
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
}

.testimonials-section .q-source {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(242, 244, 255, .65);
}

/* Charity section background */
.charity-section {
  background: rgba(80, 60, 20, .45);
}

/* Charity org name (bold) */
.charity-name {
  font-weight: 1000;
}

/* Charity links (not bold, gold on hover) */
.charity-name a {
  font-weight: 400;
  transition: color 0.25s ease;
}

.charity-name a:hover {
  color: var(--gold);
}

/* Charity description text */
.charity-desc {
  opacity: .9;
  margin-top: 4px;
  line-height: 1.5;
}

/* Charity item layout */
.charityItem {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Charity icon container */
.cIcon {
  font-size: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* Charity icon image */
.cIcon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}


/* ===== PAGE LOAD ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero fade-in animation */
.hero-animate .heroInner {
  animation: fadeInUp 0.6s ease-out forwards;
}

.hero-animate .heroLogo {
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-animate .h1 {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-animate .genre {
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-animate .btnRow {
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

/* Grid stagger animation */
.grid-animate .col:nth-child(1) {
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

.grid-animate .col:nth-child(2) {
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.grid-animate .col:nth-child(3) {
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.grid-animate .col:nth-child(4) {
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

/* Section fade-in */
.section-animate {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Social buttons stagger */
.hero-animate .socialA {
  animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

/* ===== MOBILE NAVIGATION ===== */

/* Hamburger button - hidden by default, shown on mobile */
.hamburger-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover .hamburger-line {
  background: rgba(255, 215, 0, 1);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Mobile menu overlay - dark backdrop */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  /* Ensure it's above everything including hero */
  pointer-events: none;
  /* CRITICAL: Allow clicks through when inactive */
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* Block clicks and enable interaction when active */
}

/* Mobile navigation drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px 6px;
  /* Minimal horizontal padding */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Allow scrolling if needed */
}

.mobile-nav-overlay.active .mobile-nav {
  transform: translateX(0);
}

/* Close button */
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 12px;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  color: rgba(255, 215, 0, 1);
  transform: rotate(90deg);
}

/* Navigation links container */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  /* Minimal top spacing */
}

/* Individual navigation links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  color: rgba(242, 244, 255, 0.9);
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-transform: uppercase;
  text-align: left;
}

.mobile-nav-link .nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: rgba(242, 244, 255, 0.7);
  transition: stroke 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--gold);
  transform: translateX(4px);
}

.mobile-nav-link:hover .nav-icon {
  stroke: var(--gold);
}

.mobile-nav-link.active {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
}

/* Mobile responsive breakpoint - show hamburger, hide desktop nav */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .btnRow {
    display: none !important;
  }

  .back-btn-positioned {
    display: none !important;
  }
}

/* Genre/subtitle styling */
.genre {
  text-transform: uppercase;
}

/* Desktop navigation button icons */
.btnRow .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btnRow .btn .nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* Back button icon sizing */
.back-btn-positioned .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-btn-positioned .btn .nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxZoomIn 0.3s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .8);
  border: 1px solid rgba(255, 176, 0, .3);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 176, 0, .2);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 176, 0, .2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 176, 0, .95), rgba(255, 122, 0, .85));
  border: 1px solid rgba(255, 176, 0, .5);
  border-radius: 16px;
  color: #0b0b10;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 176, 0, .3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), 0 0 30px rgba(255, 176, 0, .5);
}

.back-to-top:active {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* ===== BOOKING FORM ===== */
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  color: #06070b;
  border: 1px solid rgba(255, 176, 0, .4);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 176, 0, .15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(6, 7, 11, 0.4);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  margin-top: 32px;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
/* Hero background gradient shift */
@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.92;
  }
}

/* Floating glow effect for hero */
@keyframes floatingGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-10px, -10px) scale(1.05);
    opacity: 0.5;
  }
}

/* Logo pulse animation */
@keyframes logoPulse {

  0%,
  100% {
    box-shadow: 0 22px 70px rgba(0, 0, 0, .65), 0 0 0 10px rgba(255, 176, 0, .15), 0 0 40px rgba(255, 176, 0, .25);
  }

  50% {
    box-shadow: 0 22px 70px rgba(0, 0, 0, .65), 0 0 0 10px rgba(255, 176, 0, .25), 0 0 50px rgba(255, 176, 0, .35);
  }
}

/* Badge float animation */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Primary button pulse glow */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 18px rgba(255, 176, 0, .20);
  }

  50% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 28px rgba(255, 176, 0, .35);
  }
}

/* Slide in up animation for upcoming shows (no opacity dependency) */
@keyframes slideInUp {
  from {
    -webkit-transform: translateY(30px) translateZ(0);
    transform: translateY(30px) translateZ(0);
  }

  to {
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
  }
}

/* ===== CLICKABLE GIGS & FACEBOOK PILL ===== */

/* Ensure gig cards work as anchors */
.upcoming-gig-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Ensure tiles work as anchors */

/* Ensure tiles work as anchors */
a.tile {
  text-decoration: none;
  color: inherit;
  display: flex;
  /* Restore flex display for tile layout */
}