:root {
      --bg: #0b0b0b;
      --text: #eaeaea;
      --muted: #a8a8a8;
      --line: #2a2a2a;
    }

    * { box-sizing: border-box; }

    html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #070707; /* pure dark background */
    }

    body {
    min-height: 100svh; /* mobile-safe viewport height */
    color: #eaeaea;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }


    .basic-header {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 16px;
    }

    .basic-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    }


    /* ===== Full Screen Card ===== */
    .card {
      width: 100vw;
      height: 100vh;
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
    }

    /* ===== Header ===== */
    .header {
      text-align: center;
      margin-bottom: 24px;
    }

    .logo {
      width: 300px;
      height: 100px;
      margin: 0 auto 14px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding-bottom: 4px;
      border-bottom: 1px solid transparent;
    }

    nav a:hover {
      color: var(--text);
      border-bottom-color: rgba(255,255,255,.35);
    }

    /* ===== Main content ===== */
    .content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.25);
      font-size: 14px;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    /* ===== Footer ===== */
    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 18px;
      align-items: center;   /* ← THIS centers the button */
    }

    .social {
      display: flex;
      justify-content: center;
      gap: 26px;
      flex-wrap: wrap;
    }

    .social a {
      color: rgba(255,255,255,.6);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      border-bottom: 1px solid transparent;
      padding-bottom: 4px;
    }

    .social a:hover {
      color: #ffffff;
      border-bottom-color: rgba(255,255,255,.4);
    }

    @media (max-width: 600px) {
      nav {
        gap: 18px;
      }
    }

    .copyright {
        text-align: center;
        margin-top: 12px;
        color: rgba(255,255,255,.4);
        font-size: 11px;
        letter-spacing: .14em;
    }

    /* ===== Expandable Schedule ===== */
    .schedule {
    width: min(760px, 92%);
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    }

    .show-line {
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
    }

    /* top row */
    .show-main {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    }

    .show-date {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #ffffff;
    min-width: 72px;
    }

    .show-info {
    flex: 1;
    }

    .show-venue {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    }

    .show-city {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    }

    .details-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,.35);
    padding: 4px 0;
    }

    .details-btn:hover {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,.6);
    }

    /* expandable content */
    .show-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    /* align-items: center; */  /* horizontal centering */ 
    /* text-align: center;  */ /* center text */

    }

    .show-details p {
    margin: 8px 0;
    }

    .show-details .show-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.35);
    }

    .show-details .show-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,.6);
    }

    /* expanded state */
    .show-line.active .show-details {
    max-height: 300px;
    padding: 12px 18px 18px;
    }

    /* mobile */
    @media (max-width: 520px) {
    .show-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .show-date {
        min-width: auto;
    }
    }

    /* ===== Contact Form ===== */
    .contact {
    width: min(720px, 92%);
    margin: 40px auto;
    }

    .message-field {
    margin-top: 12px;   /* adjust: 8–16px is typical */
    }

    .message-field-small {
    margin-top: 5px;   /* adjust: 8–16px is typical */
    }

    .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    }

    .contact label {
    display: block;
    }

    .contact span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    }

    .contact input,
    .contact textarea {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.95);
    font-size: 14px;
    outline: none;
    }

    .contact textarea {
    min-height: 140px;
    resize: vertical;
    }

    .contact input:focus,
    .contact textarea:focus {
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    }

    .contact-btn {
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.16),
        rgba(255,255,255,.06)
    );
    color: rgba(255,255,255,.95);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    display: block;          /* makes margin work */
    margin: 18px auto 0;     /* centers horizontally */
    }

    .contact-btn:hover {
    border-color: rgba(255,255,255,.28);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.22),
        rgba(255,255,255,.08)
    );
    }

    /* Mobile */
    @media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    }

    /* ===== 4-Video Grid ===== */
    .video-grid {
    width: min(1100px, 92%);
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    }

    .video-tile {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: #000;
    }

    .video-tile iframe {
    width: 100%;
    height: 100%;
    border: 0;
    }

    /* Mobile */
    @media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    }

    /* ===== 4 Image Horizontal Grid ===== */
.image-grid {
  width: min(1100px, 92%);
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.image-item {
  text-align: center;
}

.image-box {
  width: 100%;
  aspect-ratio: 4 / 3;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;

  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}


.image-text {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: .06em;
}

/* Tablet */
@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Slideshow Box ===== */
/* Make slideshow a positioning context */
.slideshow {
  width: min(900px, 92%);
  margin: 18px auto;
  position: relative;
}

/* Slide frame stays the same (keep your existing styles if you have them) */
.slide-frame {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* 🔑 shows whole image */
  object-position: center;
  display: block;
  background: #000;        /* fills empty space */
}

/* Bottom control bar */
.slide-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

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

  padding: 10px 12px;
  border-radius: 16px;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

/* Optional spacer so buttons stay at edges */
.slide-spacer {
  flex: 1;
}

/* Buttons inside bar */
.slide-bar .slide-btn {
  height: 38px;
  width: 44px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);

  cursor: pointer;
  font-size: 22px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

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

.slide-bar .slide-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-1px);
}

