/* LoveSharks — minimal, logo-led palette */

:root {
  --bg: #000000;
  --surface: #0c0c0c;
  --lime: #a4d13a;
  --pink: #e6007e;
  --text: #e6e6e6;
  --muted: #6b6b6b;
  --line: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

main a,
.site-footer a {
  color: #ffffff;
}

main a:hover,
main a:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: #ff4da6;
}

.skip-anchor:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--surface);
  color: var(--lime);
  clip: auto;
  width: auto;
  height: auto;
}

.nav-minimal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.25rem;
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-minimal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-minimal a:hover,
.nav-minimal a:focus {
  color: var(--lime);
}

.nav-minimal-external {
  border-bottom: 1px solid transparent;
}

.nav-minimal-external:hover,
.nav-minimal-external:focus {
  border-bottom-color: currentColor;
}

.site-top {
  padding-top: 3.25rem;
}

.logo-block {
  display: flex;
  justify-content: center;
  padding: 2rem 1.25rem 1.5rem;
}

.site-logo {
  line-height: 0;
  text-align: center;
}

.site-logo-img {
  display: block;
  width: auto;
  max-width: min(92vw, 640px);
  height: auto;
  margin-inline: auto;
}

.band-photo-slot {
  width: 100%;
  min-height: min(72vh, 720px);
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  background-color: var(--surface);
  background-image: url("../images/band_foto3.png");
  background-size: cover;
  background-position: center top;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}

.site-section:last-of-type {
  border-bottom: none;
}

.container-narrow {
  max-width: 40rem;
}

.section-heading {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.text-muted {
  color: var(--muted) !important;
}

.code-inline {
  font-size: 0.85em;
  color: var(--lime);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.table-minimal {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.table-minimal thead th {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-color: var(--line) !important;
  padding: 0.85rem 1rem;
}

.table-minimal tbody td {
  border-color: var(--line) !important;
  padding: 0.85rem 1rem;
  vertical-align: middle;
}

.embed-wrap {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--surface);
}

.embed-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-footer {
  padding: 3rem 0;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-row.social-row-left {
  justify-content: flex-start;
}

.social-min {
  color: #fff;
  font-size: 1.35rem;
  transition: color 0.15s;
}

.social-min:hover,
.social-min:focus {
  color: var(--pink);
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .nav-minimal {
    position: static;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-top {
    padding-top: 0;
  }

  .band-photo-slot {
    min-height: 42vh;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}
