:root {
  --bg: #0c0c10;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .08);
  --border: rgba(255, 255, 255, .12);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .72);
  --brand: #7b38de;
  --brand2: #a07bff;
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
  --radius: 18px;
  --wrap: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(123, 56, 222, .22), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(160, 123, 255, .18), transparent 60%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

/* .section {
  padding: clamp(28px, 5vw, 72px) 0;
} */

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .03), transparent);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: .2px;
  font-family: 'Oswald', sans-serif;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.4;
}

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 32px 0;
  overflow: hidden;
  background:
    center/cover no-repeat var(--hero-img);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(123, 56, 222, .35), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .75));
}

.hero__inner {
  position: relative;
  width: var(--wrap);
  z-index: 1;
  text-align: center;
}

.hero__kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 15px;
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 7.2vw, 95px);
  line-height: 1.05;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .45);
  font-family: "Oswald", sans-serif;
  letter-spacing: 5px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.meta-chip {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.meta-chip__label {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.meta-chip__value {
  font-weight: 700;
  font-size: 14px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
}


/* Countdown */

.hero__counter {
  display: flex;
  width: 100%;
  padding: 45px 0;
  background: var(--bg);
}

.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown__box {
  width: min(200px, 42vw);
  padding: 14px 14px 12px;
}

.countdown__num {
  font-size: clamp(22px, 3vw, 70px);
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
}

.countdown__label {
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  margin-top: 2px;
  text-align: center;
}

/* Buttons */
.btn {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, rgba(123, 56, 222, .95), rgba(123, 56, 222, .78));
  border-color: rgba(160, 123, 255, .55);
}

.btn--ghost {
  background: rgba(0, 0, 0, .35);
}

.btn--soft {
  background: rgba(123, 56, 222, .14);
  border-color: rgba(160, 123, 255, .25);
}

/* INFO GRID */
.grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 22px);
  box-shadow: var(--shadow);
}

.card__title {
  margin: 0 0 12px;
  font-size: 22px;
}

.card__subtitle {
  margin: 14px 0 8px;
  font-size: 16px;
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card__divider {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 14px 0;
}

.card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}


#info{
  position: relative;          /* ✅ needed for absolute overlay */
  min-height: 100vh;           /* ✅ better than height */
  background-image: url("/assets/img/konsierto/7IV08919.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Overlay covers the whole section */
.info__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(123, 56, 222, .35), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .75));
  z-index: 0;                  /* behind content */
}

/* Put content above overlay */
#info .wrap{
  position: relative;
  z-index: 1;
  padding: clamp(18px, 5vw, 56px) 0;
}

/* Your grid */
.grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

/* Responsive */
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}

/* iOS fix: background-attachment fixed is buggy */
@media (max-width: 768px){
  #info{ background-attachment: scroll; }
}

.info-list {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.info-row:last-child {
  border-bottom: 0;
}

dt {
  color: rgba(255, 255, 255, .70);
  font-weight: 700;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, .90);
}

.dot {
  margin: 0 10px;
  opacity: .65;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

/* Poster */
.poster {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.poster img {
  width: 100%;
  height: auto;
  display: block;
}

.poster__caption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.45;
}

/* Gallery */

#gallery{
  padding: 55px 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gitem {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  /* square */
  transition: transform .15s ease, border-color .2s ease;
}

.gitem:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 123, 255, .35);
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 6px 10px;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 10px;
  font-weight: 800;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__body {
  padding: 0 10px 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
  margin-top: 22px;
}

.bottom-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(123, 56, 222, .18), rgba(255, 255, 255, .04));
  border: 1px solid rgba(160, 123, 255, .22);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.bottom-cta__card h3 {
  margin: 0 0 4px;
}

.bottom-cta__card p {
  margin: 0;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
}

.lightbox__dialog {
  position: relative;
  width: min(980px, 92vw);
  margin: 6vh auto 0;
  background: rgba(10, 10, 14, .75);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .6);
  padding: 44px 56px 18px;
}

.lightbox__img {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: contain;
  display: block;
  background: rgba(0, 0, 0, .35);
  border-radius: 14px;
}

.lightbox__cap {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 10px;
}

.lightbox__nav--next {
  right: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 120px 1fr;
  }

  .lightbox__dialog {
    padding: 44px 14px 18px;
  }
  .hero {
    background-position: 28%;
  }
  .countdown__num {
    font-size: 40px;
  }
  .countdown__label{
    font-size: 11px;
  }
  .hero__title {
    font-size: clamp(70px, 7.2vw, 80px);
  }
}

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bottom-cta__card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .countdown__box {
    width: 46vw;
  }
}