/* ============================================================
   VitalGenuss Playful Dynamic Style – style.css
   ------------------------------------------------------------
   Brand: Modern | Playful | Dynamic | Bright | Fresh
   Font: Montserrat (display) / Open Sans (body)
   Color: #336633, #EBF6E3, #255025, #FF9800, #FFB347
   Responsive: Mobile-first
   Only FLEXBOX layouts used throughout – NO GRID!  
   ============================================================ */

/* 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,
main, 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 { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
body {
  background: #EBF6E3;
  color: #255025;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: #336633; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FF9800; }

/* CONTAINER */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER ----------------------------------------------------- */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #FFB347;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 12px 20px;
  gap: 20px;
}

header img[src$='logo.svg'] {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.main-nav a {
  color: #336633;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FF9800;
  border-bottom: 3px solid #FF9800;
}
.primary-cta {
  background: #FF9800;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 1px;
  border-radius: 28px;
  padding: 12px 32px;
  margin-left: 20px;
  border: none;
  outline: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px 0 rgba(255,179,71,0.12);
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
  animation: bounceY 1.4s infinite alternate;
}
.primary-cta:hover, .primary-cta:focus {
  background: #336633;
  color: #FFB347;
  transform: scale(1.05) rotate(-1.5deg);
  box-shadow: 0 10px 34px 0 rgba(51,102,51,0.23);
}
.secondary-cta {
  background: #fff;
  color: #336633;
  border: 2px solid #FFB347;
  border-radius: 24px;
  padding: 8px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 16px;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px 0 rgba(255,179,71,0.10);
  cursor: pointer;
  display: inline-block;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #FFB347;
  color: #fff;
  border-color: #336633;
  transform: scale(1.04) rotate(1.5deg);
}

@keyframes bounceY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* ==== MOBILE NAVIGATION ==================== */
.mobile-menu-toggle {
  display: none;
  background: #FF9800;
  color: #fff;
  border: none;
  font-size: 2.0rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  position: relative;
  z-index: 1002;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 350px;
  background: #FFFFFF;
  box-shadow: -4px 0 28px 0 rgba(51,102,51,0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.52,.01,.56,1.37);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FF9800;
  font-size: 2.1rem;
  cursor: pointer;
  margin: 18px 22px 0 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 38px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #255025;
  border-bottom: 3px solid transparent;
  transition: border 0.2s, color 0.2s, background 0.25s;
  padding: 7px 0;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EBF6E3;
  color: #FF9800;
  border-bottom: 3px solid #FF9800;
}

@media (max-width: 1024px) {
  .container { max-width: 100%; }
  header .container { gap: 12px; }
  .main-nav { gap: 18px; font-size: 15px; }
  .primary-cta { font-size: 15px; padding: 9px 18px; }
}
@media (max-width: 900px) {
  .main-nav { font-size: 14px; gap: 12px; }
  header .primary-cta { margin-left: 0; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .primary-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 500px) {
  header .container { flex-direction: row; justify-content: space-between; padding: 10px 10px 6px 10px; }
}


/* MAIN LAYOUT & SECTION SPACING ---------------------------- */
main { width: 100%; }
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
  position: relative;
}
section:nth-child(even) {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(51,102,51,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.text-section {
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 720px;
}

/* CARD CONTAINERS & FLEX LAYOUTS ---------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(51,102,51,0.10);
  padding: 28px 28px;
  transition: box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(255,179,71,0.17);
  transform: translateY(-6px) scale(1.015) rotate(-0.7deg);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(51,102,51,0.11);
  margin-bottom: 20px;
  margin-top: 18px;
  min-width: 0;
  max-width: 660px;
  color: #255025;
  font-size: 17px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #336633;
  flex: 1;
}
.testimonial-card strong { color: #FF9800; font-weight: bold; }
.testimonial-card:hover { box-shadow: 0 8px 36px #FFB34733; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff9e3;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(255,179,71,0.10);
  padding: 20px 22px;
  min-width: 220px;
  flex: 1 1 0;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature-item:hover { box-shadow: 0 6px 24px #FF980080; transform: translateY(-4px) scale(1.03); }

/* --- MANDATORY FLEX ONLY FOR "GRID" ELEMENTS --- */
.feature-grid,
.recipe-list,
.blog-list,
.principle-list,
.steps-list,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  justify-content: flex-start;
}

.feature-grid > div,
.recipe-list > .recipe-card,
.principle-list > div,
.steps-list > div,
.team-list > div,
.blog-list > .blog-post {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px 0 rgba(51,102,51,0.06);
  padding: 28px 22px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  font-size: 16px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover, .recipe-card:hover,
.principle-list > div:hover, .steps-list > div:hover, .blog-list > .blog-post:hover {
  box-shadow: 0 8px 32px #FF980033;
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}

.recipe-list { justify-content: flex-start; gap: 22px; }
.recipe-card { transition: box-shadow 0.2s, transform 0.16s; }
.recipe-card button {
  margin-top: 18px;
  background: #FF9800;
  color: #fff;
  border: 0;
  border-radius: 16px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 8px 24px;
  transition: background 0.18s, color 0.17s, transform 0.18s;
  box-shadow: 0 2px 8px 0 #FFB34744;
  cursor: pointer;
}
.recipe-card button:hover, .recipe-card button:focus {
  background: #336633;
  color: #FFB347;
  transform: scale(1.04);
}

.blog-list { gap: 20px; }
.blog-post p a { color: #FF9800; font-weight: 600; }
.blog-categories {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.blog-categories a {
  background: #EBF6E3;
  padding: 4px 14px;
  border-radius: 12px;
  color: #336633;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.blog-categories a:hover { background: #FFB347; color: #fff; }

/* BENEFIT ICONS INLINE FLEX */
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 28px 0 0 0;
}
.benefit-icons > div {
  background: #FFB34722;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px 15px 20px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 1px 10px 0 #FF980026;
  font-size: 15px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  align-items: center;
  max-width: 450px;
  background: #fff9e3;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 1px 9px #ffb3471f;
}
.newsletter-signup input[type="email"] {
  flex: 1 1 0;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 8px 4px;
  color: #255025;
  font-family: 'Open Sans', Arial, sans-serif;
}
.newsletter-signup button {
  background: #FF9800;
  color: #fff;
  border-radius: 13px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #336633;
  color: #FFB347;
}

/************ TYPOGRAPHY ************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #336633;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  font-weight: 700;
}
h1 {font-size: 2.3rem; margin-bottom: 18px; line-height: 1.13;}
h2 {font-size: 1.6rem; margin-bottom: 16px; line-height: 1.19; color: #255025;}
h3 {font-size: 1.15rem; margin-bottom: 11px;}
h4 {font-size: 1.0rem;}
.subtitle { font-size: 1.12rem; color: #336633cc; line-height: 1.28; margin-bottom: 20px; }
p, ul, ol, address {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #255025;
  font-size: 16px;
  margin-bottom: 10px;
}
ul, ol {
  margin: 14px 0 20px 28px;
  line-height: 1.7;
  padding-left: 10px;
}
li { margin-bottom: 7px; }
table {
  width: 100%;
  background: #fff;
  border-radius: 13px;
  border-collapse: collapse;
  margin: 19px 0 25px 0;
  box-shadow: 0 1px 8px #FFB34711;
  font-size: 15px;
}
thead { font-family: 'Montserrat', Arial, Helvetica, sans-serif; background: #EBF6E3; color: #336633; }
th, td { padding: 12px 14px; border-bottom: 1px solid #EBF6E3; text-align: left; }
th { font-weight: 700; }
tr:last-child td { border-bottom: none; }

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  padding: 0;
  margin: 0 0 8px 0;
  color: #336633cc;
}

/* FORM ELEMENTS */
input[type="text"], input[type="email"] {
  border: 1.5px solid #FFB347;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 16px;
  margin-top: 11px;
  color: #255025;
  background: #fff9e3;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus {
  border-color: #336633;
  box-shadow: 0 2px 8px #FFB34744;
}
.filter-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.filter-block button {
  background: #fff;
  color: #FF9800;
  border: 2px solid #FF9800;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 18px;
  margin-right: 5px;
  margin-bottom: 7px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.filter-block button:hover, .filter-block button:focus {
  background: #FF9800;
  color: #fff;
  border-color: #336633;
}

/************ FOOTER ****************/
footer {
  background: #EBF6E3;
  border-top: 4px solid #FFB347;
  margin-top: 60px;
  padding: 34px 0 6px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  flex: 1 1 0;
  align-items: flex-start;
  font-size: 15px;
}
.footer-nav a {
  color: #336633;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #FF9800; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
  color: #255025;
}
.footer-contact img {
  height: 38px;
  margin-bottom: 3px;
}
.footer-contact address, .footer-contact p, .footer-contact a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #255025;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.30;
}
.footer-contact a:hover { color: #FF9800; }

/* ============================
 RESPONSIVE: MOBILE-FIRST
============================= */
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 32px; align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 12px; }
}
@media (max-width: 768px) {
  section { padding: 28px 7vw; margin-bottom: 44px; }
  .content-wrapper, .content-grid { gap: 13px; }
  .benefit-icons { gap: 15px; }
  .feature-grid, .recipe-list, .principle-list, .steps-list, .team-list, .blog-list {
    gap: 13px;
    justify-content: center;
  }
  .feature-grid > div,
  .recipe-card,
  .principle-list > div,
  .steps-list > div,
  .team-list > div,
  .blog-list > .blog-post {
    min-width: 130px;
    max-width: 100%;
    padding: 17px 12px;
    font-size: 15px;
  }
  .testimonial-card {
    font-size: 15px;
    padding: 13px;
    gap: 10px;
    margin-bottom: 13px;
  }
  .newsletter-signup { flex-direction: column; gap: 10px; max-width: 99vw; }
  .footer-contact img { height: 32px; }
}
@media (max-width: 575px) {
  header img[src$='logo.svg'] { height: 34px; }
  .footer-contact img { height: 26px; }
  section { padding: 15px 4vw; }
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }
  .content-wrapper, .text-section, .content-grid { padding: 0; gap: 10px; }
  .testimonials { padding: 0; }
  .mobile-menu { width: 96vw; max-width: 98vw; }
  .newsletter-signup input, .newsletter-signup button { font-size: 13px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}

/***** COOKIE BANNER & MODAL ******/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF9800;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px 30px 20px 30px;
  box-shadow: 0 -2px 24px #25502530;
  font-size: 16px;
  border-radius: 22px 22px 0 0;
  animation: bounceInUp 0.7s cubic-bezier(0.24, 1.4, 0.51, 0.98);
}
@keyframes bounceInUp {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-12px); opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 17px;
  border-radius: 13px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.14s;
  margin-right: 4px;
}
.cookie-banner .accept {
  background: #336633;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #FF9800;
  border: 2px solid #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFB347; color: #336633;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #336633; color: #FFB347; border: 2px solid #FFB347;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff; color: #FF9800;
}
@media (max-width: 750px) {
  .cookie-banner { flex-direction: column; gap: 16px; padding: 16px 8vw; font-size: 15px; }
  .cookie-banner .cookie-actions { margin-left: 0; gap: 9px; }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  inset: 0;
  background: #255025cc;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  min-width: 310px;
  max-width: 97vw;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 38px 20px 26px 20px;
  box-shadow: 0 -1px 28px #25502533;
  animation: slideUp .34s cubic-bezier(.71,1.67,.6,1.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes slideUp { from {transform: translateY(80px)} to {transform: translateY(0)} }
.cookie-modal h2 { color: #336633; margin-bottom: 13px; font-size: 1.15rem; }
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
}
.cookie-modal .category-row label[disabled] {
  opacity: 0.7;
}
.cookie-modal .switch {
  width: 41px;
  height: 22px;
  background: #EBF6E3;
  border-radius: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 9px;
  border: 1.5px solid #FFB347;
}
.cookie-modal .switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 19px;
  height: 18px;
  background: #FF9800;
  border-radius: 12px;
  transition: left 0.22s cubic-bezier(.52,.01,.56,1.37);
}
.cookie-modal .switch input:checked + .slider {
  left: 20px;
  background: #336633;
}
.cookie-modal .switch[aria-disabled='true'] .slider { background: #ddd; }
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 17px;
  border-radius: 13px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal .save {
  background: #336633;
  color: #fff;
}
.cookie-modal .close {
  background: #FF9800;
  color: #fff;
}
.cookie-modal .save:hover { background: #FFB347; color: #336633; }
.cookie-modal .close:hover { background: #336633; color: #FFB347; }

/************ PLAYFUL DECORATIVE/ANIMATED ELEMENTS ***********/
/* Add some floating bubbles on .section backgrounds for playful feel */
section { position: relative; }
section::before, section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: .23;
}
section::before {
  width: 80px; height: 80px;
  background: #FFB347;
  left: -44px; top: -30px;
  animation: floatBubble1 8s infinite alternate cubic-bezier(.61,.01,.29,1.06);
}
section::after {
  width: 60px; height: 60px;
  background: #336633;
  right: -36px; bottom: -28px;
  animation: floatBubble2 11s infinite alternate cubic-bezier(.19,.52,.61,.98);
}
@keyframes floatBubble1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(24px) scale(1.08); }
}
@keyframes floatBubble2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(0.92); }
}

/* Hide bubbles on smaller screens for simplicity */
@media (max-width: 650px) {
  section::before, section::after { display: none; content: none; }
}

/* Decorative underline for h2 */
h2 {
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 5px;
  background: #FFB347;
  border-radius: 9px;
  margin-top: 7px;
  margin-bottom: 6px;
  opacity: .72;
  animation: playfulLine 7s infinite alternate cubic-bezier(.52,.01,.56,1.37);
}
@keyframes playfulLine {
  0% { width: 44px; }
  100% { width: 80px; }
}

/************ MISCELLANEOUS ************/
::-webkit-input-placeholder { color: #8d8d8d; }
::-moz-placeholder { color: #8d8d8d; }
:-ms-input-placeholder { color: #8d8d8d; }
::placeholder { color: #8d8d8d; opacity: 1; }

/* Hide outline for non-keyboard users */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px dashed #FF9800; outline-offset: 3px; }

/* Utility spacing */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-3 { margin-top: 22px; }
.mb-3 { margin-bottom: 22px; }

/******************************************
     END VitalGenuss Style
*******************************************/
