/* ============================================================
   GROOVE AVE — BAND WEBSITE STYLESHEET
   Street sign / sunset silhouette aesthetic
   Inspired by the Groove Ave banner image
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — derived from the Groove Ave banner */
  --color-bg:          #0c0f08;
  --color-surface:     #131a0e;
  --color-surface-2:   #1a2414;
  --color-green:       #1b6b33;
  --color-green-light: #28a04a;
  --color-green-dim:   rgba(27, 107, 51, 0.15);
  --color-red:         #c0392b;
  --color-red-light:   #e04838;
  --color-red-dim:     rgba(192, 57, 43, 0.15);
  --color-warm:        #d4862a;
  --color-warm-light:  #e8a040;
  --color-warm-dim:    rgba(212, 134, 42, 0.15);
  --color-text:        #f0e8d0;
  --color-text-muted:  #9caa8c;
  --color-border:      rgba(27, 107, 51, 0.35);
  --color-border-red:  rgba(192, 57, 43, 0.4);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sign:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout */
  --container: 1140px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

a {
  color: var(--color-green-light);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--color-warm-light); }

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

ul { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-sign);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* Street sign styled section titles */
.sign-text {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 0.15em 0.6em;
  border: 3px solid #fff;
  outline: 3px solid var(--color-green);
  box-shadow: 0 4px 20px rgba(27, 107, 51, 0.3);
}

.section__header {
  margin-bottom: var(--space-lg);
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sign);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: var(--color-red-light);
  border-color: var(--color-red-light);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-green-light);
  border-color: var(--color-green);
}
.btn--outline:hover {
  background: var(--color-green-dim);
  color: #fff;
  border-color: var(--color-green-light);
}

.btn--full { width: 100%; }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(12, 15, 8, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 0 var(--color-red);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-sign);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.05em;
  background: var(--color-green);
  padding: 0.2em 0.5em;
  border: 2px solid #fff;
  outline: 2px solid var(--color-green);
}
.nav__logo:hover { color: var(--color-warm-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__links a {
  font-family: var(--font-sign);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--color-green-light); }

.nav__cta {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--color-red) !important;
  border-radius: 2px;
  color: var(--color-red-light) !important;
}
.nav__cta:hover {
  background: var(--color-red-dim);
  color: #fff !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 55%, #3d2200 0%, #1a0c00 45%, var(--color-bg) 100%);
}

/* Red accent lines at top and bottom (like the banner) */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 2;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-inline: var(--space-md);
  max-width: 800px;
}

/* Street sign title */
.hero__sign {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: var(--space-sm);
}

.hero__sign-border {
  height: 5px;
  background: var(--color-red);
  border-radius: 1px;
}

.hero__title {
  font-family: var(--font-sign);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-green);
  padding: 0.1em 0.4em;
  border-left: 5px solid var(--color-red);
  border-right: 5px solid var(--color-red);
  text-shadow: 2px 3px 6px rgba(0,0,0,0.4);
}

.hero__title span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-warm-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Banner image in hero */
.hero__banner {
  max-width: 320px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-red);
  outline: 4px solid var(--color-green);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(212, 134, 42, 0.15);
}

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

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-green-light), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   8. ABOUT
   ============================================================ */
.about {
  background: var(--color-surface);
  position: relative;
}

/* Red top border like the banner */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-red);
}

.about__tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-warm-light);
  text-align: center;
  margin-bottom: var(--space-md);
}
.about__video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: min(56.25%, 506px);
  margin-bottom: var(--space-lg);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.about__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__cta {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.about__members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.member-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-green);
  border-radius: 4px;
  padding: var(--space-sm);
  text-align: center;
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.member-card:hover {
  border-color: var(--color-green-light);
  transform: translateY(-3px);
}

.member-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  margin-bottom: var(--space-xs);
}
.member-card__photo[src*="john"]   { filter: brightness(0.78) contrast(1.05); }
.member-card__photo[src*="maggie"] { filter: brightness(1.2) contrast(1.05); }
.member-card__photo[src*="chuck"]  { filter: brightness(1.12) contrast(1.05); }
.member-card__photo[src*="gary"]   { filter: brightness(0.92) contrast(1.05); }
.member-card__photo[src*="chris"]  { filter: brightness(1.05); }
.member-card__photo[src*="sam"]    { filter: brightness(1.05); }

.member-card__avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--color-warm-dim);
  border: 2px solid var(--color-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sign);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-warm-light);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.member-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.member-card__role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green-light);
}

/* ============================================================
   9. SHOWS
   ============================================================ */
.shows {
  background: var(--color-surface);
  position: relative;
}

.shows::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-red);
}

.cal-embed-wrap {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface-2);
}

.cal-embed {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
}

