/* ============================================================
   FLAMINIGO – Café & Kinderspaß
   Stylesheet — Mobile First
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  /* Colours */
  --pink-50:  #FFF0F7;
  --pink-100: #FFD6EB;
  --pink-200: #FFB0D6;
  --pink-300: #F58BBE;
  --pink-400: #E86DA4;
  --pink-500: #D14E8A;

  --cream:    #FAF7F4;
  --warm-bg:  #FDF5F8;
  --white:    #FFFFFF;

  --text:     #2D1B24;
  --text-md:  #5C3D4E;
  --text-lt:  #9A7A8A;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(180, 80, 130, 0.10);
  --shadow-md: 0 6px 28px rgba(180, 80, 130, 0.14);
  --shadow-lg: 0 16px 56px rgba(180, 80, 130, 0.18);

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-full: 9999px;

  /* Transitions */
  --t: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Layout helpers ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section     { padding: 72px 0; }
.section-alt { background: var(--white); }

.img-rounded { border-radius: var(--r-md); overflow: hidden; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2  { margin: 14px 0 16px; }
.section-header p   { color: var(--text-md); font-size: 1.05rem; }

/* ---- Section Badge ---- */
.section-badge {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink-400);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 109, 164, 0.38);
}
.btn-primary:hover {
  background: var(--pink-500);
  box-shadow: 0 8px 28px rgba(209, 78, 138, 0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--pink-500);
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.5);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: #fff; }

.btn-outline {
  background: transparent;
  color: var(--pink-400);
  border-color: var(--pink-300);
}
.btn-outline:hover { background: var(--pink-50); }

.btn-large { padding: 18px 44px; font-size: 1.05rem; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pink-100);
  transition: box-shadow var(--t);
}
.nav-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* ---- Burger menu items (mobile dropdown) ---- */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 8px 0 16px;
  border-top: 1px solid var(--pink-100);
  z-index: 199;
  box-shadow: var(--shadow-lg);
}
.nav-links.open { display: flex; }

.nav-links li a {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-md);
  padding: 14px 28px;
  border-bottom: 1px solid var(--pink-50);
  transition: color var(--t), background var(--t);
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links li a:hover {
  color: var(--pink-400);
  background: var(--pink-50);
}

/* ---- Right group: burger + CTA ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ---- CTA button (always visible) ---- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--pink-400);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background var(--t), box-shadow var(--t);
  box-shadow: 0 3px 12px rgba(232, 109, 164, 0.32);
}
.nav-cta:hover {
  background: var(--pink-500);
  box-shadow: 0 5px 18px rgba(209, 78, 138, 0.40);
}

/* ---- Burger toggle ---- */
.nav-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 7px 5px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.nav-toggle:hover { background: var(--pink-50); }
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- Desktop: horizontal nav ---- */
@media (min-width: 820px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 2px;
    align-items: center;
    border-top: none;
    box-shadow: none;
    flex: 1;
    justify-content: flex-end;
    margin-right: 12px;
  }

  .nav-links li a {
    font-size: 0.92rem;
    padding: 8px 12px;
    border-bottom: none;
    border-radius: var(--r-sm);
  }
  .nav-links li a:hover { background: var(--pink-50); }

  .nav-cta { padding: 10px 22px; font-size: 0.92rem; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(30, 10, 20, 0.62) 0%,
    rgba(220, 80, 140, 0.22) 55%,
    rgba(30, 10, 20, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 48px 24px 80px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.22);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (min-width: 780px) {
  .hero-content {
    text-align: left;
    margin-left: max(24px, calc((100vw - 1160px) / 2));
    margin-right: auto;
    padding: 100px 24px;
  }
  .hero-sub { margin-left: 0; }
  .hero-buttons { justify-content: flex-start; }
}

/* ================================================================
   WARUM FLAMINIGO
   ================================================================ */
.warum-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .warum-grid { grid-template-columns: repeat(3, 1fr); } }

.warum-card {
  background: var(--warm-bg);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.warum-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.warum-icon   { font-size: 3rem; margin-bottom: 18px; }
.warum-card h3 { color: var(--pink-500); margin-bottom: 12px; }
.warum-card p  { color: var(--text-md); font-size: 0.95rem; }

/* ================================================================
   SPIELBEREICH
   ================================================================ */
.split-layout {
  display: grid;
  gap: 52px;
  align-items: center;
}
@media (min-width: 880px) { .split-layout { grid-template-columns: 1fr 1fr; } }

.split-text .section-badge { margin-bottom: 18px; }
.split-text h2  { margin-bottom: 18px; }
.split-text > p { color: var(--text-md); font-size: 1.05rem; margin-bottom: 28px; }

.feature-list { margin-bottom: 28px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pink-100);
  font-weight: 600;
  color: var(--text-md);
  font-size: 0.97rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li span { font-size: 1.2rem; }

.price-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--warm-bg);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-sm);
  padding: 14px 22px;
}
.price-badge strong { font-size: 1.1rem; color: var(--pink-500); }
.price-badge span   { font-size: 0.85rem; color: var(--text-lt); }

/* Image group */
.split-images { display: flex; flex-direction: column; gap: 14px; }

.split-images .img-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
}

