/* =======================================================
   Unikat Schatzhaus – PLAYFUL_DYNAMIC CSS Theme
   Compiled by Senior CSS Developer
======================================================= */

/* ===================
   CSS RESET & NORMALIZE
====================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  color: #312720;
  background: #FFF7EA;
  min-height: 100vh;
  position: relative;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
button, input, textarea, select {
  font-family: inherit; font-size: 100%; margin: 0; outline: none;
}
button { cursor: pointer; background: none; border: none; }

/* ==============
   BRANDING FONTS
================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #312720;
  --color-secondary: #D4AF66;
  --color-accent: #FFFFFF;
  --color-bg-fun1: #FFE082;
  --color-bg-fun2: #B3E5FC;
  --color-bg-fun3: #FFF8E1;
  --color-fun-green: #51DA7A;
  --color-fun-pink: #FF77A9;
  --color-fun-blue: #4BCFFF;
  --color-fun-purple: #C787FF;
  --shadow1: 0 4px 16px rgba(49,39,32,0.07);
  --shadow2: 0 2px 10px 0 rgba(212,175,102,0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 9px;
  --spacing: 24px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--color-fun-purple);
  text-shadow: 2px 3px 0px var(--color-fun-blue), 0 2px 10px #fff8;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-fun-green);
  letter-spacing: 0.02em;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-fun-pink);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* ===================
   LAYOUT CONTAINERS
==================== */
.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}
.text-section {
  background: var(--color-bg-fun2);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow1);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-fun1);
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow2);
  transition: transform 0.24s ease, box-shadow 0.2s;
  position: relative;
}
.card:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.2deg);
  box-shadow: 0 8px 18px 0 rgba(49,39,32,0.08);
  z-index: 3;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-bg-fun3);
  border-left: 7px solid var(--color-fun-pink);
  box-shadow: var(--shadow2);
  border-radius: var(--radius-md);
}
.testimonial-card p {
  color: #262626;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: var(--color-primary);
  font-style: italic;
  font-size: 0.98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid (index, ankauf-verkauf) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 210px;
  background: var(--color-bg-fun1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow2);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.17s, transform 0.17s;
}
.feature-grid li:hover {
  background: var(--color-fun-blue);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.feature-grid img {
  height: 36px;
  margin-bottom: 10px;
}

/* Service List (index) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.service-list li {
  flex: 1 1 250px;
  min-width: 220px;
  background: var(--color-bg-fun2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow1);
  padding: 22px 17px 18px 18px;
  margin-bottom: 20px;
  transition: background 0.11s, transform 0.17s;
  position: relative;
}
.service-list li:hover {
  background: var(--color-fun-green);
  color: var(--color-primary);
  transform: rotate(0.3deg) scale(1.035) translateY(-3px);
  z-index: 2;
}

/* Service Cards (services page) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  flex: 1 1 210px;
  min-width: 210px;
  background: var(--color-bg-fun1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow2);
  padding: 26px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s, background 0.14s;
  position: relative;
}
.service-card:hover {
  background: var(--color-fun-purple);
  color: var(--color-accent);
  box-shadow: 0 8px 26px 0 rgba(49,39,32,0.10);
  transform: translateY(-8px) scale(1.045) rotate(-1deg);
}
.service-card h3 { color: var(--color-fun-pink); }
.service-card span {
  background: var(--color-fun-green);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* Service Process, FAQ, etc. */
.service-process, .step-by-step-process {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 6px 0 22px 0;
}
.service-process li, .step-by-step-process li {
  padding-left: 10px;
  position: relative;
  margin-bottom: 1px;
}
.service-process li:before, .step-by-step-process li:before {
  content: '\25B6';
  color: var(--color-fun-blue);
  position: absolute;
  left: -16px;
  font-size: 1rem;
  top: 2px;
}

/* Accordion/FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: var(--color-fun-blue);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: background 0.16s, box-shadow 0.17s;
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
}
.faq-accordion h3 {
  color: var(--color-primary);
  font-size: 1.16rem;
  margin-bottom: 5px;
}
.faq-accordion p {
  margin-bottom: 0;
}
.faq-accordion > div:hover {
  background: var(--color-fun-purple);
  color: #fff;
}

/* Category List (galerie) */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.category-list li {
  flex: 1 1 210px;
  min-width: 210px;
  background: var(--color-bg-fun2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow2);
  padding: 22px 16px;
  margin-bottom: 20px;
  transition: transform 0.17s, background 0.13s;
}
.category-list li:hover {
  background: var(--color-fun-pink);
  color: #fff;
  transform: rotate(-0.6deg) scale(1.035);
}

/* Article on Ratgeber */
article {
  background: var(--color-bg-fun1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow2);
  padding: 22px 18px;
  transition: box-shadow 0.2s, background 0.12s;
}
article:hover {
  background: var(--color-fun-blue);
  color: #fff;
  box-shadow: 0 10px 30px 0 rgba(76, 207, 255, 0.13);
}

/* ===================
   HEADER & NAVIGATION
==================== */
header {
  background: var(--color-bg-fun3);
  box-shadow: 0 1px 12px 0 rgba(29,29,61,0.04);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 30;
  padding-top: 0.5rem;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px; padding-bottom: 10px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.logo:hover img {
  transform: rotate(-3deg) scale(1.08);
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
nav a {
  padding: 8px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: 12px;
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
  position: relative;
}
nav a.active,
nav a:focus,
nav a:hover {
  background: var(--color-fun-blue);
  color: #fff;
  box-shadow: 0 2px 7px 0 rgba(76, 207, 255, 0.09);
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 30px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 3px 11px 0 rgba(212, 175, 102, 0.12);
  transition: background 0.15s, color 0.13s, transform 0.15s, box-shadow 0.16s;
  margin-left: 14px;
  display: inline-block;
  position: relative;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-fun-pink);
  color: #fff;
  box-shadow: 0 7px 16px 0 rgba(255, 119, 169, 0.13);
  transform: scale(1.045) rotate(-1deg);
  outline: none;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-fun-blue);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  border: none;
  box-shadow: 0 1px 10px 0 rgba(76, 207, 255, 0.11);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s, transform 0.14s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-fun-pink);
  color: #fff;
  transform: scale(1.1) rotate(8deg);
}

