/* Paradiso Buchen – eigenständiges CSS (ersetzt Tailwind/shadcn) */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --background: 45 70% 94%;
  --foreground: 220 30% 10%;
  --card: 0 0% 100%;
  --card-foreground: 220 30% 10%;
  --primary: 28 100% 58%;
  --primary-foreground: 0 0% 100%;
  --secondary: 200 90% 55%;
  --secondary-foreground: 0 0% 100%;
  --muted: 45 50% 96%;
  --muted-foreground: 220 15% 45%;
  --accent: 120 70% 55%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 45 35% 88%;
  --radius: 1.2rem;
  --pink: 320 85% 65%;
  --purple: 270 75% 65%;
  --lime: 85 80% 55%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
}
h1, h2, h3, h4, .font-display {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
.section { padding: 5rem 0; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  border-radius: 0.75rem;
  height: 2.5rem;
  padding: 0 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}
.btn-lg { height: 2.75rem; padding: 0 2rem; font-size: 1.05rem; }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.25);
}
.btn-primary:hover { filter: brightness(1.03); box-shadow: 0 8px 20px hsl(var(--primary)/0.3); }
.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 14px hsl(var(--secondary) / 0.25);
}
.btn-secondary:hover { filter: brightness(1.03); box-shadow: 0 8px 20px hsl(var(--secondary)/0.3); }
.btn-outline {
  background: hsl(var(--background));
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover { background: hsl(var(--primary)); color: #fff; }
.btn-gradient {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--pink)), hsl(var(--secondary)));
  color: #fff;
}
.btn-gradient:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-block { width: 100%; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.navbar-logo img { height: 3.5rem; width: auto; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.8);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: hsl(var(--primary)); background: hsl(var(--primary) / 0.1); }
.nav-toggle { display: block; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu { display: none; flex-direction: column; gap: 0.4rem; padding: 1rem 0; border-top: 1px solid hsl(var(--border)); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.75rem 1rem; border-radius: 0.6rem; font-weight: 600; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, hsl(var(--background) / 0.95), hsl(var(--background) / 0.8) 50%, hsl(var(--background) / 0.4));
}
.hero-content { position: relative; z-index: 1; max-width: 42rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; margin-bottom: 1.5rem;
}
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.1; }
.hero h1 .accent1 { color: hsl(var(--primary)); }
.hero h1 .accent2 { color: hsl(var(--secondary)); }
.hero p.lead { font-size: 1.25rem; font-weight: 500; color: hsl(var(--foreground) / 0.8); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.stat-card {
  padding: 1.25rem; border-radius: 1rem; border: 2px solid;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.stat-card .value { font-family: 'Fredoka', sans-serif; font-size: 2.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-card .label { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground) / 0.8); }
.stat-primary { background: linear-gradient(135deg, hsl(var(--primary)/0.2), hsl(var(--primary)/0.05)); border-color: hsl(var(--primary)/0.3); }
.stat-primary .value { color: hsl(var(--primary)); }
.stat-secondary { background: linear-gradient(135deg, hsl(var(--secondary)/0.2), hsl(var(--secondary)/0.05)); border-color: hsl(var(--secondary)/0.3); }
.stat-secondary .value { color: hsl(var(--secondary)); }
.stat-accent { background: linear-gradient(135deg, hsl(var(--accent)/0.2), hsl(var(--accent)/0.05)); border-color: hsl(var(--accent)/0.3); }
.stat-accent .value { color: hsl(var(--accent)); }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }

/* Sections with tinted backgrounds */
.bg-tint-1 { background: linear-gradient(135deg, hsl(var(--lime)/0.05), hsl(var(--accent)/0.05), hsl(var(--primary)/0.05)); }
.bg-tint-2 { background: linear-gradient(135deg, hsl(var(--primary)/0.05), hsl(var(--accent)/0.05), hsl(var(--secondary)/0.05)); }
.bg-tint-3 { background: linear-gradient(135deg, hsl(var(--pink)/0.1), hsl(var(--purple)/0.05), hsl(var(--primary)/0.1)); }
.bg-tint-4 { background: linear-gradient(135deg, hsl(var(--secondary)/0.1), hsl(var(--purple)/0.05), hsl(var(--pink)/0.1)); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: hsl(var(--muted-foreground)); max-width: 40rem; margin: 0 auto; }
@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

