/* ============================================================
   TAUNUS PAINTBALL — APPLE STYLE THEME CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0071e3;
  --blue-hv: #0077ed;
  --dark:    #1d1d1f;
  --muted:   #6e6e73;
  --bg:      #ffffff;
  --bg2:     #f5f5f7;
  --border:  rgba(0,0,0,0.08);
  --radius:  18px;
  --nav-h:   52px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hv); }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--dark);
}
h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 2vw, 22px); }
p  { font-size: 17px; line-height: 1.7; color: #3a3a3c; }

/* CONTAINER */
.tp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.tp-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ── */
.tp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-nav-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.tp-nav-logo img { height: 32px; width: auto; }
.tp-nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.tp-nav-menu a {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.85;
  transition: opacity 0.15s, color 0.15s;
}
.tp-nav-menu a:hover { opacity: 1; color: var(--blue); }
.tp-nav-cta {
  background: var(--blue);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 980px;
  transition: background 0.2s;
  opacity: 1 !important;
}
.tp-nav-cta:hover { background: var(--blue-hv) !important; }

/* ── HERO ── */
.tp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background-image: url('/spielfeld/wp-content/uploads/2022/03/paintball-g4f8ae67cc_1920.jpg');
  background-size: cover;
  background-position: center;
  background-color: rgba(12,53,67,0.55);
  background-blend-mode: multiply;
}
.tp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}
.tp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.tp-hero h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.tp-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 21px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  margin-bottom: 36px;
}
.tp-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 980px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