/* ===================
   MOBILE NAVIGATION
==================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(76, 207, 255, 0.90);
  backdrop-filter: blur(6px);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.22s;
  transform: translateX(-110vw);
  opacity: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 24px;
  background: var(--color-fun-pink);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun-purple);
  transform: scale(1.08) rotate(8deg);
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  gap: 20px;
  padding-top: 96px;
  padding-left: 40px;
  z-index: 1001;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 14px 16px 14px 0;
  border-radius: 18px 0 0 18px;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun-pink);
  color: #fff;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 991px) {
  nav { display: none !important; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: flex; }
}

/* =============
   HERO SECTION
============== */
.hero {
  background: linear-gradient(96deg, var(--color-fun-blue) 36%, var(--color-bg-fun1) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: 270px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .container {
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  padding-top: 16px;
  padding-bottom: 26px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-fun-purple);
  font-size: 2.85rem;
  margin-bottom: 12px;
}
.hero .btn-primary {
  margin-top: 10px;
}

/* =================
   CTA BANNER
================= */
.cta-banner {
  background: var(--color-fun-green);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 25px 0 rgba(81, 218, 122, 0.09);
  margin-top: 40px;
  margin-bottom: 35px;
}
.cta-banner .container {
  justify-content: center;
  align-items: center;
}
.cta-banner h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-right: 16px;
}
.cta-banner .btn-primary {
  margin-top: 0;
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--color-bg-fun1);
  padding: 40px 0 20px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -1px 12px 0 rgba(29,29,61,0.04);
  margin-top: 25px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  flex-direction: row;
  gap: 16px;
  margin-bottom: 12px;
}
footer nav a {
  font-size: 0.99rem;
  font-weight: 500;
  padding: 6px 14px;
  color: var(--color-fun-pink);
  border-radius: 10px;
  transition: background 0.16s, color 0.14s;
}
footer nav a:hover,footer nav a:focus {
  background: var(--color-fun-purple);
  color: #fff;
}
.footer-contact-info p, .footer-contact-info a {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: 0;
}
.footer-contact-info a:hover {
  text-decoration: underline;
}

