/* Obsidian Tide — shared styles */

@font-face {
  font-family: 'GeoSansLight';
  src: url('https://static.wixstatic.com/ufonts/155a6f_36e593e703d54b52a7df5160abb10e53/woff2/file.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #111111;
  --header-bg: #000000;
  --text: #ffffff;
  --muted: #919191;
  --accent: #a3c7cc;
  --border: #333333;
  --max-width: 980px;
  --tour-width: 900px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

body.has-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
    url('../assets/images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header & nav */

.site-header {
  background-color: var(--header-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
  text-decoration: none;
}

/* Typography */

.section-title {
  text-align: center;
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.section-title--light {
  color: var(--text);
}

.section-title--dark {
  color: #000000;
}

.page-title {
  text-align: center;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.tour-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: -28px 0 40px;
}

.page-title .muted {
  color: var(--muted);
}

.epk-title {
  text-align: center;
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin: 40px 0 20px;
}

.epk-title .muted {
  color: var(--muted);
}

/* Layout */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--tour-width);
}

.section {
  padding: 50px 0;
}

.section--boxed {
  background: rgba(0, 0, 0, 0.45);
  margin: 20px 0;
  padding: 40px 30px;
}

.hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 30px 0;
}

/* Hero strip */

.hero-strip {
  position: relative;
  height: 220px;
  background: url('../assets/images/hero-strip.jpg') center bottom / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.social-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-bar a {
  display: block;
  line-height: 0;
}

.social-bar img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.social-bar--large img {
  width: 42px;
  height: 42px;
}

/* Intro block */

.section--intro {
  padding-top: 30px;
}

.intro-hero {
  text-align: center;
  margin-bottom: 30px;
}

.intro-hero img {
  display: block;
  width: 100%;
  max-width: 979px;
  margin: 0 auto;
  object-fit: cover;
}

.intro-headline {
  font-family: 'GeoSansLight', 'Open Sans', sans-serif;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.21em;
  line-height: 1.4;
  margin: 24px 0 0;
}

.basic-info {
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* Bio */

.bio-text {
  max-width: 700px;
  margin: 0 auto 25px;
  text-align: left;
}

/* Buttons */

.btn {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text);
  color: #000000;
  text-decoration: none;
}

.btn--center {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}

.btn--tba {
  border-color: #555555;
  color: #555555;
  pointer-events: none;
}

.btn-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Lineup */

.lineup {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.member {
  text-align: center;
  max-width: 160px;
}

.member img {
  width: 123px;
  height: 123px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 12px;
}

.member-name {
  font-family: 'GeoSansLight', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 6px;
}

.member-role {
  font-family: 'GeoSansLight', 'Open Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--text);
}

.member-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 6px;
}

/* Discography carousel */

.discography {
  text-align: center;
  padding: 20px 0;
}

.disc-slide {
  display: none;
}

.disc-slide.active {
  display: block;
}

.disc-slide img {
  width: 285px;
  height: 294px;
  object-fit: cover;
  margin: 0 auto;
}

.disc-title {
  font-size: 16px;
  margin: 12px 0 4px;
}

.disc-meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.disc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.disc-nav button {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.disc-nav button:hover {
  background: var(--text);
  color: #000;
}

.disc-counter {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}

/* Videos */

.video-grid {
  display: grid;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.video-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* Gallery */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Press */

.press-quote {
  margin-bottom: 24px;
}

.press-quote blockquote {
  margin: 0 0 6px;
  font-size: 14px;
  font-style: italic;
  color: var(--text);
}

.press-quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
}

/* Listen */

.section--listen {
  background: rgba(255, 255, 255, 0.12);
  padding: 40px 30px;
  margin: 20px 0;
}

.listen-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 0;
}

.listen-icons li {
  list-style: none;
}

.listen-icons a {
  line-height: 0;
}

.listen-icons img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

/* Useful links */

.useful-links {
  text-align: center;
  margin-top: 40px;
}

.useful-links .section-title {
  text-align: center;
  letter-spacing: 0.3em;
  font-size: 18px;
}

/* Tour page */

.sponsors-banner {
  background-color: #050505;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #222;
}

.sponsors-banner a {
  line-height: 0;
  display: inline-flex;
  align-items: center;
}

.sponsors-banner img {
  display: block;
  height: 50px;
  width: auto;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsors-banner img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.tour-list {
  display: flex;
  flex-direction: column;
  margin: 60px auto;
  padding: 0 20px;
  max-width: var(--tour-width);
}

.tour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s;
}

.tour-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.tour-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
}

.tour-date {
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: bold;
  color: var(--accent);
  min-width: 80px;
}

.tour-location .city {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.tour-location .venue {
  font-size: 14px;
  color: #999999;
}

.ticket-btn {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tour-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.fb-event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fb-event-btn img {
  width: 16px;
  height: 16px;
}

.ticket-btn:hover {
  background-color: var(--text);
  color: #000000;
  text-decoration: none;
}

.ticket-btn.tba {
  border-color: #555555;
  color: #555555;
  pointer-events: none;
}

/* Merch & contact pages */

.page-content {
  max-width: var(--tour-width);
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-block {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px;
}

.contact-block h3 {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-align: center;
}

.contact-block p {
  font-size: 15px;
  color: var(--text);
  margin: 8px 0;
}

.contact-block a {
  color: var(--text);
  font-weight: bold;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */

@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .intro-hero img {
    max-width: 100%;
  }

  .disc-slide img {
    width: 220px;
    height: 227px;
  }

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

  .photo-grid img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .tour-actions {
    width: 100%;
    flex-direction: column;
  }

  .ticket-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .sponsors-banner img {
    height: 40px;
    max-height: 40px;
  }

  .useful-links {
    text-align: center;
  }

  .useful-links .section-title {
    text-align: center;
  }
}
