/* ============================================
   Fußballcamp St. Pölten – Main Stylesheet
   ============================================ */

@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --green:       #35a63d;
  --green-light: #84db5e;
  --green-dark:  #27822f;
  --black:       #111111;
  --white:       #ffffff;
  --grey-bg:     #f5f5f5;
  --grey-text:   #555555;
  --font-body:   'Work Sans', sans-serif;
  --font-display:'Work Sans', sans-serif;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --nav-height:  72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; max-width: 100%;}
body {
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 800; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ── */
.container     { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.section       { padding: 72px 0; }
.section-sm    { padding: 48px 0; }
.text-center   { text-align: center; }
.text-left     { text-align: left; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-green  { background: var(--green);  color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: rgba(255,255,255,0.82); }
.btn-black  { background: var(--black);  color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #333; border-color: #333; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
/* Storno page CTA – white text on transparent/outlined */
.btn-storno-cta { background: transparent; color: var(--white); border-color: var(--white); }
.btn-storno-cta:hover { background: var(--white); color: var(--black); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: var(--nav-height);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-logo img { height: 50px; }
.navbar-logo:hover { opacity: 0.85; }

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--green); }

/* Dropdown */
.nav-menu .dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  border-top: 3px solid var(--green);
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover { background: var(--grey-bg); color: var(--green); }
.nav-menu li:hover .dropdown-menu { display: block; }

/* Invisible bridge so mouse can travel from nav item to dropdown */
.nav-menu li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

/* CTA button in nav */
.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
  padding: 16px 0;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #f0f0f0;
  color: var(--black);
}
.nav-mobile ul li a:hover { color: var(--green); background: var(--grey-bg); }
.nav-mobile .sub-menu { padding-left: 16px; background: #fafafa; }
.nav-mobile .sub-menu a { font-weight: 500; text-transform: none; font-size: 0.9rem; }
.nav-mobile .nav-cta-mobile {
  padding: 16px 24px;
}
.nav-mobile .nav-cta-mobile .btn { width: 100%; text-align: center; }

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
  background: var(--green-light);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  opacity: 0.85;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
@media (max-width: 600px) {
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ============================================
   HOME HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 100px 0 80px;
}
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 3px 16px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.hero-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #c0392b;
  overflow: hidden;
  z-index: 10;
  padding: 15px 0;
}
.hero-strip-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.hero-strip-inner span {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-buttons {
    padding: 0 24px;
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { background: var(--grey-bg); }
.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  max-width: 480px;
  margin: 0 auto;
}
.video-thumb img { width: 100%; transition: transform 0.3s; }
.video-thumb:hover img { transform: scale(1.03); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(53,166,61,0.5);
  transition: transform 0.2s, background 0.2s;
}
.play-btn::after {
  content: '';
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 5px;
}
.video-thumb:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); background: var(--green-dark); }

/* Video modal */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.modal-close {
  position: absolute;
  top: -40px; right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.modal-box iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 8px; }

/* ============================================
   INFO / FEATURE SECTIONS
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }
.info-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.info-text h2 { margin-bottom: 1rem; }
.info-text p  { color: var(--grey-text); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p  { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-card-body { padding: 16px; }
.team-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card-body p  { font-size: 0.85rem; color: var(--green); font-weight: 600; margin: 0; }

/* Expert card (horizontal) */
.expert-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.expert-card img { width: 100%; height: 100%; object-fit: cover; object-position: top;}
.expert-card-body { padding: 32px 32px 32px 0; }
.expert-card-body h3 { margin-bottom: 4px; }
.expert-card-body .role { color: var(--green); font-style: italic; font-size: 0.95rem; margin-bottom: 1rem; }
.expert-card-body blockquote {
  border-left: 4px solid var(--green);
  padding-left: 16px;
  color: var(--grey-text);
  font-style: italic;
}

/* ============================================
   TESTIMONIALS / KONZEPT
   ============================================ */
.testimonial {
  background: var(--grey-bg);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}
.testimonial-img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--green);
}
.testimonial h3 { margin-bottom: 4px; }
.testimonial .role { color: var(--green); font-style: italic; font-size: 0.9rem; margin-bottom: 1.5rem; }
.testimonial-quote { color: var(--grey-text); font-style: italic; max-width: 680px; margin: 0 auto; }

