@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500&display=swap');

:root {
  --orange:   #F05F1A;
  --orange2:  #d44f0c;
  --orange3:  #c44008;
  --teal:     #29C5C5;
  --teal2:    #1aafaf;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.88);
  --muted2:   rgba(255,255,255,0.65);
  --border:   rgba(255,255,255,0.15);
  --font-h:   'Barlow Condensed', sans-serif;
  --font-b:   'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 56px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 56px;
}
.hero-left {
  background: var(--orange);
  padding: 4rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -1px;
  color: var(--white);
}
.hero-title .til  { color: rgba(255,255,255,0.28); }
.hero-title .dots { color: var(--teal); }
.hero-bottom { margin-top: 2rem; }
.hero-name {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-role { font-size: 0.9rem; color: var(--muted); margin-top: 0.25rem; }
.hero-right {
  background: var(--orange2);
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn-teal   { background: var(--teal);  color: var(--white) !important; }
.btn-teal:hover { background: var(--teal2); color: var(--white) !important; }
.btn-white  { background: var(--white); color: var(--orange); }
.btn-white:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.65rem; }

/* ── TAGLINE ── */
.tagline-strip {
  background: var(--teal2);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tq {
  font-family: var(--font-h);
  font-size: 4.5rem; font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1; margin-top: -0.5rem; flex-shrink: 0;
}
.ttext {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 700; font-style: italic; color: var(--white);
}
.tattr {
  font-size: 0.68rem; color: rgba(255,255,255,0.65);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 0.25rem;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}

/* ── EVENTS ── */
.events-section { background: var(--orange); padding: 3rem 3rem; }
.events-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.event-card {
  background: rgba(0,0,0,0.18);
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
  transition: background 0.2s;
}
.event-card:hover { background: rgba(0,0,0,0.26); }
.ev-day { font-family: var(--font-h); font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.ev-mon { font-size: 0.68rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; }
.ev-type { font-size: 0.62rem; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.2rem; }
.ev-title { font-size: 1rem; font-weight: 500; color: var(--white); line-height: 1.35; margin-bottom: 0.3rem; }
.ev-venue { font-size: 0.88rem; color: var(--muted); }
.ev-time  { font-size: 0.82rem; color: var(--teal); margin-top: 0.2rem; }
.ev-link  {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal); text-decoration: underline; text-underline-offset: 3px;
}

/* ── GALLERY ── */
.gallery-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gallery-section img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: opacity 0.2s;
}
.gallery-section img:hover { opacity: 0.9; }

/* ── REVIEWS ── */
.reviews-section { background: var(--teal); padding: 3.5rem 3rem; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1rem; }
.review-card { background: rgba(0,0,0,0.12); padding: 1.75rem; }
.rev-q { font-family: var(--font-h); font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.2); line-height: 1; margin-bottom: 0.5rem; }
.rev-text { font-size: 0.96rem; color: var(--white); line-height: 1.85; font-style: italic; }
.rev-name { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-top: 1rem; }
.rev-role { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 7rem 3rem 2.5rem;
  background: var(--orange);
  border-bottom: 4px solid var(--teal);
}
.page-header .eyebrow {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.75rem;
}
.page-header h1 {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 0.9;
}
.page-header p { font-size: 0.9rem; color: var(--muted); margin-top: 0.75rem; max-width: 50ch; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }
.about-text { padding: 3rem; background: var(--orange); }
.about-text p { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.9; margin-bottom: 1.4rem; }
.about-text a:not(.btn) { color: var(--teal); }
.about-contact {
  background: var(--teal); padding: 2rem 3rem;
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center;
}
.contact-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; color: var(--white); text-decoration: none;
  font-weight: 500; white-space: nowrap; transition: opacity 0.2s;
}
.contact-item:hover { opacity: 0.8; }
.contact-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* ── KALENDER EVENT LIST ── */
.event-list { padding: 2.5rem 3rem; }
.event-list-item {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 1.5rem; padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: start;
}
.event-list-item:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.eli-date { text-align: center; }
.eli-day { font-family: var(--font-h); font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.eli-month { font-size: 0.6rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; line-height: 1.4; }
.eli-type { font-size: 0.62rem; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.2rem; }
.eli-title { font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.eli-meta { font-size: 0.88rem; color: var(--muted); }
.past-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--muted); font-family: var(--font-b);
  font-size: 0.82rem; letter-spacing: 1px;
  padding: 1.5rem 0; width: 100%;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0.5rem; transition: color 0.2s;
}
.past-toggle:hover { color: var(--white); }
.past-toggle .arrow { transition: transform 0.3s; }
.past-toggle.open .arrow { transform: rotate(180deg); }
#past-list { display: none; }
#past-list.open { display: block; }
.past-item { opacity: 0.45; }