/* Cards */
.card {
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  padding: 1.5rem;
}
.card.hover:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); transition: all .3s; }
.card.p-8 { padding: 2rem; }

/* Opening hours */
.hours-grid { display: grid; gap: 2rem; max-width: 60rem; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) { .hours-grid { grid-template-columns: 1fr 1fr; } }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid hsl(var(--border) / 0.5); }
.card-icon { display: inline-flex; padding: 0.75rem; border-radius: 999px; margin-bottom: 1rem; }
.notice-box { max-width: 60rem; margin: 2rem auto 0; background: hsl(var(--accent)/0.1); border: 1px solid hsl(var(--accent)/0.3); border-radius: 0.9rem; padding: 1.5rem; display: flex; gap: 1rem; }

/* Prices */
.price-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { text-align: center; border-width: 2px; }
.price-icon { display: inline-flex; padding: 1.1rem; border-radius: 1rem; margin-bottom: 1.1rem; border: 2px solid; }
.price-value { font-size: 2.75rem; font-weight: 700; margin: 0.5rem 0; font-family: 'Fredoka', sans-serif; }
.info-card { max-width: 48rem; margin: 0 auto; }

/* Birthday */
.birthday-grid { display: grid; gap: 3rem; align-items: center; max-width: 72rem; margin: 0 auto 4rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .birthday-grid { grid-template-columns: 1fr 1fr; } }
.birthday-image-wrap { position: relative; }
.birthday-image { aspect-ratio: 1 / 1; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.birthday-image img { width: 100%; height: 100%; object-fit: cover; }
.birthday-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: hsl(var(--primary)); color: #fff;
  padding: 1.25rem; border-radius: 1rem; box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.badge-value { font-size: 2.25rem; font-weight: 700; font-family: 'Fredoka', sans-serif; }
.feature-card { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.feature-card .card-icon { background: hsl(var(--primary)/0.1); color: hsl(var(--primary)); margin-bottom: 0; flex-shrink: 0; }
.steps-card { background: linear-gradient(135deg, hsl(var(--secondary)/0.1), hsl(var(--primary)/0.1)); border: 2px solid hsl(var(--primary)/0.2); }
.steps-card ol { padding-left: 0; list-style: none; margin: 0 0 1.5rem; }
.steps-card li { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.95rem; }
.steps-card .num { font-weight: 700; color: hsl(var(--primary)); }
.birthday-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.birthday-cta .btn { flex: 1; min-width: 200px; height: auto; padding: 0.85rem 1.5rem; white-space: normal; }

/* Booking form */
.package-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .package-grid { grid-template-columns: 1fr 1fr; } }
.package-card { cursor: pointer; border-width: 2px; transition: all .2s; }
.package-card.selected { border-color: hsl(var(--primary)); box-shadow: 0 0 0 4px hsl(var(--primary)/0.15); }
.package-card h3 { font-size: 1.25rem; display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.package-card .price { color: hsl(var(--primary)); font-size: 1.1rem; }
.package-card ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.package-card li { display: flex; gap: 0.5rem; margin-bottom: 0.35rem; }
.package-card li::before { content: "✓"; color: hsl(var(--accent)); font-weight: 700; }

.form-card { margin-bottom: 1.5rem; }
.form-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 100px; resize: vertical; }
.field .hint { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.field .error { color: hsl(var(--destructive)); font-size: 0.8rem; }
.checkbox-field { display: flex; gap: 0.75rem; align-items: flex-start; border: 1px solid hsl(var(--border)); border-radius: 0.6rem; padding: 1rem; background: hsl(var(--muted)/0.5); }
.checkbox-field input { margin-top: 0.2rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-row label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; cursor: pointer; }
.alert-box { background: hsl(var(--destructive)/0.1); border: 1px solid hsl(var(--destructive)/0.3); color: hsl(var(--destructive)); padding: 1rem; border-radius: 0.6rem; margin-bottom: 1.5rem; font-weight: 600; }
.success-box { text-align: center; padding: 3rem; max-width: 40rem; margin: 0 auto; }
.success-icon { display: inline-flex; padding: 1rem; background: hsl(var(--accent)/0.2); border-radius: 999px; margin-bottom: 1.5rem; color: hsl(var(--accent)); }

/* Gallery */
.gallery-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff; font-weight: 700; font-family: 'Fredoka', sans-serif;
}

/* Gallery carousel (Startseite) */
.carousel { position: relative; max-width: 72rem; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; }
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem;
  flex: 1;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 100%; scroll-snap-align: start; }
