:root {
  --navy: #164374;
  --blue: #0097ce;
  --lightblue: #87d4ea;
  --sky: #b8e4f4;
  --cream: #f2ede5;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

:target,
section[id],
div[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22, 67, 116, 0.97);
  backdrop-filter: blur(8px);
}

.nav-logo {
  height: 32px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--lightblue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-lang {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: 1px solid var(--lightblue);
  color: var(--lightblue);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--lightblue);
  color: var(--navy);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--lightblue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 2rem 4rem;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.hero-logo {
  width: min(1080px, 80vw);
  display: block;
  margin: 0 auto 2rem;
}

.hero-tagline {
  font-family: 'Bree Serif', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero floating decorations — these are the reference size */
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: floatIn 1s ease forwards, float 7s ease-in-out infinite;
}

.hd3 {
  width: 250px;
  top: 10%;
  left: 3%;
  animation-delay: 0.7s, 1.7s;
}

.hd4 {
  width: 300px;
  bottom: 12%;
  right: 5%;
  animation-delay: 0.9s, 1.9s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--blue);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.2;
  min-height: 2.8rem;
}

.btn-primary ion-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: inline-flex;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 151, 206, 0.4);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.2;
  min-height: 2.8rem;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-large {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2rem;
}

/* Social buttons row */
.social-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 1.5rem 0;
}

.btn-social {
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-social ion-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  display: inline-flex;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .social-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2rem 0;
  }

  .btn-social {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ─── VINYL SECTION ─── */
.vinyl-section {
  background: var(--sky);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.vinyl-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.record-scene {
  position: relative;
  width: 460px;
  height: 360px;
  margin: 0 auto;
}

.record-sleeve {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  border-radius: 8px;
  object-fit: cover;
  z-index: 2;
  box-shadow: 4px 8px 32px rgba(22, 67, 116, 0.25);
}

/* Record is smaller than sleeve — slides out to the right */
.record-vinyl {
  position: absolute;
  top: 20px;
  left: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  animation: spin 9s linear infinite;
  transform-origin: center center;
  box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.3);
}

/* Section deco — default size for desktop; media queries scale down */
.deco-float {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  width: 180px;
  height: auto;
  animation: floatIn 1s ease forwards, float 7s ease-in-out infinite;
}

.vinyl-text .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.vinyl-text h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.vinyl-text h2 em {
  font-style: normal;
}

.vinyl-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1rem;
  opacity: 0.85;
  font-weight: 400;
}

.bandcamp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-top: 0.5rem;
}

.bandcamp-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ─── SECTION DECO DIVIDER ─── */
.section-deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2.5rem 0;
  background: var(--cream);
  overflow: hidden;
}

.section-deco img {
  width: 140px;
  opacity: 1;
}

/* ─── VIDEO SECTION ─── */
.video-section {
  background: var(--navy);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-section .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lightblue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.video-section h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── QUOTE ─── */
.quote-section {
  background: var(--cream);
  padding: 5.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section blockquote {
  font-family: 'Bree Serif', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.quote-deco {
  position: absolute;
  pointer-events: none;
}

.qd-l {
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 1;
  animation: float 8s ease-in-out infinite;
}

.qd-r {
  right: 3%;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 200px;
  opacity: 1;
  animation: float 8s 1s ease-in-out infinite;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--sky);
  padding: 0 0 7rem;
  position: relative;
  overflow: hidden;
}

/* ─── ABOUT PHOTO SLIDER ─── */
.about-slider {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  margin-bottom: 5rem;
  background: var(--navy);
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: block;
}

.about-slide.active {
  opacity: 1;
  position: relative;
}

/* Keep the container height from collapsing — use the active image */
.about-slide:not(.active) {
  position: absolute;
}

.about-slider {
  aspect-ratio: 16 / 7;
}

@media (max-width: 900px) {
  .about-slider {
    aspect-ratio: 4 / 3;
    margin-bottom: 3rem;
  }
}

/* ─── MEMBER BIO ─── */
.member .bio {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 0.4rem;
  opacity: 0.75;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lightblue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 98;
}

.nav-mobile-overlay.open {
  display: block;
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72vw;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    z-index: 199;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(135, 212, 234, 0.12);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-lang {
    display: none;
  }
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 3rem;
}

.about-text .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.about-text h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1rem;
  opacity: 0.85;
  font-weight: 400;
}

.band-members {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member {
  border-left: 3px solid var(--blue);
  padding: 0.15rem 0 0.15rem 1rem;
}

.member strong {
  display: block;
  font-weight: 500;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
}

.member .role {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
}

/* ─── AGENDA ─── */
.agenda-section {
  background: var(--navy);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.agenda-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lightblue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  color: var(--white);
}

.gig-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 212, 234, 0.15);
  border-radius: 12px;
  padding: 1.4rem 2rem;
  transition: background 0.2s, border-color 0.2s;
}