.split-images-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-images-small img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* ================================================================
   KINDERGEBURTSTAGE
   ================================================================ */
.packages-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

/* Card */
.package-card {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-featured {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .package-featured { transform: scale(1.025); }
  .package-featured:hover { transform: scale(1.025) translateY(-6px); }
}

/* Image */
.package-img-wrap {
  width: 100%;
  height: 240px;
  background: var(--warm-bg);
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
  flex-shrink: 0;
}
.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Body */
.package-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pink-500);
  line-height: 1;
  margin-bottom: 6px;
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-lt);
  margin-left: 4px;
}

.package-body h3 { margin: 0 0 16px; }

.package-list { flex: 1; margin-bottom: 24px; }
.package-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.9rem;
  color: var(--text-md);
  border-bottom: 1px solid var(--pink-50);
}
.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink-400);
  font-weight: 800;
}
.package-list li:last-child { border-bottom: none; }

.packages-note {
  margin-top: 44px;
  text-align: center;
  color: var(--text-lt);
  font-size: 0.88rem;
  background: var(--warm-bg);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-sm);
  padding: 14px 24px;
}

/* ================================================================
   CAFÉ & SPEISEN
   ================================================================ */
.cafe-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
@media (min-width: 720px) { .cafe-gallery { grid-template-columns: repeat(4, 1fr); } }

.cafe-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* Menu highlights */
.menu-highlights {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 720px) { .menu-highlights { grid-template-columns: repeat(4, 1fr); } }

.menu-item {
  background: var(--warm-bg);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: transform var(--t), box-shadow var(--t);
}
.menu-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.menu-icon  { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.menu-item h4 { margin-bottom: 8px; }
.menu-item p  { color: var(--text-md); font-size: 0.85rem; line-height: 1.5; }

/* ================================================================
   ÖFFNUNGSZEITEN & STANDORT
   ================================================================ */
.oe-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 720px) { .oe-grid { grid-template-columns: 1fr 1fr; } }

.oe-times .section-badge { margin-bottom: 18px; }
.oe-times h2 { margin-bottom: 28px; }

.times-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.times-table tr { border-bottom: 1px solid var(--pink-100); }
.times-table td { padding: 13px 0; }
.times-table td:first-child { color: var(--text-md); font-weight: 600; }
.times-table td:last-child  { text-align: right; color: var(--pink-400); font-weight: 700; }
.times-table .closed-row td:last-child { color: var(--text-lt); font-weight: 600; }

.address-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--warm-bg);
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  padding: 20px 22px;
  line-height: 1.85;
  font-size: 0.94rem;
}
.addr-icon { font-size: 1.6rem; flex-shrink: 0; padding-top: 2px; }
.addr-text strong { display: block; margin-bottom: 2px; }
.addr-text a { color: var(--pink-400); font-weight: 600; }
.addr-text a:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--warm-bg);
  border: 2px dashed var(--pink-200);
  border-radius: var(--r-md);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--text-lt);
  font-size: 0.95rem;
  text-align: center;
  padding: 32px;
}
.map-placeholder > span { font-size: 3.5rem; }

.oe-map iframe {
  width: 100%;
  height: 380px;
  border: 1px solid var(--pink-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

/* ================================================================
   KONTAKT / RESERVIERUNG
   ================================================================ */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 540px) {
  .contact-options { flex-direction: row; justify-content: center; }
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 2px solid var(--pink-100);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  flex: 1;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-300);
}

.contact-option-icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-option-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-option-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.contact-option-text span {
  font-size: 0.97rem;
  color: var(--pink-400);
  font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1.6fr; } }

/* Brand column */
.footer-logo {
  height: auto;
  width: 100%;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}
.footer-brand p { font-size: 0.9rem; max-width: 260px; line-height: 1.7; }

/* Nav column */
.footer-nav h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a   { font-size: 0.9rem; transition: color var(--t); }
.footer-nav a:hover { color: var(--pink-300); }

/* Contact column */
.footer-contact p   { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.7; }
.footer-contact a   { color: var(--pink-300); transition: color var(--t); }
.footer-contact a:hover { color: var(--pink-200); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: background var(--t), color var(--t);
}
.social-links a:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Bottom bar */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--pink-300); }
.footer-bottom a:hover { text-decoration: underline; }

/* ================================================================
   UTILITY ANIMATIONS
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
  .warum-card,
  .package-card,
  .menu-item {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.55s ease forwards;
  }

  /* stagger via nth-child */
  .warum-card:nth-child(1)   { animation-delay: 0.05s; }
  .warum-card:nth-child(2)   { animation-delay: 0.15s; }
  .warum-card:nth-child(3)   { animation-delay: 0.25s; }
  .package-card:nth-child(1) { animation-delay: 0.05s; }
  .package-card:nth-child(2) { animation-delay: 0.15s; }
  .package-card:nth-child(3) { animation-delay: 0.25s; }
  .menu-item:nth-child(1)    { animation-delay: 0.05s; }
  .menu-item:nth-child(2)    { animation-delay: 0.12s; }
  .menu-item:nth-child(3)    { animation-delay: 0.19s; }
  .menu-item:nth-child(4)    { animation-delay: 0.26s; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .nav-header,
  .hero-scroll,
  .nav-toggle { display: none; }
}