.carousel-slide .gallery-item { aspect-ratio: 1/1; }
@media (min-width: 640px) { .carousel-slide { flex: 0 0 calc(50% - 0.625rem); } }
@media (min-width: 1024px) { .carousel-slide { flex: 0 0 calc(33.333% - 0.85rem); } }
.carousel-btn {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground)); cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all .2s;
}
.carousel-btn:hover { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }
@media (max-width: 639px) { .carousel-btn { display: none; } }

/* Contact */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.warn-box { background: hsl(var(--destructive)/0.1); border: 1px solid hsl(var(--destructive)/0.3); border-radius: 0.6rem; padding: 0.75rem; margin-top: 0.75rem; color: hsl(var(--destructive)); font-size: 0.9rem; font-weight: 500; }

/* Footer */
footer { background: hsl(var(--card)); border-top: 1px solid hsl(var(--border)); padding: 2.5rem 0; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-bottom { border-top: 1px solid hsl(var(--border)); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.9rem; color: hsl(var(--muted-foreground)); }
.footer-bottom a:hover { color: hsl(var(--primary)); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; padding: 1rem;
}
.cookie-box { max-width: 56rem; margin: 0 auto; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; box-shadow: 0 20px 50px rgba(0,0,0,0.2); padding: 1.5rem; display: flex; gap: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; justify-content: flex-end; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: hsl(var(--card)); border-radius: 1rem; padding: 1.5rem; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto; }
.consent-row { display: flex; justify-content: space-between; gap: 1rem; border: 1px solid hsl(var(--border)); border-radius: 0.6rem; padding: 1rem; margin-bottom: 0.75rem; align-items: flex-start; }
.consent-row p { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin: 0.25rem 0 0; }

/* Legal pages */
.legal-page .card { padding: 2rem; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.5rem; margin-bottom: 0.75rem; margin-top: 1.75rem; }
.legal-page p { color: hsl(var(--muted-foreground)); }

/* Admin */
.admin-body { background: hsl(var(--muted)); min-height: 100vh; }
.admin-header { background: hsl(var(--card)); border-bottom: 1px solid hsl(var(--border)); padding: 1rem 0; margin-bottom: 2rem; }
.admin-header .container { display: flex; justify-content: space-between; align-items: center; }
.admin-grid { display: grid; gap: 1.5rem; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.admin-login-card { max-width: 26rem; width: 100%; }
.tag { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.tag-new { background: hsl(var(--primary)/0.15); color: hsl(var(--primary)); }
.tag-confirmed { background: hsl(var(--accent)/0.15); color: hsl(var(--accent)); }
.tag-cancelled { background: hsl(var(--destructive)/0.15); color: hsl(var(--destructive)); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data-table th, table.data-table td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid hsl(var(--border)); }
.status-msg { padding: 0.75rem 1rem; border-radius: 0.6rem; margin-bottom: 1rem; font-weight: 600; }
.status-ok { background: hsl(var(--accent)/0.15); color: hsl(var(--accent)); }
.status-err { background: hsl(var(--destructive)/0.15); color: hsl(var(--destructive)); }