/* =========================
   COOKIES CONSENT BANNER
========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-fun-blue);
  color: #262626;
  padding: 18px 28px 18px 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 1200;
  box-shadow: 0 -4px 16px rgba(76,207,255,0.13);
  animation: cookieBannerFadeIn 0.6s cubic-bezier(.59,0,.56,1.46);
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; bottom: -40px; }
  to   { opacity: 1; bottom: 0; }
}
.cookie-banner p {
  font-size: 1.02rem;
  color: var(--color-primary);
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner .btn-cookies {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 1.01rem;
  margin: 0;
  transition: background 0.14s, color 0.12s, transform 0.13s;
}
.cookie-banner .btn-cookies.reject {
  background: var(--color-fun-pink);
  color: #fff;
}
.cookie-banner .btn-cookies.settings {
  background: var(--color-fun-green);
  color: var(--color-primary);
}
.cookie-banner .btn-cookies:hover, .cookie-banner .btn-cookies:focus {
  background: var(--color-fun-purple);
  color: #fff;
  transform: scale(1.09) rotate(-2deg);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 60%) scale(0.88);
  min-width: 320px;
  max-width: 95vw;
  background: var(--color-bg-fun3);
  color: var(--color-primary);
  z-index: 1300;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 32px 0 rgba(76,207,255,0.14);
  padding: 34px 24px 22px 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.34s cubic-bezier(.62,-0.01,.52,1.48);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal.open {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  color: var(--color-fun-blue);
  font-size: 1.3rem;
  margin-bottom: 2px;
}
.cookie-modal .cookie-category {
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-toggle {
  width: 44px; height: 24px;
  border-radius: 18px;
  background: var(--color-fun-pink);
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.14s;
  position: relative;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-toggle .slider {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px; top: 3px;
  transition: left 0.14s, background 0.12s;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked + .slider {
  left: 22px;
  background: var(--color-fun-green);
}
.cookie-modal .cookie-category.essential {
  opacity: 0.58;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.7rem;
  background: var(--color-fun-blue);
  border-radius: 50%;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  align-items: center; justify-content: center;
  display: flex;
  cursor: pointer;
  transition: background 0.13s, color 0.12s, transform 0.13s;
}
.cookie-modal .modal-close:hover,.cookie-modal .modal-close:focus {
  background: var(--color-fun-pink);
  color: #fff;
  transform: scale(1.1);
}

/* =====================
   MAP PLACEHOLDER
====================== */
.map-placeholder {
  background: var(--color-bg-fun1);
  box-shadow: var(--shadow2);
  border-radius: var(--radius-md);
  padding: 28px 12px;
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTACT INFO */
.contact-info {
  background: var(--color-bg-fun2);
  border-radius: var(--radius-md);
  padding: 26px 15px;
  margin-bottom: 16px;
  box-shadow: var(--shadow1);
}
.contact-info p, .contact-info a {
  font-size: 1.04rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* ===============
   RESPONSIVE RULES
================= */
@media (max-width: 1280px) {
  .container { max-width: 97vw; }
}
@media (max-width: 991px) {
  .feature-grid, .category-list, .service-list, .service-cards, .content-grid {
    gap: 16px;
  }
  .container { padding: 0 8px; }
  .cta-banner, .section, .text-section { padding: 28px 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.08rem; }
  .hero { min-height: 120px; }
  .feature-grid, .category-list, .service-list, .service-cards, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card, .service-card, .feature-grid li, .category-list li, .service-list li, article {
    min-width: 0;
    width: 100%;
  }
  .cta-banner .container { flex-direction: column; }
  .cookie-banner { padding: 14px 10px; flex-direction: column; gap: 10px; }
  .cookie-modal { padding: 22px 7px; min-width: 0; }
  header .container { flex-direction: row; gap: 12px; padding: 5px 4px; }
}
@media (max-width: 450px) {
  h1 { font-size: 1.24rem; }
  .hero .content-wrapper { padding-top: 8px; padding-bottom: 12px; }
  .feature-grid, .category-list, .service-list, .service-cards, .content-grid {
    gap: 8px;
  }
}

/* ================
   ANIMATIONS
================= */
.card, .service-card, .feature-grid li, .category-list li, .service-list li, article {
  will-change: transform, box-shadow;
  transition: box-shadow 0.18s, transform 0.16s, background 0.14s;
}
@media (min-width: 769px) {
  .card:hover, .service-card:hover, .feature-grid li:hover, .category-list li:hover, .service-list li:hover, article:hover {
    animation: float-card 0.23s ease-in-out;
  }
}
@keyframes float-card {
  0% { transform: scale(1) translateY(0) rotate(0deg); }
  60% { transform: scale(1.07) translateY(-10px) rotate(1.2deg); }
 100% { transform: scale(1.035) translateY(-6px) rotate(-1.2deg); }
}

/* ===============
   MISC UTILITIES
================ */
.m-0 { margin: 0; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }

/* ==============
   PRINT SUPPORT
=============== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  body, main, .container, .section { background: #fff !important; color: #000 !important; }
}

/* END OF PLAYFUL_DYNAMIC THEME */
