/* =============================================================
   FLUXORA SPARK GARTENWELT – STYLE.CSS (PLAYFUL_DYNAMIC THEME)
   ============================================================= */

/* ===== 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,
b, 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,
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 { font-size: 100%; box-sizing: border-box; }
body {
  min-height: 100vh;
  background: #F4EDE1;
  color: #3A6340;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border: none; }
a { text-decoration: none; color: inherit; transition: color 0.15s; }
a:focus { outline: 2px solid #3A6340; outline-offset: 3px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #246227;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.12; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.18; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
p, ul, ol, address, table, blockquote {
  font-size: 1rem;
  color: #3A6340;
  margin-bottom: 18px;
}
strong, b { color: #1D3920; font-weight: 700; }
blockquote {
  background: #fffbe9;
  border-left: 6px solid #B0D46D;
  margin: 0 0 12px 0;
  padding: 16px 28px;
  font-style: italic;
  color: #236027;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 2px 16px rgba(58,99,64,0.08);
}
cite {
  display: block;
  font-style: normal;
  font-size: 1rem;
  color: #20814c;
  margin-left: 4px;
  margin-bottom: 0;
}

hr { border: none; border-top: 2px solid #B0D46D; margin: 32px 0; }

address {
  font-style: normal;
  color: #3A6340;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ====== BRAND COLORS (FOR CSS VARIABLES) ====== */
:root {
  --fs-primary: #3A6340;
  --fs-secondary: #B0D46D;
  --fs-accent: #F4EDE1;
  --fs-white: #ffffff;
  --fs-yellow: #FFD700; /* For playful accents */
  --fs-orange: #FFA94D; /* playful accent */
  --fs-pink: #FF7EAE; /* playful accent */
  --fs-blue: #69AEFF; /* playful accent */
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-card: 0 4px 22px 0 rgba(58,99,64,0.11);
  --shadow-hover: 0 8px 30px 0 rgba(180, 212, 109, 0.16);
  --transition: 0.24s cubic-bezier(0.76,0,0.18,1);
}

/* ===== PLAYFUL DYNAMIC DESIGN: COLORFUL ELEMENTS, FUN FONTS, ANIMATION ===== */

body { background: var(--fs-accent); }
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ========== HEADER NAV ========= */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(58,99,64,0.07);
  border-bottom: 4px solid var(--fs-secondary);
  position: sticky; top: 0; z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 9px 0 rgba(58,99,64,0.06);
  background: var(--fs-secondary);
  padding: 4px;
  transition: transform var(--transition);
}
.logo:hover img { transform: rotate(-3deg) scale(1.06); }

header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 1.02rem;
  color: var(--fs-primary);
  padding: 8px 10px;
  border-radius: var(--radius-md);
  position: relative;
  background: none;
}
header nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 4px;
  background: var(--fs-secondary);
  border-radius: 2px;
  transition: width var(--transition);
  position: absolute; bottom: 2px; left: 10px;
}
header nav a:hover, header nav a:focus {
  background: var(--fs-accent);
  color: var(--fs-secondary);
}
header nav a:hover::after, header nav a:focus::after { width: 70%; }