/* ── BUTTONS ── */
.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.tp-btn:hover { background: var(--blue-hv); color: #fff; transform: scale(1.02); }
.tp-btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.tp-btn-secondary:hover { background: rgba(255,255,255,0.25); }
.tp-btn-dark { background: var(--dark); }
.tp-btn-dark:hover { background: #2d2d2f; }
.tp-btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.tp-btn-outline:hover { background: var(--blue); color: #fff; }
.tp-btn-sm { font-size: 15px; padding: 10px 22px; }

/* ── SECTIONS ── */
.tp-section { padding: 96px 0; }
.tp-section-sm { padding: 64px 0; }
.tp-section-bg { background: var(--bg2); }
.tp-section-dark {
  background: var(--dark);
  color: #fff;
}
.tp-section-dark h1,
.tp-section-dark h2,
.tp-section-dark h3,
.tp-section-dark h4 { color: #fff; }
.tp-section-dark p { color: rgba(255,255,255,0.7); }

.tp-section-title {
  text-align: center;
  margin-bottom: 64px;
}
.tp-section-title h2 { margin-bottom: 16px; }
.tp-section-title p {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.tp-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ── BENEFITS GRID ── */
.tp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tp-benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tp-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.tp-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,113,227,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.tp-benefit-card h4 { margin-bottom: 8px; font-size: 18px; }
.tp-benefit-card p { font-size: 15px; color: var(--muted); }

/* ── SPIELFELDER ── */
.tp-spielfelder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.tp-spielfelder-video {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark);
}
.tp-spielfelder-video iframe,
.tp-spielfelder-video video {
  width: 100%;
  height: 100%;
  border: none;
}
.tp-spielfelder-text h2 { margin-bottom: 20px; }
.tp-spielfelder-text p { margin-bottom: 16px; }
.tp-field-tag {
  display: inline-block;
  background: rgba(0,113,227,0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 980px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ── PRICING ── */
.tp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.tp-pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.tp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.tp-pricing-card.featured {
  border-color: var(--blue);
  border-width: 2px;
}
.tp-pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 32px;
  transform: rotate(45deg);
}
.tp-pricing-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.tp-pricing-price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.tp-pricing-price sup { font-size: 20px; font-weight: 500; vertical-align: top; margin-top: 8px; }
.tp-pricing-unit { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.tp-pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  font-size: 14px;
}
.tp-pricing-features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: #3a3a3c;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tp-pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.tp-pricing-features li.missing { color: var(--muted); }
.tp-pricing-features li.missing::before { content: '–'; color: var(--muted); }

/* ── KIDS SECTION ── */
.tp-kids {
  background: var(--bg2);
}
.tp-kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tp-kids-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tp-kids-images img {
  border-radius: 16px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.tp-kids-images img:first-child {
  margin-top: 32px;
}

/* ── BOOKING CALENDAR ── */
.tp-booking {
  background: var(--bg);
}
.tp-booking-wrapper {
  background: var(--bg2);
  border-radius: 24px;
  padding: 48px;
}

/* ── CONTACT SECTION ── */
.tp-contact {
  background: var(--bg2);
}
.tp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.tp-contact-info h2 { margin-bottom: 20px; }
.tp-contact-info p { margin-bottom: 24px; }
.tp-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}
.tp-contact-detail span { font-size: 20px; }

/* ── FOOTER ── */
.tp-footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.tp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.tp-footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.tp-footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; }
.tp-footer-col h4 {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.tp-footer-col ul { list-style: none; }
.tp-footer-col ul li { margin-bottom: 10px; }
.tp-footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.15s;
}
.tp-footer-col ul a:hover { color: #fff; }
.tp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tp-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.tp-footer-bottom a { color: rgba(255,255,255,0.4); }
.tp-footer-bottom a:hover { color: #fff; }

/* ── FORMS ── */
.tp-form-group { margin-bottom: 20px; }
.tp-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.tp-form-group input,
.tp-form-group select,
.tp-form-group textarea {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.tp-form-group input:focus,
.tp-form-group select:focus,
.tp-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.15);
}
.tp-form-group textarea { min-height: 120px; resize: vertical; }

/* ── DIVIDER ── */
.tp-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── BADGE / TAG ── */
.tp-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 980px;
}
.tp-tag-blue { background: rgba(0,113,227,0.12); color: var(--blue); }
.tp-tag-grey { background: var(--bg2); color: var(--muted); }

/* ── WHATSAPP ── */
.tp-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.tp-whatsapp:hover { transform: scale(1.08); }
.tp-whatsapp svg { width: 28px; height: 28px; fill: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tp-spielfelder-grid,
  .tp-kids-grid,
  .tp-contact-grid { grid-template-columns: 1fr; }
  .tp-footer-grid { grid-template-columns: 1fr 1fr; }
  .tp-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tp-section { padding: 64px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .tp-nav-menu { display: none; }
  .tp-hero { min-height: 80vh; }
  .tp-hero h1 { font-size: 38px; }
  .tp-hero p { font-size: 18px; }
  .tp-pricing-grid { grid-template-columns: 1fr 1fr; }
  .tp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tp-benefits-grid { grid-template-columns: 1fr; }
  .tp-kids-grid { grid-template-columns: 1fr; }
  .tp-booking-wrapper { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .tp-pricing-grid { grid-template-columns: 1fr; }
  .tp-container { padding: 0 16px; }
  .tp-btn { width: 100%; justify-content: center; }
}

/* ── PLUGIN OVERRIDES ── */
/* Sicherstellen dass Plugin-Output sauber aussieht */
.tp-booking-wrapper * { font-family: 'Inter', -apple-system, sans-serif !important; }
.tp-booking-wrapper input,
.tp-booking-wrapper select,
.tp-booking-wrapper button { border-radius: 10px !important; }
.tp-booking-wrapper button[type="submit"],
.tp-booking-wrapper .btn-primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  border-radius: 980px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Contact Form Override */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,0.15) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  font-family: 'Inter', sans-serif !important;
  background: #fff !important;
  outline: none !important;
}
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="button"] {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 980px !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
}


/* ══════════════════════════════════════
   FIXES v1.1
══════════════════════════════════════ */

/* Admin Bar Abstand */
body.admin-bar .tp-nav { top: 32px; }
@media screen and (max-width:782px) {
  body.admin-bar .tp-nav { top: 46px; }
}

/* Hero Headline weiss & lesbar */
.tp-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4) !important;
}

/* Kein Whitespace nach Footer */
html, body { margin-bottom: 0 !important; }
.tp-footer { margin-bottom: 0 !important; }

/* Kontakt Formular Box */
.tp-contact-grid > div:last-child {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Kids Bilder Placeholder */
.tp-kids-images img {
  background: linear-gradient(135deg, #e8e8f0 0%, #d0d0e0 100%);
  min-height: 300px;
  border: none;
}

/* Avada-Reste ausblenden */
#wpadminbar + * .fusion-header-wrapper { display: none !important; }


/* ══════════════════════════════════════
   UNTERSEITEN - Avada Content Reset
══════════════════════════════════════ */

/* Avada Builder Container auf Unterseiten bereinigen */
.tp-page-content .fusion-fullwidth,
.tp-page-content .fusion-builder-row-container,
.tp-page-content [class*="fusion-builder-row"] {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Pinker Splatter weg */
.tp-page-content .fusion-section-separator,
.tp-page-content [class*="awb-mask"],
.tp-page-content .has-mask-background::before,
.tp-page-content .has-mask-background::after,
.tp-page-content .has-pattern-background::before,
.tp-page-content .has-pattern-background::after {
  display: none !important;
}

/* Schwarze Rahmen weg */
.tp-page-content .fusion-layout-column,
.tp-page-content .fusion-column-inner-bg,
.tp-page-content .fusion-layout-column .fusion-column-content {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Text in Fusion Containern lesbar */
.tp-page-content .fusion-text,
.tp-page-content .fusion-text p,
.tp-page-content .fusion-title h1,
.tp-page-content .fusion-title h2,
.tp-page-content .fusion-title h3,
.tp-page-content .fusion-checklist li {
  color: #1d1d1f !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Buttons auf Unterseiten */
.tp-page-content .fusion-button,
.tp-page-content a.fusion-button {
  background: #0071e3 !important;
  background-color: #0071e3 !important;
  border-color: #0071e3 !important;
  border-radius: 980px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  box-shadow: none !important;
}

/* AWB Hintergrundbild auf Unterseiten entfernen */
.tp-page-content .fusion-fullwidth[style] {
  background-image: none !important;
  background-color: transparent !important;
}

/* Seiten-Wrapper sauberer Abstand */
.tp-page-content {
  max-width: 900px;
}
.tp-page-content > * { margin-bottom: 24px; }
.tp-page-content h1 { margin-bottom: 32px; }
.tp-page-content p { line-height: 1.7; color: #3a3a3c; }
.tp-page-content ul, .tp-page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.tp-page-content li { margin-bottom: 8px; }

/* FAQ Plugin auf Unterseite */
.tp-page-content .tpb-faq-wrapper,
.tp-page-content [class*="faq"] {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Ankerpunkte mit Abstand */
.tp-page-content h2, .tp-page-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Footer Logo auf dunklem Hintergrund */
.tp-footer .tp-footer-brand img {
  opacity: 0.9;
  max-height: 40px;
}


/* Unterseiten: alle Texte lesbar, keine Opacity-Fading */
.tp-page-content * {
  color: #1d1d1f !important;
  opacity: 1 !important;
}
.tp-page-content a { color: #0071e3 !important; }
.tp-page-content .fusion-button,
.tp-page-content a.fusion-button { color: #fff !important; }

/* Footer Logo sichtbar auf dunklem Hintergrund */
.tp-footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


/* ══════════════════════════════════════
   TAUNUS PAKETE PLUGIN — Apple Style
══════════════════════════════════════ */

.tp-pakete-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Gruppen-Überschrift */
.tp-gruppe-header {
  margin: 48px 0 20px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}
.tp-gruppe-header:first-child { margin-top: 0 !important; }
.tp-gruppe-titel {
  font-size: clamp(18px, 2.2vw, 26px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #1d1d1f !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* Grid Spalten */
.tp-pakete-grid {
  display: grid !important;
  gap: 18px !important;
  list-style: none !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
}
.tp-cols-5 { grid-template-columns: repeat(5, 1fr) !important; }
.tp-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.tp-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.tp-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.tp-cols-1 { grid-template-columns: 1fr 1fr !important; }

/* Karte */
.tp-paket {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.09) !important;
  border-radius: 18px !important;
  padding: 28px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  position: relative !important;
  overflow: visible !important;
  list-style: none !important;
}
.tp-paket:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1) !important;
}

/* Paket Header */
.tp-paket-header { margin-bottom: 4px !important; }
.tp-paket-name {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #6e6e73 !important;
  font-family: 'Inter', sans-serif !important;
  display: block !important;
  margin-bottom: 8px !important;
}

/* Badge */
.tp-paket-badge {
  position: absolute !important;
  top: -1px !important;
  right: 18px !important;
  background: #0071e3 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: 0 0 8px 8px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Preis */
.tp-preis {
  margin-bottom: 4px !important;
  line-height: 1 !important;
}
.tp-preis-zahl {
  font-size: 38px !important;
  font-weight: 700 !important;
  letter-spacing: -2px !important;
  color: #1d1d1f !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1 !important;
}
.tp-preis-info {
  font-size: 12px !important;
  color: #6e6e73 !important;
  display: block !important;
  margin: 4px 0 16px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Mindestpersonen */
.tp-mindest {
  font-size: 12px !important;
  color: #6e6e73 !important;
  margin-bottom: 12px !important;
  display: block !important;
}

/* Features */
.tp-leistungen {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  flex: 1 !important;
}
.tp-leistungen li {
  padding: 7px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  font-size: 13px !important;
  color: #3a3a3c !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  line-height: 1.4 !important;
  font-family: 'Inter', sans-serif !important;
}
.tp-leistungen li:last-child { border-bottom: none !important; }

/* Häkchen */
.tp-check {
  color: #0071e3 !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  font-size: 13px !important;
  margin-top: 1px !important;
}

/* Feature Text */
.tp-leistung-text {
  flex: 1 !important;
  font-family: 'Inter', sans-serif !important;
  color: #3a3a3c !important;
}

/* Tooltip — versteckt, nur bei Hover */
.tp-tooltip {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}
.tp-tooltip-text {
  display: none !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #1d1d1f !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  z-index: 100 !important;
  width: max-content !important;
  max-width: 200px !important;
  white-space: normal !important;
  text-align: center !important;
  pointer-events: none !important;
}
.tp-tooltip:hover .tp-tooltip-text { display: block !important; }

/* Info-Icon */
.tp-tooltip > [class*="icon"],
.tp-tooltip > i,
.tp-tooltip > .dashicons {
  color: #0071e3 !important;
  font-size: 12px !important;
  cursor: help !important;
}

/* Buchen Button */
.tp-btn-buchen {
  display: block !important;
  background: transparent !important;
  color: #0071e3 !important;
  border: 1.5px solid #0071e3 !important;
  border-radius: 980px !important;
  padding: 10px 20px !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  margin-top: auto !important;
  transition: background 0.2s, color 0.2s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.tp-btn-buchen:hover {
  background: #0071e3 !important;
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 900px) {
  .tp-cols-5 { grid-template-columns: repeat(3, 1fr) !important; }
  .tp-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .tp-pakete-grid { grid-template-columns: 1fr 1fr !important; }
  .tp-cols-1 { grid-template-columns: 1fr !important; }
}
@media (max-width: 400px) {
  .tp-pakete-grid { grid-template-columns: 1fr !important; }
}


/* ── FOOTER TEXT FIX — Override globale Farbregeln ── */
.tp-footer,
.tp-footer *,
.tp-footer p,
.tp-footer h4,
.tp-footer a,
.tp-footer ul,
.tp-footer li {
  color: rgba(255,255,255,0.65) !important;
}
.tp-footer h4 {
  color: rgba(255,255,255,0.45) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 14px !important;
}
.tp-footer-brand p {
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.tp-footer a:hover {
  color: #fff !important;
}
.tp-footer-bottom p {
  color: rgba(255,255,255,0.3) !important;
  font-size: 13px !important;
}


/* ══════════════════════════════════════════════════
   BESUCHERGALERIE — page-id-2355
══════════════════════════════════════════════════ */

/* Kein weißer Kasten — volle Breite */
body.page-id-2355 .tp-page-wrapper { background: var(--light); padding: 0; }
body.page-id-2355 .tp-page-content-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  max-width: 100%;
}

/* Hero-Banner oben */
body.page-id-2355 .tp-page-content-card::before {
  content: '';
  display: block;
  background: var(--dark);
  padding: 64px 0 40px;
}

/* Überschrift */
body.page-id-2355 .tp-page-content .entry-title,
body.page-id-2355 h1.entry-title {
  text-align: center;
  font-size: clamp(32px,5vw,56px);
  color: var(--dark);
  margin: 48px auto 8px;
}

/* Grid-Container sauber */
body.page-id-2355 .fusion-gallery-container,
body.page-id-2355 .fusion-gallery {
  padding: 0 !important;
  margin: 0 !important;
}

/* Spalten gleichmäßig */
body.page-id-2355 .fusion-grid-column {
  padding: 6px !important;
}

/* Bilder: runde Ecken + Hover */
body.page-id-2355 .fusion-gallery-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
body.page-id-2355 .fusion-gallery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}
body.page-id-2355 .fusion-gallery-image:hover img {
  transform: scale(1.04);
}
body.page-id-2355 .fusion-gallery-image::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  font-size: 28px;
  background: rgba(0,0,0,.45);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
  pointer-events: none;
}
body.page-id-2355 .fusion-gallery-image:hover::after {
  transform: translate(-50%,-50%) scale(1);
}

/* Seite: Padding oben/unten */
body.page-id-2355 .tp-page-content {
  padding: 0 0 64px !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gutschein Nav-Button — blaue Schrift sichtbar */
.tp-nav a[href*="gutschein"].tp-nav-cta {
  background: transparent !important;
  color: #0071e3 !important;
  border: 2px solid #0071e3 !important;
}
.tp-nav a[href*="gutschein"].tp-nav-cta:hover {
  background: #0071e3 !important;
  color: #fff !important;
}

/* Galerie: weißer Avada-Hintergrund entfernen */
body.page-id-2355 .fusion-builder-row,
body.page-id-2355 .fusion-row,
body.page-id-2355 .fusion-fullwidth > div {
  background: transparent !important;
  box-shadow: none !important;
}
body.page-id-2355 .tp-page-content {
  background: #f5f5f7 !important;
}


/* ══════════════════════════════════════════════════════
   MOBILE NAVIGATION — Hamburger Menu
══════════════════════════════════════════════════════ */

/* Hamburger-Button: standardmäßig versteckt */
.tp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
}
.tp-hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #0071e3;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* X-Animation wenn offen */
nav.tp-nav-open .tp-hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
nav.tp-nav-open .tp-hamburger span:nth-child(2) { opacity: 0; }
nav.tp-nav-open .tp-hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Dropdown-Menü: standardmäßig versteckt */
.tp-mobile-menu {
  display: none;
}

/* ── Mobile: ≤ 768px ── */
@media (max-width: 768px) {
  .tp-hamburger { display: flex; }

  .tp-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0 24px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }

  nav.tp-nav-open .tp-mobile-menu {
    transform: translateY(0);
    pointer-events: all;
  }

  .tp-mobile-menu a {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.15s ease;
  }
  .tp-mobile-menu a:hover { background: #f5f5f7; }
  .tp-mobile-menu a:last-child { border-bottom: none; }

  .tp-mobile-menu .tp-mobile-cta {
    margin: 12px 24px 0;
    background: #0071e3;
    color: #fff !important;
    border-radius: 980px;
    text-align: center;
    border-bottom: none;
    padding: 14px 24px;
  }
  .tp-mobile-menu .tp-mobile-cta:hover { background: #0077ed; }

  /* Kids Images auf Mobile: untereinander */
  .tp-kids-images {
    flex-direction: column !important;
  }
  .tp-kids-images img {
    width: 100% !important;
    height: 220px !important;
  }
}


/* ══ LIVE FIX — body width + logo path ══ */
body { max-width: 100% !important; width: 100% !important; margin: 0 !important; }
html { max-width: 100% !important; }


/* ══ LOGO FIXES ══ */
.tp-nav { justify-content: flex-start !important; }
.tp-nav-logo { margin-right: auto !important; flex-shrink: 0; }
.tp-footer-brand img { height: 120px !important; width: 120px !important; object-fit: contain !important; }