.shows__subscribe {
  margin-top: var(--space-md);
  display: flex;
  justify-content: flex-end;
}

.shows__subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

/* ============================================================
   11. TIPS
   ============================================================ */
.tips {
  background: var(--color-bg);
  position: relative;
}

.tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-green);
}

.tips__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.tips__text p:not(.section__label) {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 480px;
}

.tips__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid #3D95CE;
  border-radius: 4px;
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  min-width: 220px;
}

.tips__venmo-logo {
  margin-bottom: 4px;
}

.tips__handle {
  font-family: var(--font-sign);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.tips__coming-soon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3D95CE;
  margin-bottom: 4px;
}

.tips__btn {
  width: 100%;
  background: #3D95CE;
  border-color: #3D95CE;
  color: #fff;
}
.tips__btn:hover {
  background: #5aaee0;
  border-color: #5aaee0;
  color: #fff;
}

.tips__note {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  font-style: italic;
}

@media (max-width: 680px) {
  .tips__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tips__text p:not(.section__label) { max-width: 100%; }
  .tips__card { min-width: 0; width: 100%; padding: var(--space-md); }
}

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact {
  background: var(--color-surface);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-red);
}

.contact__blurb {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  text-align: center;
}

.contact__icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}
.contact__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              background var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}
.contact__icons a:hover {
  color: var(--color-green-light);
  background: var(--color-green-dim);
  border-color: var(--color-green-light);
  transform: scale(1.1);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg);
  border-top: 3px solid var(--color-red);
  padding-block: var(--space-md);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-sign);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-green);
  padding: 0.15em 0.4em;
  border: 2px solid #fff;
  outline: 2px solid var(--color-green);
}
.footer__logo:hover { color: var(--color-warm-light); }

.footer__copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================================
   14. DANCING SILHOUETTE DECORATIVE DIVIDERS
   ============================================================ */
/* SVG silhouette divider between sections */
.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' fill='rgba(27%2C107%2C51%2C0.08)'%3E%3C!-- dancer 1 --%3E%3Cellipse cx='100' cy='18' rx='8' ry='9'/%3E%3Cpath d='M100 27 L100 52 M88 38 L112 35 M100 52 L88 72 M100 52 L114 70'/%3E%3C!-- dancer 2 --%3E%3Cellipse cx='250' cy='20' rx='8' ry='9'/%3E%3Cpath d='M250 29 L248 55 M236 36 L260 42 M248 55 L236 74 M248 55 L262 72'/%3E%3C!-- dancer 3 --%3E%3Cellipse cx='400' cy='16' rx='8' ry='9'/%3E%3Cpath d='M400 25 L402 50 M390 32 L414 38 M402 50 L388 70 M402 50 L418 68'/%3E%3C!-- dancer 4 --%3E%3Cellipse cx='550' cy='19' rx='8' ry='9'/%3E%3Cpath d='M550 28 L548 54 M538 36 L564 34 M548 54 L534 72 M548 54 L564 70'/%3E%3C!-- dancer 5 --%3E%3Cellipse cx='700' cy='17' rx='8' ry='9'/%3E%3Cpath d='M700 26 L702 52 M688 34 L714 40 M702 52 L690 72 M702 52 L718 70'/%3E%3C!-- dancer 6 --%3E%3Cellipse cx='850' cy='20' rx='8' ry='9'/%3E%3Cpath d='M850 29 L848 54 M836 38 L862 36 M848 54 L836 74 M848 54 L864 72'/%3E%3C!-- dancer 7 --%3E%3Cellipse cx='1000' cy='16' rx='8' ry='9'/%3E%3Cpath d='M1000 25 L1002 50 M990 34 L1014 38 M1002 50 L988 70 M1002 50 L1018 68'/%3E%3C!-- dancer 8 --%3E%3Cellipse cx='1150' cy='18' rx='8' ry='9'/%3E%3Cpath d='M1150 27 L1148 52 M1136 36 L1162 34 M1148 52 L1134 72 M1148 52 L1164 70'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1200px 80px;
  background-position: center bottom;
  pointer-events: none;
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about__members {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--large { grid-column: span 2; }
  .gallery__item--wide  { grid-column: span 2; }
}

@media (max-width: 680px) {
  :root { --nav-height: 60px; }

  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(12, 15, 8, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 2px solid var(--color-red);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration) var(--ease),
                opacity var(--duration) var(--ease);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a { font-size: 1rem; }

  .cal-embed { height: 420px; }

  .about__members {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 2; }

  .footer__inner { justify-content: center; text-align: center; }

  .hero__banner { max-width: 240px; }
}

@media (max-width: 400px) {
  .about__members { grid-template-columns: 1fr 1fr; }
  .gallery__grid  { grid-template-columns: 1fr; }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 1; }
}