a.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.12rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  margin-left: 18px;
  letter-spacing: 0.01em;
  position: relative;
}
.cta.primary {
  background: linear-gradient(90deg, #B0D46D 65%, #FFD700 100%);
  color: #1D3920;
  border: none;
}
.cta.secondary {
  background: var(--fs-accent);
  color: var(--fs-primary);
  border: 2px solid var(--fs-secondary);
}
a.cta:hover, .cta.primary:hover, .cta.secondary:hover, .cta:focus {
  background: linear-gradient(90deg, #FFD700 78%, #FF7EAE 100%);
  color: #3A6340;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}

button {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}

/* ===== MOBILE MENU BURGER ===== */
.mobile-menu-toggle {
  display: none;
  background: #FFD700;
  color: #3A6340;
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 16px;
  box-shadow: 0 2px 8px rgba(58,99,64,0.20);
  margin-left: 18px;
  z-index: 250;
  transition: background var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #FF7EAE;
  color: #1D3920;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 4px 40px #23602722;
  z-index: 260;
  transform: translateX(-120%);
  transition: transform 0.36s cubic-bezier(.75,.01,.22,1);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 38px;
  padding-bottom: 38px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 2.3rem;
  background: #FFD700;
  color: #206d41;
  padding: 8px 22px;
  border-radius: 50%;
  z-index: 296;
  border: 0;
  box-shadow: 0 2px 12px #b0d46d44;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FF7EAE;
  color: #1D3920;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  color: #2E885E;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: #F4EDE1;
  margin-right: 6px;
  box-shadow: 0 2px 14px #b0d46d13;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD700;
  color: #1D3920;
}

/* ===== HERO SECTION ==== */
.hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(95deg, #FF7EAE 8%, #F4EDE1 71%, #B0D46D 95%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 4px 22px 0 rgba(255,174,207,0.08);
  animation: heroPopUp 0.8s cubic-bezier(.42,1.7,.77,.92);
}
@keyframes heroPopUp {
  from{transform:translateY(80px) scale(0.98); opacity:0;} to{transform:translateY(0) scale(1); opacity:1;}
}
.hero h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 10px;
  animation: floatUp 0.8s 0.08s both cubic-bezier(.42,1.7,.77,.92);
}
.hero .tagline,
.hero p {
  font-size: 1.2rem;
  padding-left: 8px;
  color: #2C7750;
  margin-bottom: 22px;
  font-family: 'Open Sans', sans-serif;
  animation: floatUp 0.6s 0.26s both cubic-bezier(.54,1.3,.44,.98);
}
@keyframes floatUp{from{transform:translateY(16px); opacity:0.1;}to{transform:translateY(0); opacity:1;}}

.hero a.cta {
  margin-top: 12px;
}

/* ===== SECTIONS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about, .features, .services, .tips, .faq, .legal, .contact, .contact-info, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features ul, .services ul, .tips ul, .faq ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.features ul li, .services ul li, .tips ul li, .faq ul li{
  background: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  color: #286E38;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.07em;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  border-left: 6px solid #B0D46D;
  position: relative;
  transition: box-shadow var(--transition), background var(--transition), transform var(--transition);
  z-index: 2;
}
.features ul li:hover, .services ul li:hover, .tips ul li:hover {
  background: #FFD70033;
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.features ul li img {
  height: 38px; width: 38px; border-radius: 12px; background: #fffbe9; box-shadow: 0 2px 9px #fff0cc22; }

.features > .content-wrapper > div, .features > .content-wrapper img,
.tips > .content-wrapper img {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 8px 0 0 0;
}
.features > .content-wrapper img, .tips > .content-wrapper img{
  height: 44px;
  width: auto;
  border-radius: 10px;
}
.services table {
  margin-top: 18px;
  margin-bottom: 18px;
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  font-size: 1rem;
}
.services table th, .services table td {
  padding: 14px 22px;
  border-bottom: 1px solid #B0D46D33;
  text-align: left;
}
.services table th {
  background: var(--fs-secondary);
  color: #1D3920;
  font-family: 'Merriweather', serif;
}
.services table tr:last-child td {
  border-bottom: none;
}

.services a.cta {
  margin-top: 18px;
}

/* ===== TESTIMONIALS ========== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper{
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 8px solid #B0D46D;
  color: #236027;
  min-width: 0;
  max-width: 700px;
  animation: testimonialBounce 0.12s ease;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 36px 0 #B0D46D44;
  transform: scale(1.02) rotate(-1deg);
}
@keyframes testimonialBounce { 0%{transform:scale(1.0) rotate(-1deg);} 100%{transform:scale(1.03) rotate(0.7deg);} }
.testimonial-card blockquote { margin: 0 12px 0 0; font-size: 1.14rem; font-weight: 500; background: none; border: none; padding: 0; color: #236027; }
.testimonial-card cite { margin-top: 0; font-size: 1rem; color: #26B485; align-self: flex-end; font-family: 'Open Sans', cursive; margin-left: 6px; }

/* ===== FAQ SECTION =====*/
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.faq ul li {
  padding: 16px 18px;
  border-left: 6px solid #FFA94D;
  background: #fffbe9;
  border-radius: 18px;
}

/* ====== CARD & CARD-CONTAINER & GRID ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus {
  box-shadow: var(--shadow-hover);
  transform: scale(1.024) rotate(-0.7deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== LEGAL PAGE (simple, clear) ===== */
.legal h1, .legal h2 {
  color: #3A6340;
}
.legal {
  background: #fffbe9;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px #b0d46d18;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== CTA SECTION ====== */
.cta {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .cta{
  margin-top: 15px;
}

/* ===== FOOTER ====== */
footer {
  background: #fff;
  border-top: 5px solid #B0D46D;
  box-shadow: 0 -2px 18px #b0d46d17;
}
footer .container {
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 36px 20px 16px 20px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
footer nav a {
  color: #3A6340;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px dashed #FFD70066;
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
footer nav a:hover {
  color: #FF7EAE;
  border-bottom: 2px solid #FF7EAE;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #286E38;
  font-size: 1.04rem;
  font-family: 'Merriweather', serif;
}
.brand-footer img {
  height: 38px; width: auto; display: block;
}

/* ============================================================
   COOKIE CONSENT BANNER & MODAL POPUP
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1001;
  background: #fffbe9;
  color: #3A6340;
  box-shadow: 0 -2px 20px #B0D46D33;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  transition: transform 0.5s cubic-bezier(.56,.05,.42,.9), opacity 0.3s;
  animation: cookieSlideUp 0.9s cubic-bezier(.64,1.4,.44,.95);
}
@keyframes cookieSlideUp {from{transform:translateY(100%); opacity:0;}to{transform:translateY(0); opacity:1;}}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(120%); }
.cookie-banner .cookie-btn {
  padding: 10px 18px;
  border-radius: 18px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 1px 9px #b0d46d12;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .accept {
  background: #B0D46D;
  color: #1D3920;
}
.cookie-banner .reject {
  background: #FF7EAE;
  color: #fff;
}
.cookie-banner .settings {
  background: #F4EDE1;
  color: #3A6340;
  border: 2px solid #FFD700;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFD700;
  color: #236027;
}

/* Modal Popup */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58,99,64,0.30);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {from{opacity:0;}to{opacity:1;}}
.cookie-modal {
  background: #fffbe9;
  color: #206d41;
  border-radius: var(--radius-xl);
  box-shadow: 0 3px 33px #b0d46d35;
  padding: 38px 30px 30px 30px;
  min-width: 320px; max-width: 420px;
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.07rem;
  animation: scaleModalUp 0.25s cubic-bezier(.66,1.4,.66,.93);
}
@keyframes scaleModalUp {from{transform:scale(0.84); opacity:0;}to{transform:scale(1); opacity:1;}}
.cookie-modal h3 {
  font-family: 'Merriweather', serif;
  color: #267c45;
  margin-bottom: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px;
  right: 24px;
  font-size: 2rem;
  background: #FFD700;
  color: #3A6340;
  border-radius: 50%;
  border: none;
  padding: 2px 12px;
  cursor: pointer;
  z-index: 1008;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #FF7EAE;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: bold;
}
.cookie-modal .toggle {
  width: 46px; height: 28px;
  background: #FFD700;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  display: inline-block;
}
.cookie-modal .toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggle .slider {
  position: absolute;
  left: 3px; top: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px #b0d46d33;
  transition: left var(--transition);
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  left: 23px;
  background: #B0D46D;
  box-shadow: 0 1px 8px #b0d46d88;
}
.cookie-modal .cookie-btns {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 8px 20px;
  border-radius: 16px;
  background: #B0D46D;
  color: #1D3920;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal .cookie-btn.secondary {
  background: #F4EDE1; color: #3A6340; border: 1px solid #FFD700;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #FFD700; color: #286E38;
}
.cookie-modal .cookie-category.essential {
  color: #FFD700;
  opacity: 1;
}

/* === ADDRESS === */
address a {color: #286E38;font-weight:700;transition:color var(--transition);}
address a:hover {color: #FF7EAE;}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ============================================================ */
@media (max-width: 1024px) {
  .container, footer .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .container, .content-wrapper {
    max-width: 96vw;
  }
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    max-width: 100vw;
    padding-left: 8px; padding-right: 8px;
  }
  header .container, footer .container {
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
  }
  .logo img {
    height: 39px;
    padding: 2px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  a.cta {
    margin-left: 0;
    font-size: 1rem;
    padding: 10px 18px;
  }
  .section, .about, .features, .services, .tips, .faq, .testimonials, .contact, .cta, .contact-info, .legal {
    padding: 22px 8px;
    margin-bottom: 30px;
  }
  .features ul, .services ul, .tips ul, .faq ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    font-size: 1rem;
  }
  .brand-footer img {
    height: 30px;
  }
  .brand-footer {
    font-size: 1em;
    gap: 4px;
  }
  .mobile-menu {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .mobile-nav {
    padding-left: 18px;
  }
}
@media (max-width: 560px) {
  .hero h1, h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .features ul li, .services ul li, .tips ul li, .faq ul li {
    min-width: 0;
    font-size: 1em;
    padding: 10px 8px;
  }
  .card { padding: 10px; }
  .testimonial-card blockquote { font-size: 1rem; }
}

/* ===========================
   ANIMATIONS & MICROINTERACTIONS
============================== */
a, button, .card, .cta, .features ul li, .testimonial-card {
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.features ul li:hover svg, .features ul li:hover img {
  animation: playfulIconBounce 0.17s linear;
}
@keyframes playfulIconBounce {
  0% { transform: scale(1) rotate(-5deg); }
  70% { transform: scale(1.22) rotate(7deg); }
  100% { transform: scale(1) rotate(0deg); }
}
nav a.active,
footer nav a.active {
  background: #FFD700;
  color: #3A6340;
  border-bottom: 3px solid #FF7EAE;
}

/* =========== UTILITIES =============== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ============= FORMS (IF USED) ========== */
input, textarea, select {
  border: 2px solid #B0D46D;
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 1em;
  width: 100%;
  margin-bottom: 18px;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #286E38;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 2px #FFD70033;
}
button[type='submit'] {
  background: #FFD700;
  color: #226221;
  font-family: 'Merriweather', serif;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 8px #ffd70011;
  transition: background var(--transition), color var(--transition);
}
button[type='submit']:hover, button[type='submit']:focus {
  background: #FF7EAE;
  color: #fff;
}

/* ========== Z-INDEX MANAGEMENT ========= */
header { z-index: 50; }
.mobile-menu, .mobile-menu-close { z-index: 260; }
.cookie-banner { z-index: 1001; }
.cookie-modal-backdrop { z-index: 1002; }

/* ========= REMOVE GRID/COLUMNS SAFEGUARD ========= */
/* No display: grid, grid-*, column-* or break-inside in this file! */