.slide-bar .slide-btn:active {
  transform: translateY(0);
}

/* ===== Large Centered Image ===== */
.hero-image {
  width: min(1200px, 94%);
  margin: 40px auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.6);
}

/* ===== Home Buton ===== */
.home-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.16),
    rgba(255,255,255,.06)
  );
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 auto;
}

.home-btn:hover {
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
  );
}

.home-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

/* ===== Merch Grid ===== */
.merch-grid {
  width: min(900px, 92%);
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.merch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Image placeholder (replace with <img> later) */
.merch-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;

  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

/* Shop button */
.shop-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.16),
    rgba(255,255,255,.06)
  );
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.shop-btn:hover {
  border-color: rgba(255,255,255,.3);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
  );
}

/* Mobile */
@media (max-width: 600px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
}

.merch-image {
  object-fit: cover;
}

/* Merch description */
.merch-desc {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  letter-spacing: .08em;
  text-align: center;
}

/* Social Icons*/
.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 24px 0;
}

.social-icons a {
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,.6);
  transition: color .2s ease, transform .2s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ===== Large Centered Hero Button ===== */
.hero-button-wrap {
  padding: 24px 0;          /* small top & bottom space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-button {
  padding: 22px 42px;
  border-radius: 22px;
  text-decoration: none;

  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.35),
    rgba(255,255,255,.12)
  );

  border: 2px solid rgba(255,255,255,.35);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.25),
    0 20px 50px rgba(0,0,0,.8);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.hero-button:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.5),
    rgba(255,255,255,.18)
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,.4),
    0 28px 65px rgba(0,0,0,.9);
}

.hero-button:active {
  transform: translateY(0) scale(0.98);
}

/* Copyright */
.copyright {
  margin-top: 16px;
  text-align: center;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}

/* Gallery Title/Subtitle */
/* HARD override for slideshow text spacing */
.slideshow-block {
  margin: 16px auto !important;
  text-align: center !important;
}

.slideshow-block .slideshow-title {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1;
}

.slideshow-block .slideshow-subtitle {
  margin: 2px 0 4px 0 !important;  /* VERY small gap */
  padding: 0 !important;
  line-height: 1.2;
}

/* Remove any spacing the slideshow itself adds */
.slideshow-block .slideshow {
  margin-top: 0 !important;
}

/* Page Fade-in */
body {
  opacity: 1;
  transition: opacity 260ms ease;
}

body.is-loading {
  opacity: 0;
}

/* Fade-in the whole page container */
.page {
  opacity: 1;
  transition: opacity 280ms ease;
}

.page.is-loading {
  opacity: 0;
}

.form-status{
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

/* Landing Page */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap img {
  max-width: 620px;
  width: 100%;
  height: auto;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← THIS centers vertically */
  align-items: center;     /* keeps them centered horizontally */
  gap: 40px;
}

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/** Variables **/

:root {
  --color-background: #cbd5e1;
  --color-background-alt: #8ec6ff;
  --color-border-active: #173db6;
  --color-border-default: #94a3b8;
  --color-highlight: #8ec6ff;
  --color-primary: #144be1;
  --color-primary-active: #19388f;
  --color-text-default: #f3f3f5;
  --color-text-muted: #000000;

  --font-family-body: "Open Sans", sans-serif;
  --font-family-display: "Nunito Sans", sans-serif;
}

/** Base **/

*,
::before,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 3px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: #000000;
  font-size: 1rem;
  height: 2.5rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.125rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-text-default);
  height: 1rem;
  width: 1rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  cursor: pointer;
  height: 1.5rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.75rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/** Utilities **/

.col-span-full {
  grid-column: 1 / -1;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
}

/* Main form container */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Section boxes */
fieldset {
    border: 2px solid #666;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Fieldset titles */
legend {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 15px;
    margin: 0 auto;
}

/* Center all questions */
label {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 6px; 
    margin-bottom: 3px;
}

/* Inputs, dropdowns, and text areas */
input,
select,
textarea {
    display: block;
    width: 80%;               /* Prevents stretching to screen edges */
    max-width: 600px;         /* Keeps fields from becoming too wide */
    margin: 0 auto;           /* Centers fields */
    padding: 12px 15px;

    border: 1px solid #999;
    border-radius: 8px;       /* Rounded corners */

    font-size: 1rem;
    color: black;             /* Typed text is black */
    background-color: white;

    box-sizing: border-box;
}

/* Larger text areas */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* Dropdown styling consistency */
select {
    cursor: pointer;
}

/* Submit button */
button {
    display: block;
    margin: 30px auto 0 auto;
    padding: 14px 30px;

    border: none;
    border-radius: 8px;

    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;

    background-color: #555;
    color: white;
}

button:hover {
    background-color: #777;
}

/* Main page title */
h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    input,
    select,
    textarea {
        width: 95%;
    }

    fieldset {
        padding: 20px;
    }
}