/* ── BOOKING ── */
.booking-grid { display: grid; grid-template-columns: 1fr 1.6fr; }
.booking-info { padding: 3rem; background: var(--orange2); }
.booking-info p { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.85; margin-bottom: 1.4rem; }
.format-item {
  padding: 0.65rem 0.75rem;
  border-left: 3px solid var(--teal);
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  background: rgba(0,0,0,0.1);
}
.booking-form-wrap { padding: 3rem; background: var(--orange); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; }
label {
  display: block; font-size: 0.72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
input, textarea, select {
  width: 100%; background: rgba(0,0,0,0.2);
  border: none; border-bottom: 2px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 0.9rem 0.6rem;
  font-family: var(--font-b); font-size: 1rem;
  outline: none; transition: border-color 0.2s; appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
select option { background: var(--orange2); color: white; }
textarea { resize: vertical; min-height: 120px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FLASH ── */
.flash { padding: 0.9rem 1.2rem; margin-bottom: 1.2rem; font-size: 0.85rem; border-left: 4px solid; }
.flash.success { border-color: #7fcf7f; background: rgba(127,207,127,0.12); color: #aff0af; }
.flash.error   { border-color: #e08080; background: rgba(224,128,128,0.12); color: #f5b0b0; }

/* ── PODCAST ── */
.podcast-hero {
  min-height: 100vh; padding: 7rem 3rem 4rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--orange); position: relative; overflow: hidden;
}
.podcast-hero::before {
  content: '"'; position: absolute; top: 3rem; right: 2rem;
  font-family: var(--font-h); font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none;
}
.podcast-title {
  font-family: var(--font-h);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 0.9;
}
.podcast-title em { color: var(--teal); font-style: normal; }
.platform-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.episode {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.episode:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.ep-num { font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; color: rgba(255,255,255,0.2); line-height: 1; }
.ep-title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 800; color: var(--white); text-transform: uppercase; }
.ep-meta { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
.ep-desc { font-size: 0.83rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; line-height: 1.65; }

/* ── PRESSE ── */
.presse-grid { display: grid; grid-template-columns: 1fr 1.6fr; }
.presse-sidebar { padding: 3rem; background: var(--orange2); }
.presse-main { padding: 3rem; background: var(--orange); }
.presse-main p { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.85; margin-bottom: 1.2rem; }
.presse-download {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: rgba(0,0,0,0.15);
  margin-bottom: 0.75rem; text-decoration: none; color: var(--white);
  transition: background 0.2s;
}
.presse-download:hover { background: rgba(0,0,0,0.25); }
.dl-icon { font-size: 1.4rem; }
.dl-name { font-size: 0.85rem; font-weight: 500; }
.dl-size { font-size: 0.68rem; color: var(--muted); }

/* ── ADMIN ── */
.admin-wrap { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--teal);
}
.admin-title { font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; color: var(--white); }
.admin-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 2px solid rgba(255,255,255,0.15); }
.admin-tab {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.75rem 1.5rem; cursor: pointer;
  color: var(--muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; text-decoration: none; transition: color 0.2s;
}
.admin-tab.active, .admin-tab:hover { color: var(--white); border-color: var(--teal); }
.admin-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
table { width: 100%; border-collapse: collapse; }
th { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); padding: 0.6rem 0.8rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.15); }
td { font-size: 0.8rem; color: var(--muted); padding: 0.75rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
td.strong { color: var(--white); }
.action-btns { display: flex; gap: 0.4rem; }
.form-box { background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.1); padding: 1.75rem; }
.form-box h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; letter-spacing: 1px; }

/* ── FOOTER ── */
footer {
  background: var(--teal); padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-h); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--white); letter-spacing: 1px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 1px; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { font-size: 0.65rem; color: rgba(255,255,255,0.5); }

/* ── BACK LINK ── */
.back-link {
  position: fixed; top: 1rem; left: 2.5rem;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none; z-index: 50; transition: color 0.2s;
}
.back-link:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.fade-up:nth-child(1){animation-delay:.05s}
.fade-up:nth-child(2){animation-delay:.15s}
.fade-up:nth-child(3){animation-delay:.25s}
.fade-up:nth-child(4){animation-delay:.35s}
.fade-up:nth-child(5){animation-delay:.45s}

/* ── RESPONSIVE ── */
@media(max-width:768px){
  nav { padding: 0 1.25rem; }
  .nav-logo { font-size: 0.95rem; letter-spacing: 0.5px; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.6rem; letter-spacing: 1px; }
  .btn { padding: 1rem 1.8rem; font-size: 0.82rem; min-height: 48px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { aspect-ratio: 4/3; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-section { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid, .booking-grid, .presse-grid { grid-template-columns: 1fr; }
  .page-header, .event-list, .events-section,
  .reviews-section, .booking-info, .booking-form-wrap,
  .presse-sidebar, .presse-main, .about-text { padding: 2rem 1.5rem; }
  .about-contact { padding: 1.5rem; gap: 1rem; flex-direction: column; align-items: flex-start; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .tagline-strip { padding: 1.25rem 1.5rem; }
  .admin-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
}

/* ── FORMAT BLOCKS (booking) ── */
.format-block {
  border-left: 3px solid var(--teal);
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
  background: rgba(0,0,0,0.12);
}
.format-name {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 0.35rem;
}
.format-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.82);
  line-height: 1.7; margin-bottom: 0.35rem;
}
.format-meta {
  font-size: 0.68rem; color: var(--teal);
  letter-spacing: 0.5px;
}

/* ── HIGHLIGHT BADGE ── */
.highlight-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.4rem;
}

/* ── MEDIA ITEMS ── */
.media-item {
  background: rgba(0,0,0,0.15);
  padding: 0.75rem 1.1rem;
  border-left: 3px solid var(--white);
  min-width: 160px;
}
.media-channel {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white);
}
.media-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

/* ── HAMBURGER MENU ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--teal2);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 1;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
}