/* ============================================
   SPONSORS / PARTNERS
   ============================================ */
.partners { background: var(--grey-bg); }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}
.partners-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: opacity 0.2s, filter 0.2s;
}
.partners-grid a:hover { opacity: 1; filter: grayscale(0); }
.partners-grid img { height: 55px; width: auto; object-fit: contain; }

@media (max-width: 600px) {
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-items: center;
  }
  .partners-grid a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .partners-grid img { height: 40px; }
}

/* ============================================
   GALLERY / SLIDER
   ============================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.photo-grid img:hover { transform: scale(1.02); opacity: 0.92; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close {
  position: fixed; top: 20px; right: 28px;
  color: white; font-size: 2.5rem;
  cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: white; font-size: 2rem;
  padding: 12px 16px; cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion { max-width: 820px; margin: 0 auto; }
.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  transition: background 0.15s;
  user-select: none;
}
.accordion-header:hover { background: var(--grey-bg); }
.accordion-header.active { color: var(--green); background: var(--grey-bg); }
.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  margin-top: 10px;
  padding: 0 22px 18px;
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.contact-box {
  background: var(--grey-bg);
  border-radius: 12px;
  padding: 32px;
}
.contact-box h3 { margin-bottom: 12px; font-size: 1.1rem; }
.contact-box p  { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 6px; }
.contact-box a  { color: var(--green); font-weight: 600; }
.contact-box a:hover { text-decoration: underline; }

/* ============================================
   FORM
   ============================================ */
