/* ============================================
   Burgberg Vibes 2026 – v5 Light Theme
   ============================================ */

/* --- Self-hosted Poppins --- */
@font-face { font-family: 'Poppins'; src: url(../fonts/poppins-400.ttf) format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url(../fonts/poppins-500.ttf) format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url(../fonts/poppins-600.ttf) format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url(../fonts/poppins-700.ttf) format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url(../fonts/poppins-800.ttf) format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --accent: #0b3d54;
  --accent-light: #e8f1f5;
  --schlager-color: #d35c1a;
  --italiano-color: #1a6b3c;
  --bg: #eef1f6;
  --bg-white: #fff;
  --text: #1a1a2e;
  --text-light: #5a6278;
  --radius: 14px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 2rem); max-width: 1140px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.nav__inner {
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 56px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo-img { height: 38px; width: auto; }
.nav__links {
  list-style: none; display: flex; gap: 2rem; align-items: center;
}
.nav__links a {
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  color: var(--text-light); transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__ticket-link {
  background: var(--accent) !important; color: #fff !important;
  padding: 0.5rem 1.4rem; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav__ticket-link:hover { background: #094a66 !important; }

/* Hamburger */
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 101;
}
.nav__burger span {
  display: block; width: 100%; height: 2px; background: var(--text);
  border-radius: 2px; position: absolute; left: 0; transition: transform 0.3s, opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 9px; }
.nav__burger span:nth-child(3) { top: 18px; }
.nav__burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  margin-top: 0; overflow: hidden;
  background: url(../assets/images/burgberg-hero.jpg) center 35% / cover no-repeat;
  border-radius: 0 0 24px 24px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll-icon {
  width: 24px; height: 24px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
.hero__scroll {
  animation: bounce 1.5s ease infinite;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,84,0.5) 0%, rgba(11,61,84,0.75) 100%);
}
.hero__content {
  position: relative; z-index: 1; color: #fff;
  padding: 4rem 2rem; max-width: 700px;
}
.hero__logo {
  max-width: 420px; width: 80%; height: auto; margin: 0 auto 1.5rem;
}
.hero__subtitle {
  font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem; line-height: 1.7;
}
.hero__date {
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.hero__cta {
  display: inline-block; padding: 0.8rem 2rem;
  background: #fff; color: var(--accent);
  border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- Sponsor bar --- */
.sponsor {
  background: #fff; padding: 1.25rem 0;
  text-align: center; border-bottom: 1px solid #e5e8ee;
}
.sponsor__label {
  font-size: 0.75rem; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.15rem;
}
.sponsor__logo {
  max-width: 220px; height: auto; margin: 0 auto;
}

/* --- Event Sections --- */
.event {
  padding: 4rem 0;
  scroll-margin-top: 64px;
}
.event--alt {
  background: #fff;
}
.event__badge {
  display: inline-block; font-size: 0.85rem; font-weight: 500;
  color: var(--text-light); margin-bottom: 0.75rem;
}
.event__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; margin-bottom: 0.5rem; color: var(--text);
}
.event__meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem;
}
.event__meta span {
  display: flex; align-items: center; gap: 0.3rem;
}
.event__desc {
  font-size: 0.95rem; color: var(--text-light);
  max-width: 600px; margin-bottom: 2rem; line-height: 1.7;
}

/* Event grid: poster + cards */
.event__grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 2rem; margin-bottom: 2rem; align-items: stretch;
}
.event__poster-col {
  display: flex; flex-direction: column; gap: 1rem;
}
.event__poster {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.event__cta-col {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-start;
}

/* Artist cards */
.event__cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.card {
  background: var(--bg-white); border: 1px solid #e5e8ee;
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.event--alt .card {
  background: var(--bg); border-color: #dde1e8;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card__time {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 0.4rem;
}
.card__name {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem;
}
.card__desc {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.6;
}

/* Card with band image */
.card--has-img {
  padding: 0; overflow: hidden;
}
.card__img {
  position: relative; overflow: hidden;
}
.card__img img {
  width: 100%; height: auto; display: block;
  transition: opacity 0.5s;
}
.card__img-hover {
  position: absolute; top: 0; left: 0; opacity: 0;
}
.card--has-img:hover .card__img-default { opacity: 0; }
.card--has-img:hover .card__img-hover { opacity: 1; }
.card__body { padding: 1.25rem 1.5rem; }

/* Event bottom */
.event__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.event__info-pill {
  font-size: 0.85rem; color: var(--text-light);
  background: var(--accent-light); padding: 0.5rem 1rem;
  border-radius: 8px;
}
.event__info-pill strong { color: var(--text); }
.event__cta-row {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.event__price {
  font-size: 0.9rem; color: var(--text-light);
}
.event__price strong {
  font-size: 1.3rem; color: var(--text); font-weight: 700;
}

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.75rem 1.8rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-radius: 10px;
  color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn--schlager { background: var(--schlager-color); }
.btn--italiano { background: var(--italiano-color); }

/* --- Footer --- */
.footer {
  background: var(--accent); color: #fff; padding: 3rem 0 0;
  margin-top: 2rem; border-radius: 24px 24px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo { max-width: 160px; height: auto; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.footer__small { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 0.5rem; }
.footer__vb-logo { max-width: 180px; height: auto; }
.footer__heading {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); margin-bottom: 0.5rem;
}
.footer p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: #fff; }
.footer__bottom { padding: 1.25rem 0; text-align: center; }
.footer__bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { text-decoration: none; }

/* --- Legal pages --- */
.legal {
  padding: 7rem 0 4rem; min-height: 70vh; background: #fff;
}
.legal h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 2rem; color: var(--text);
}
.legal h2 {
  font-size: 1.15rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.5rem;
}
.legal h3 {
  font-size: 1rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.4rem;
}
.legal p, .legal li {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 0.5rem;
}
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* --- Parallax hero --- */
.hero__content {
  transition: transform 0.1s ease-out;
}

/* --- Magnetic button effect --- */
.btn, .hero__cta, .nav__ticket-link {
  transition: transform 0.2s ease-out, box-shadow 0.2s;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .event__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .event__poster-col { max-width: 350px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 700px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; top: 0; right: 0;
    width: 260px; height: 100vh; background: #fff;
    flex-direction: column; padding: 5rem 2rem 2rem; gap: 1.5rem;
    transform: translateX(100%); transition: transform 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; color: var(--text); }

  .hero { min-height: 100vh; border-radius: 0 0 16px 16px; }
  .hero__content { padding: 3rem 1.5rem; }
  .event { padding: 3rem 0; }
  .event__bottom { flex-direction: column; align-items: flex-start; }
  .event__cta-row { flex-direction: column; align-items: flex-start; width: 100%; }
  .btn { width: 100%; text-align: center; }
  .footer { border-radius: 16px 16px 0 0; }
}
