.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: flex-end;
    width: 200px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px #000a;
    display: none;
    z-index: 1001;
  }
  .nav-toggle {
    display: flex;
  }
  body.nav-open .nav-links {
    display: flex;
  }
  .nav {
    position: relative;
  }
}
.gallery-grid {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.section-card {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
body.footer-pinned {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.fullpage-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000 !important;
}

body.fullpage-layout main {
  flex: 1 0 auto;
}

body.fullpage-layout.gallery-fix main {
  display: block;
}

body.fullpage-layout footer {
  flex-shrink: 0;
}
.modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

  .modal-chevron {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    opacity: 0.85;
    padding: 0;
    box-sizing: border-box;
  }
.modal-chevron:hover {
  background: rgba(0,0,0,0.8);
  opacity: 1;
}
.modal-chevron-left {
  left: 0.5rem;
}
.modal-chevron-right {
  right: 0.5rem;
}

    :root {
      --bg: #050505;
      --bg-alt: #111;
      --accent: #ffd500;
      --accent-2: #00c2ff;
      --text: #f5f5f5;
      --muted: #bbbbbb;
      --max-width: 1100px;
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #202020 0, #050505 55%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    header {
      border-bottom: 1px solid #222;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .nav {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }


    .logo-wrap img.ska-man {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent);
    }

    .logo-skadinals{
      width: 150px;
      height: 100px;
      border-radius: 0%;
      object-fit:scale-down;
      border: none;
    }

    .logo-text {
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .nav-links a {
      color: var(--muted);
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    main {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.5rem 1.25rem 3rem;
    }

    .hero {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      align-items: flex-start;
      margin-top: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .hero-text h1 {
      font-size: clamp(2.2rem, 4vw, 3rem);
      margin: 0 0 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .hero-sub {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 1.25rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border: 1px solid var(--accent);
      background: transparent;
      color: var(--accent);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn.primary {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }

    .btn.secondary {
      border-color: var(--accent-2);
      color: var(--accent-2);
    }

    .btn:hover {
      filter: brightness(1.1);
    }

    .hero-tagline {
      font-size: 1.2rem;
      color: var(--muted);
    }

    .hero-img {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid #333;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.1);
    }

    .hero-badge {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: rgba(0, 0, 0, 0.85);
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border: 1px solid var(--accent);
    }

    section {
      margin-bottom: 3rem;
    }

    section h2 {
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: 1rem;
    }

    .section-card {
      background: rgba(0, 0, 0, 0.7);
      border-radius: var(--radius);
      border: 1px solid #222;
      padding: 2rem 2rem 2.5rem;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .who-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 2.5rem;
      align-items: start;
    }

    .who-grid img {
      width: 100%;
      max-width: 520px;
      border-radius: var(--radius);
      object-fit: cover;
      border: 1px solid #333;
    }
@media (max-width: 900px) {
  .section-card {
    padding: 1.25rem 0.5rem 1.5rem;
  }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .who-grid img {
    max-width: 100%;
  }
}

    .who-grid p {
      margin-top: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .gigs-list {
      display: grid;
      gap: 0.9rem;
    }

    .gig {
      display: grid;
      grid-template-columns: 80px minmax(0, 1.8fr) minmax(0, 1fr);
      gap: 1rem;
      align-items: center;
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius);
      background: #0b0b0b;
      border: 1px solid #222;
    }

    .gig-date {
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.75rem;
      color: var(--muted);
    }

    .gig-date span {
      display: block;
    }

    .gig-date .month {
      font-weight: 600;
      color: var(--accent);
    }

    .gig-date .day {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .gig-date .dow {
      font-size: 0.75rem;
    }

    .gig-venue h3 {
      margin: 0 0 0.2rem;
      font-size: 1rem;
    }

    .gig-venue p {
      margin: 0;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .gig-action {
      text-align: right;
    }

    .gig-action .btn {
      font-size: 0.75rem;
      padding: 0.45rem 1.1rem;
    }

    .gigs-cta {
      margin-top: 1.25rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .gigs-cta a {
      font-weight: 600;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.75rem;
    }


    .gallery-grid img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid #333;
      filter: grayscale(100%) contrast(1.1);
      transition: transform 0.2s ease, filter 0.2s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 800px) {
      .gallery-grid img {
        filter: none !important;
      }
    }
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100vw;
    padding: 0 4vw;
  }
  .section-card {
    padding-left: 0;
    padding-right: 0;
    max-width: 100vw;
  }
  .modal-img-wrap {
    flex-direction: row;
    width: 100vw;
    max-width: 100vw;
  }
  .modal-content {
    max-width: 90vw;
    width: 90vw;
    height: auto;
  }
  .modal-chevron {
    font-size: 2rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .merch-img {
    height: 180px !important;
    width: 110px !important;
  }
  .merch-img-shirt {
    height: 140px !important;
  }
}

    .gallery-grid img:hover {
      transform: translateY(-3px);
      filter: grayscale(0%) contrast(1.05);
    }

    .book-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 1.5rem;
    }

    .book-text p {
      margin-top: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .book-form {
      display: grid;
      gap: 0.75rem;
    }

    .book-form label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .book-form input,
    .book-form textarea {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 4px;
      border: 1px solid #333;
      background: #050505;
      color: var(--text);
      font: inherit;
      resize: vertical;
    }

    .book-form textarea {
      min-height: 90px;
    }

    .book-form button {
      justify-self: start;
    }

    .contact-block {
      margin-top: 1.25rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .contact-block a {
      display: inline-block;
      margin-right: 0.75rem;
    }

    .social-row {
      margin-top: 0.25rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.85rem;
    }

    .social-row a {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.75rem;
    }

    .social-row img {
      width: 20px;
      height:20px;
      margin-top: 2px;
    }

    .bandsintown-icon {
      width: 30px !important;
      height:30px;
    }

    footer {
      border-top: 1px solid #222;
      padding: 0.75rem 1.25rem 0.75rem;
      background: #050505;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      gap: 0.25rem;
    }

    .footer-note {
      max-width: 600px;
    }

    @media (max-width: 800px) {
      .hero,
      .who-grid,
      .book-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        margin-top: 1rem;
      }

      /* .hero-img {
        order: -1;
      } */

      .gig {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
      }

      .gig-action {
        text-align: left;
      }

      .nav-links {
        display: none;
      }
    }

    .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
  }

.modal-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 90vw;
  margin: 0 auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*max-width: 90vw*/
  width:100%;
  margin: 0 auto;
  padding: 2.5rem 0 0 0;
  box-sizing: border-box;
}
#modalCaption {
  color: #fff;
  text-align: left;
  font-size: 1.1rem;
  flex: 1 1 auto;
  margin-left: 0;
  margin-right: 1rem;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-close {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
  text-shadow: 0 2px 8px #000;
  margin-left: 1rem;
}

.modal-content {
  display: block;
  margin: 1.5rem auto 2rem auto;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 32px #000a;
}

.modal-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