.form-section { background: var(--grey-bg); }
.form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}
.price-box {
  background: var(--grey-bg);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.price-box h4 { margin-bottom: 8px; }
.price-box p { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 0; }

/* ============================================
   FRENKIE PAGE
   ============================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}
.profile-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.profile-img img { width: 100%; }
.profile-text .role {
  color: var(--green);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.profile-text blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  background: var(--grey-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--grey-text);
  margin: 1.5rem 0;
}

/* ============================================
   INFO / PACKLISTE / PROGRAMM
   ============================================ */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
  margin: 1rem 0;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.checklist-item:hover { background: #e8e8e8; }
.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}
.checklist-item.checked {
  background: #e8f5e9;
  text-decoration: line-through;
  color: #888;
}

.info-feature-box {
  background: var(--green);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.info-feature-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.info-feature-box p  { color: rgba(255,255,255,0.88); margin: 0; }

/* Flyer download box */
.download-box {
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.download-box h3 { margin-bottom: 0.5rem; }
.download-box p  { color: var(--grey-text); margin-bottom: 1.5rem; }

/* ============================================
   TEXT / LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-content h2 { color: var(--black); margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.legal-content a   { color: var(--green); }

/* ============================================
   VENUE PHOTO GRID
   ============================================ */
.venue-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.venue-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.venue-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.venue-side img {
  width: 100%;
  flex: 1;
  height: 205px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.venue-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.venue-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.venue-main img:hover,
.venue-side img:hover,
.venue-thumbs img:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .venue-grid { grid-template-columns: 1fr; }
  .venue-main img { height: 260px; }
  .venue-side { flex-direction: row; }
  .venue-side img { height: 130px; }
  .venue-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   WOCHENPROGRAMM TABLE
   ============================================ */
.program-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--green) #2a2a2a;
}
.program-table-wrap::-webkit-scrollbar { height: 6px; }
.program-table-wrap::-webkit-scrollbar-track { background: #2a2a2a; border-radius: 6px; }
.program-table-wrap::-webkit-scrollbar-thumb { background: var(--green); border-radius: 6px; }

/* Scroll hint shown only on mobile */
.scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.scroll-hint span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 700px) {
  .scroll-hint { display: block; }
}

.program-table {
  width: 100%;
  border-collapse: collapse;
  background: #2a2a2a;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 600px;
}
.program-table thead th {
  background: var(--green);
  color: var(--white);
  padding: 14px 18px;
  font-weight: 700;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.program-table thead th:first-child {
  background: #2a2a2a;
}
.program-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.program-table tbody td {
  padding: 16px 18px;
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.program-table tbody td.day-col {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  min-width: 130px;
}
.program-table tbody td.note-col {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
}
.program-table tbody td.highlight-cell {
  color: var(--green-light);
  font-weight: 700;
}
.program-table tbody tr:last-child {
  border-bottom: none;
}

/* ============================================
   BUTTON FIXES
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.contact-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--black);
}
.contact-card p {
  font-size: 0.85rem;
  color: var(--grey-text);
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-card a {
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  word-break: break-word;
}
.contact-card a:hover { text-decoration: underline; }

/* Camp 24 preview grid (placeholder until photos arrive) */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.preview-placeholder {
  aspect-ratio: 4/3;
  background: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  font-style: italic;
}
.preview-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .contact-cards { 
    grid-template-columns: repeat(2, 1fr); 
    max-width: 100%; 
    margin: 0 auto; 
  }
  .contact-cards .contact-card:last-child:nth-child(odd) { 
    grid-column: 1 / -1; 
    max-width: 50%; 
    margin: 0 auto; 
    width: 100%;
  }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .contact-cards { 
    grid-template-columns: 1fr; 
    max-width: 100%; 
    margin: 0 auto; 
  }
  .contact-cards .contact-card:last-child:nth-child(odd) { 
    grid-column: unset; 
    max-width: 100%; 
    margin: 0; 
  }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  text-align: center;
  font-size: 0.875rem;
}
.site-footer a { color: var(--green); white-space: nowrap; }
.site-footer a:hover { text-decoration: underline; }

/* ============================================
   HERO SPLIT (Logo links / Text rechts)
   ============================================ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-side img {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.hero-text-side {
  text-align: center;
}
.hero-text-side .hero-badge {
  margin-bottom: 1rem;
}
.hero-text-side .hero-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-logo-side img {
    max-width: 130px;
  }
  .hero-content {
    padding: 60px 0 48px;
  }
  .hero-logo-side {
  padding-top: 40px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 1200px) {
  .nav-mobile.open { display: block; }
}

@media (max-width: 991px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .info-grid { grid-template-columns: 1fr; gap: 28px; }
  .info-grid.reverse { direction: ltr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-grid .profile-img { max-width: 320px; }
  .expert-card { grid-template-columns: 1fr; }
  .expert-card img { aspect-ratio: 4/3; }
  .expert-card-body { padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { padding: 24px; }
  .hero { min-height: 70vh; }
  .hero-ribbon { font-size: 0.6rem; padding: 6px 60px; top: 32px; right: -60px; }
  .partners-grid img { height: 45px; }
}

.info-grid-frenkie {
  grid-template-columns: 420px 1fr;
}

@media (max-width: 991px) {
  .info-grid-frenkie {
    grid-template-columns: 1fr;
  }
  .info-grid-frenkie .info-img img {
    max-height: 380px;
    object-fit: cover;
    box-shadow: none;
    background: transparent;
    object-position: top;
    border-radius: 12px;
  }
}
@media (max-width: 991px) {
  .info-grid-frenkie .info-img {
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.55rem;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .info-grid-frenkie .info-text {
    text-align: center;
  }
  .info-grid-frenkie .info-text .btn {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-items: center;
  }
  .partners-grid a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-footer {
  margin-top: auto;
}

.site-footer a[href="https://abely.at"] {
  white-space: nowrap;
}