/* SPDX-FileCopyrightText: 2026 Dr Marcus Baw and Baw Medical Ltd */
/* SPDX-License-Identifier: AGPL-3.0-or-later */

@import url("assets/fonts/fonts.css");

:root {
  --navy: rgb(48, 66, 84);
  --white: rgb(255, 255, 255);
  --off-white: rgb(245, 245, 245);
  --font-main: "High Cruiser", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: #000;
  color: var(--white);
  overflow-x: hidden;
}

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

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

/* ── Navigation ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav a {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--navy);
  font-weight: 400;
  transition: opacity 0.2s;
}

nav a.active {
  font-weight: 700;
}

nav a:hover {
  opacity: 0.7;
}

/* ── Hero Section ── */

.hero {
  position: relative;
  width: 100%;
  height: 672px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-logo {
  position: absolute;
  top: 134px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 765px;
  max-width: 60%;
  height: auto;
}

.hero-tagline {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 38.67px;
  color: var(--white);
  font-weight: 400;
  line-height: 54px;
  z-index: 2;
}

/* ── Social Icons ── */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 16px 0;
  background: #000;
}

.social-icons a {
  display: block;
  width: 70px;
  height: 70px;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── About Section ── */

.about {
  position: relative;
  text-align: center;
  padding: 100px 20px 120px;
  background: #1a1a1a;
}

.about h2 {
  font-size: 66.67px;
  color: var(--white);
  font-weight: 400;
  line-height: 93px;
  margin-bottom: 48px;
}

.about p {
  font-size: 26.67px;
  color: var(--white);
  line-height: 37px;
  max-width: 731px;
  margin: 0 auto;
  font-weight: 400;
}

.about .tagline {
  margin-top: 48px;
  font-size: 26.67px;
}

/* ── Gigs Section ── */

.gigs {
  position: relative;
  padding: 56px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, #841c1d 0%, #a72022 48%, #d82225 100%);
}

.gigs h2 {
  font-size: 76px;
  color: var(--off-white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 52px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.gigs .gigs-year {
  font-size: 60px;
  color: var(--off-white);
  line-height: 1;
  margin: 0 0 52px;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

.gig-list {
  list-style: none;
  max-width: 1120px;
  margin: 0 auto;
}

.gig-list li {
  margin-bottom: 34px;
}

.gig-list p {
  max-width: none;
  margin: 0;
  font-size: 29px;
  color: var(--off-white);
  line-height: 1.45;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gig-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gig-list a:hover {
  opacity: 0.75;
}

/* ── Tech Section ── */

.tech {
  position: relative;
  padding: 64px 20px 88px;
  text-align: center;
  background: linear-gradient(180deg, #861b1c 0%, #a92123 50%, #d52225 100%);
}

.tech h2 {
  font-size: 68px;
  color: var(--off-white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.tech-note {
  max-width: 900px;
  margin: 0 auto 42px;
  color: rgba(245, 245, 245, 0.65);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 400;
}

.tech-list {
  max-width: 1050px;
  margin: 0 auto;
}

.tech-list div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tech-list dt,
.tech-list dd {
  color: var(--off-white);
  font-size: 29px;
  line-height: 1.35;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.tech-list dt {
  flex: 0 0 auto;
}

.tech-list dd {
  margin: 0;
  text-align: left;
}

/* ── Lineup Section ── */

.lineup {
  position: relative;
  padding: 0;
  text-align: center;
  background: #0d0d0d;
  scroll-margin-top: 48px;
}

.lineup h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  font-size: 76px;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.lineup-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 360px;
  max-width: 1280px;
  margin: 0 auto;
}

.lineup-member {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #000;
}

.lineup-member img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(1);
}

.lineup-member--marcus img { object-position: center 32%; }
.lineup-member--jim img { object-position: center 42%; }
.lineup-member--patrick img { object-position: center 24%; }
.lineup-member--louise img { object-position: center 24%; }

.lineup-member figcaption {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.lineup-member--jim figcaption,
.lineup-member--louise figcaption {
  text-align: right;
}

.lineup-member--patrick figcaption,
.lineup-member--louise figcaption {
  top: auto;
  bottom: 24px;
  width: fit-content;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

.lineup-member--patrick figcaption {
  right: auto;
}

.lineup-member--louise figcaption {
  left: auto;
}

.lineup-member .name {
  font-size: 36px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
}

.lineup-member .role {
  font-size: 23px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
}

/* ── Material Section ── */

.material {
  position: relative;
  padding: 80px 20px;
  background-image: url("assets/media/2c0bad91d20277f43a9c13c19aa4a57d.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.material::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.material > * {
  position: relative;
  z-index: 1;
}

.material h2 {
  font-size: 53.33px;
  color: var(--off-white);
  font-weight: 400;
  line-height: 74px;
  text-align: center;
  margin-bottom: 48px;
}

.material-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.material-columns ul {
  list-style: none;
}

.material-columns li {
  font-size: 21.33px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 29px;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.material-columns .col-left li {
  text-align: left;
}

.material-columns .col-right li {
  text-align: right;
}

.material-quote {
  text-align: center;
  font-size: 28.93px;
  color: var(--off-white);
  line-height: 40px;
  max-width: 500px;
  margin: 48px auto 0;
  font-weight: 400;
}

/* ── Contact Section ── */

.contact {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background-image: url("assets/media/4b0d49b5fe5be06feff92a885023edf9.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: 53.33px;
  color: var(--off-white);
  font-weight: 400;
  line-height: 74px;
  margin-bottom: 48px;
}

.contact p {
  font-size: 51px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 72px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact a:hover {
  opacity: 0.8;
}

/* ── Gallery Section ── */

.gallery {
  position: relative;
  padding: 80px 20px;
  background: #1a1a1a;
}

.gallery h2 {
  font-size: 94.86px;
  color: var(--white);
  font-weight: 400;
  line-height: 132px;
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* ── Footer ── */

footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  color: var(--off-white);
  font-size: 15px;
}

footer a {
  color: var(--off-white);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .hero-logo {
    width: 90%;
  }

  .hero-tagline {
    font-size: 24px;
    line-height: 34px;
  }

  .about h2,
  .lineup h2,
  .material h2,
  .contact h2 {
    font-size: 40px;
    line-height: 56px;
  }

  .tech h2 {
    font-size: 38px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .tech-note {
    margin-top: 12px;
    font-size: 14px;
  }

  .tech-note br {
    display: none;
  }

  .tech-list div {
    display: block;
    margin-bottom: 28px;
  }

  .tech-list dt,
  .tech-list dd {
    font-size: 19px;
    line-height: 1.4;
    text-align: center;
  }

  .tech-list dt {
    margin-bottom: 4px;
  }

  .about p,
  .material-quote {
    font-size: 18px;
    line-height: 26px;
  }

  .gigs h2 {
    font-size: 52px;
  }

  .gigs .gigs-year {
    font-size: 42px;
  }

  .gig-list p {
    font-size: 17px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .lineup-grid {
    grid-template-rows: 220px 220px;
  }

  .lineup h2 {
    font-size: 42px;
  }

  .lineup-member .name {
    font-size: 19px;
  }

  .lineup-member .role {
    font-size: 14px;
  }

  .lineup-member figcaption {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .lineup-member--patrick figcaption,
  .lineup-member--louise figcaption {
    top: auto;
    bottom: 12px;
    padding: 8px 10px;
  }

  .lineup-member--patrick figcaption {
    right: auto;
  }

  .lineup-member--louise figcaption {
    left: auto;
  }

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

  .material-columns .col-right li {
    text-align: left;
  }

  .material-columns li {
    font-size: 16px;
    line-height: 24px;
  }

  .contact p {
    font-size: 24px;
    line-height: 36px;
  }

  .gallery h2 {
    font-size: 48px;
    line-height: 68px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-icons a {
    width: 48px;
    height: 48px;
  }

  nav ul {
    gap: 12px;
  }

  nav a {
    font-size: 12px;
  }
}