.gig-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(135, 212, 234, 0.35);
}

.gig-date {
  text-align: center;
}

.gig-date .day {
  font-family: 'Bree Serif', serif;
  font-size: 2.2rem;
  color: var(--lightblue);
  line-height: 1;
}

.gig-date .month {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

.gig-info .venue {
  font-family: 'Bree Serif', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.gig-info .city {
  font-size: 0.85rem;
  color: var(--lightblue);
  opacity: 0.75;
}

.gig-badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lightblue);
  border: 1px solid rgba(135, 212, 234, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.gig-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gig-tickets {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lightblue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gig-tickets:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 212, 234, 0.4);
}

/* ─── BOOKERS ─── */
.bookers-section {
  background: var(--cream);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

.bookers-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bookers-inner .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.bookers-inner h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.bookers-inner>p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.bookers-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.detail-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(22, 67, 116, 0.07);
}

.detail-card ion-icon.card-icon {
  font-size: 3rem;
  color: var(--blue);
  display: block;
  margin: 0 auto 1rem;
}

.detail-card h3 {
  font-family: 'Bree Serif', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.detail-card p {
  font-size: 0.88rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.6;
  font-weight: 400;
}

.detail-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* ─── INSTAGRAM ─── */
.instagram-section {
  background: var(--sky);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.instagram-header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 3rem;
  text-align: center;
}

.instagram-header .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.instagram-header h2 {
  font-family: 'Bree Serif', serif;
  font-size: 2.8rem;
  color: var(--navy);
  margin: 0;
}

.lightwidget-widget {
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 3rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--lightblue);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-copy {
  color: var(--lightblue);
  opacity: 0.45;
  font-size: 0.78rem;
  font-weight: 400;
}

.footer-copy a {
  color: inherit;
}

/* ─── LANGUAGE SWITCHING ─── */
/* Hide everything with a language class by default */
.nl,
.en {
  display: none !important;
}

/* Show the active language — use revert so each element uses its natural display */
body.lang-nl .nl {
  display: revert !important;
}

body.lang-en .en {
  display: revert !important;
}

/* Exceptions for elements that need a specific display value */
body.lang-nl a.nl,
body.lang-en a.en {
  display: inline-flex !important;
}

body.lang-nl span.nl,
body.lang-en span.en {
  display: inline !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hd3 {
    width: 180px;
    top: 20%;
    left: 2%;
  }

  .hd4 {
    width: 180px;
    bottom: 14%;
    right: 4%;
  }

  /* Section deco: pull back from content at mid-widths */
  .deco-float {
    width: 140px !important;
  }
}

@media (max-width: 900px) {
  .vinyl-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-inner {
    padding: 0 1.5rem;
  }

  .about-photo-full {
    margin-bottom: 3rem;
    max-height: 100vh;
  }

  .record-scene {
    width: 340px;
    height: 260px;
  }

  .record-sleeve {
    width: 240px;
    height: 240px;
  }

  .record-vinyl {
    width: 210px;
    height: 210px;
    left: 145px;
    top: 15px;
  }

  .gig-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas: "date info" "actions actions";
    gap: 1rem;
  }

  .gig-date {
    grid-area: date;
  }

  .gig-info {
    grid-area: info;
  }

  .gig-actions {
    grid-area: actions;
    justify-content: flex-end;
  }

  .gig-badge {
    display: none;
  }

  .bookers-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  nav {
    padding: 0.9rem 1.2rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .video-section {
    padding: 4rem 1.5rem;
  }

  .section-deco img {
    width: 80px;
  }

  /* Section deco: small enough to stay in margins at tablet */
  .deco-float {
    width: 80px !important;
    opacity: 0;
    /* re-hidden; floatIn animation will restore */
  }

  .qd-l,
  .qd-r {
    width: 90px;
  }

  /* Hero deco hd3/hd4 — tablet (≤900px) */
  .hd3 {
    width: 120px;
    top: 13%;
    left: 1%;
  }

  .hd4 {
    width: 140px;
    bottom: 20%;
    right: 2%;
  }
}

/* Hero deco hd3/hd4 — small phone (≤600px): hide to avoid overlap with content */
@media (max-width: 600px) {

  .hd3,
  .hd4 {
    display: none;
  }

  /* Section floats: hide entirely — content fills the full width */
  .deco-float {
    display: none !important;
  }

  .qd-l,
  .qd-r {
    display: none;
  }
}

/* Hero deco hd3/hd4 — large desktop (≥1280px) */
@media (min-width: 1280px) {
  .hd3 {
    width: 380px;
    top: 10%;
    left: 4%;
  }

  .hd4 {
    width: 380px;
    bottom: 12%;
    right: 5%;
  }

  .deco-float {
    width: 220px !important;
  }
}