/* VividOasis Tierwissen – style.css */
/* === 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, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #e9f1f7;
  color: #23475f;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23475f;
  text-decoration: none;
  outline: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #ffb325;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
}
::-webkit-input-placeholder { color: #9eb4c4; }
:-moz-placeholder { color: #9eb4c4; }
::-moz-placeholder { color: #9eb4c4; }
:-ms-input-placeholder { color: #9eb4c4; }

/* === COLOR VARIABLES === */
:root {
  --primary: #23475f;
  --secondary: #e9f1f7;
  --accent: #ffb325;
  --accent-dark: #cd8a0c;
  --primary-dark: #162939;
  --neutral: #fff;
  --shadow: 0 4px 24px 0 rgba(133,163,198,0.15);
  --shadow-light: 0 2px 6px rgba(36,71,95,0.11);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 14px;
  color: #295e73;
}

@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}

blockquote {
  border-left: 5px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-style: italic;
  background: var(--secondary);
}

.category-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.90em;
  padding: 2px 13px 2px 10px;
  border-radius: 15px;
  margin: 14px 0 10px 0;
  white-space: nowrap;
}

/* === GENERAL CONTAINER & SPACING === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral);
  border-radius: 28px;
  box-shadow: var(--shadow-light);
}

@media (min-width: 830px) {
  .section {
    padding: 44px 48px;
  }
}

/* === HEADER & MAIN NAVIGATION === */
header {
  width: 100%;
  background: var(--neutral);
  box-shadow: 0 6px 32px 0 rgba(36, 71, 95, 0.06);
  position: sticky;
  top: 0;
  z-index: 1200;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
}
.main-nav img {
  height: 46px;
  width: auto;
  margin-right: 8px;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 2px;
  padding: 8px 12px;
  border-radius: 11px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.main-nav .primary-cta {
  margin-left: auto;
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  padding: 9px 22px;
  box-shadow: var(--shadow-light);
  font-weight: 800;
  font-size: 1.01rem;
  transition: background 0.18s, color 0.2s, transform 0.16s;
  letter-spacing: 0.02em;
}
.main-nav .primary-cta:hover, .main-nav .primary-cta:focus {
  background: var(--primary);
  color: var(--neutral);
  transform: translateY(-2px) scale(1.03);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 3001;
  transition: box-shadow 0.2s;
  box-shadow: var(--shadow-light);
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  box-shadow: 0 0 0 3px var(--secondary);
  background: var(--accent-dark);
  color: var(--neutral);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,71,95, 0.95);
  transform: translateX(-100vw);
  z-index: 4000;
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  box-shadow: 0 8px 28px 0 rgba(36,71,95,0.23);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 30px;
  right: 22px;
  z-index: 4200;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: background 0.12s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-dark);
  color: var(--neutral);
}
.mobile-nav {
  margin-top: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--neutral);
  background: transparent;
  font-size: 1.4em;
  padding: 7px 0 7px 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  width: fit-content;
  min-width: 170px;
  transition: color 0.2s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--neutral);
}
@media (min-width: 980px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 979px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 980px) {
  .main-nav {
    display: flex;
  }
}
/* === HERO SECTIONS === */
.hero {
  width: 100%;
  background: linear-gradient(110deg,#e9f1f7 90%, #ffe2ab 120%);
  padding: 0 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  padding: 44px 0 23px 0;
  justify-content: center;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  text-shadow: 1px 3px 0 #fad58512;
}
.hero p {
  font-size: 1.24rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .hero .content-wrapper {
    padding: 66px 0 35px 0;
  }
  .hero h1 { font-size: 2.7rem; }
}
/* === FEATURE & ARTICLES GRID === */
.feature-grid, .article-cards, .article-teasers, .featured-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 10px 0;
  justify-content: space-between;
}
@media (max-width: 810px) {
  .feature-grid, .article-cards, .article-teasers, .featured-guides {
    gap: 18px;
  }
}
.feature-item {
  flex: 1 1 220px;
  max-width: 265px;
  min-width: 180px;
  background: var(--secondary);
  padding: 26px 18px 21px 18px;
  border-radius: 21px 42px 26px 19px / 22px 32px 27px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.22s, transform 0.19s;
  border-left: 5px solid var(--accent);
  position: relative;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 35px 0 #ffb32544;
  transform: translateY(-4px) scale(1.03) rotate(-0.5deg);
  z-index: 4;
}
.feature-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
.feature-item h3 {
  color: var(--primary);
}
/* Article card style */
.article-cards article, .article-teasers article, .featured-guides article {
  background: var(--neutral);
  border-radius: 18px 36px 22px 22px;
  padding: 23px 19px 19px 19px;
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-bottom: 5px solid var(--accent);
  transition: box-shadow 0.18s, transform 0.13s;
}
.article-cards article:hover, .article-cards article:focus-within,
.article-teasers article:hover, .article-teasers article:focus-within,
.featured-guides article:hover, .featured-guides article:focus-within {
  box-shadow: 0 10px 44px 0 #2e6c9640, var(--shadow);
  transform: translateY(-6px) scale(1.02) rotate(0.5deg);
  z-index: 3;
}
.article-cards a, .article-teasers a, .featured-guides a {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  margin-top: 10px;
  border-bottom: 2px solid var(--accent);
  border-radius: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s, border-color 0.12s;
}
.article-cards a:hover, .article-teasers a:hover, .featured-guides a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* === BUTTONS === */
.primary-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  padding: 13px 34px;
  border-radius: 22px;
  border: none;
  box-shadow: var(--shadow-light);
  margin-top: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, transform 0.13s, box-shadow 0.15s;
  outline: none;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--primary);
  color: var(--neutral);
  box-shadow: 0 4px 22px 4px #23475f22;
  transform: scale(1.04) translateY(-2px);
}

/* === SERVICES & CTA LISTS === */
.services ul, .services-brief ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.services li, .services-brief li {
  margin-bottom: 6px;
  font-size: 1.03rem;
  background: var(--secondary);
  padding: 10px 17px;
  border-radius: 16px;
  border-left: 5px solid var(--accent);
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 5px 0 #ffc4251a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.services li span, .services-brief li span {
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 9px;
}

/* === LISTS ==== */
ul li {
  margin-bottom: 7px;
}
.text-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 1.01em;
  color: var(--primary-dark);
}
.text-section ul img {
  width: 21px;
  height: 21px;
  margin-right: 3px;
}

/* === TEXT-IMAGE SECTION & FLEX UTILS === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(95deg, #fff 40%, #ffe2ab 120%);
  border-radius: 30px;
  margin-top: 60px;
  padding: 40px 18px 32px 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px 44px 21px 25px;
  box-shadow: 0 5px 30px #23475f18;
  margin-bottom: 24px;
  position: relative;
  border-left: 7px solid var(--accent);
  font-size: 1.09em;
  max-width: 700px;
}
.testimonial-card blockquote {
  font-size: 1.17em;
  margin: 0;
  color: #23475f;
  background: none;
  border-left: none;
  font-style: italic;
}
.testimonial-card p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 600;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    padding: 16px 12px;
  }
}

/* === CONTACT CTA AND DATA === */
.contact-cta {
  background: var(--accent);
  border-radius: 28px;
  margin-bottom: 60px;
}
.contact-cta h2, .contact-cta a, .contact-cta ul li, .contact-cta p {
  color: var(--primary);
}
.contact-cta .primary-cta {
  background: var(--primary);
  color: var(--accent);
  margin-left: 8px;
}
.contact-cta .primary-cta:hover {
  background: var(--neutral);
  color: var(--primary);
}

.contact-data {
  margin-bottom: 56px;
}

/* === CARD CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* === QUICKLINK NAVS === */
.quicklinks nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 14px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.quicklinks nav ul li {
  list-style: none;
}
.quicklinks a {
  display: block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px 26px 12px 20px;
  padding: 8px 22px;
  font-size: 1rem;
  transition: background 0.15s, color 0.14s, transform 0.14s;
  box-shadow: 0 3px 12px #ffb3251a;
}
.quicklinks a:hover, .quicklinks a:focus {
  background: var(--primary);
  color: var(--neutral);
  transform: scale(1.03);
}

/* === LEGAL & CONFIRMATION === */
.legal, .confirmation {
  margin-bottom: 60px;
  background: var(--neutral);
  border-radius: 32px;
  padding: 40px 20px;
  box-shadow: var(--shadow-light);
}
.legal h1, .confirmation h1 {
  color: var(--accent);
  margin-bottom: 18px;
}
.legal h2, .confirmation h2 {
  color: var(--primary);
  margin-bottom: 11px;
}
.legal .text-section {
  margin-top: 10px;
}

.faq dl {
  margin: 24px 0 0 0;
}
.faq dt {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  margin-top: 13px;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #295e73;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--secondary);
  margin-top: 88px;
  padding: 38px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: underline;
  border-radius: 10px;
  padding: 5px 12px;
  transition: color 0.14s, background 0.09s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
  background: var(--accent);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-bottom: 18px;
}
.footer-info img {
  height: 37px;
  margin-bottom: 6px;
}
.footer-info p {
  font-size: 1rem;
  color: var(--secondary);
  text-align: center;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: var(--primary-dark);
  z-index: 5000;
  box-shadow: 0 -4px 24px #ffe28066, 0 0 1px #23475f13;
  padding: 22px 30px 22px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.08rem;
  transition: transform 0.4s cubic-bezier(.9,0,.1,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--primary);
  color: var(--accent);
  font-weight: 600;
  border: none;
  border-radius: 16px;
  padding: 9px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: background 0.2s, color 0.17s, transform 0.09s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.03);
}
.cookie-banner .cookie-settings-btn {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
@media (max-width: 570px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 20px 15px;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 71, 95, 0.72);
  z-index: 7000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
  align-items: center;
}
.cookie-modal {
  background: #fffbe6;
  color: var(--primary-dark);
  border-radius: 24px;
  box-shadow: 0 14px 70px #ffb32529;
  padding: 38px 22px 19px 22px;
  width: 94vw;
  max-width: 400px;
  margin-bottom: 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 7200;
  transform: translateY(80px);
  transition: transform 0.33s cubic-bezier(.84,0,.14,1);
}
.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0);
}
.cookie-modal h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 900;
}
.cookie-modal ul {
  margin-bottom: 22px;
}
.cookie-modal li {
  margin-bottom: 11px;
}
.cookie-modal label {
  font-weight: 600;
  margin-left: 7px;
  color: var(--primary-dark);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.cookie-modal .cookie-modal-btns {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .essential {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .close-modal {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.91rem;
  position: absolute;
  top: 14px;
  right: 17px;
  cursor: pointer;
  border-radius: 50%;
  padding: 0 5px;
  transition: background 0.1s;
}
.cookie-modal .close-modal:hover {
  background: var(--accent);
  color: var(--white);
}

/* === SECTION SPACING AS REQUIRED === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
}
@media (max-width: 950px) {
  .feature-grid, .article-cards, .article-teasers, .featured-guides {
    justify-content: flex-start;
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 6px;
  }

  .section {
    padding: 24px 8px 24px 8px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    padding: 28px 0 12px 0;
  }
  .feature-grid, .article-cards, .article-teasers, .featured-guides {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.feature-item, .article-cards article, .article-teasers article, .featured-guides article {
  /* use above transitions for micro-animations on hover */
  will-change: box-shadow, transform;
}
.primary-cta, .quicklinks a, .footer-nav a, .cookie-banner button, .cookie-modal .cookie-modal-btns button {
  transition: background 0.18s, color 0.14s, box-shadow 0.12s, transform 0.12s;
}

/* === MISC UTILS === */
input[type="search"] {
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 1.1rem;
  width: 98%;
  background: #fff;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary-dark);
  box-shadow: none;
  outline: none;
  transition: border-color 0.17s, box-shadow 0.11s;
}
input[type="search"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--accent);
}

/* === Sticky hamburger fix === */
@media (max-width:979px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
  }
  main {
    margin-top: 68px;
  }
}

/* === Hide scroll under mobile menu === */
body.mobile-menu-open {
  overflow: hidden;
}

/* === CUSTOM MULTICOLOR ELEMENTS – Artistic Touches === */
/* Artistic brushstroke accent on headings */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h1::after, h2::after, h3::after {
  content: '';
  display: block;
  position: absolute;
  left: -9px;
  top: 85%;
  height: 13px;
  width: 56px;
  z-index: -1;
  background: var(--accent);
  border-radius: 60px 14px 19px 22px;
  opacity: 0.28;
  pointer-events: none;
  animation: brush 5.5s infinite alternate ease-in-out;
}
h1::after { width: 87px; height: 20px; top: 85%; left: -10px; }
h2::after { width: 64px; height: 12px;   top: 75%; left: -7px; }
h3::after { width: 38px; height: 9px;    top: 72%; left: -4px; }

@keyframes brush {
  0%   { opacity:0.14; transform: scaleX(1.0) rotate(-2deg); }
  40%  { opacity:0.29; transform: scaleX(1.05) rotate(1deg); }
  60%  { opacity:0.21; }
  100% { opacity:0.42; transform: scaleX(1.1) rotate(-2deg); }
}

/* Hover underline for nav links – artistic squiggle */
.main-nav a,
.footer-nav a {
  position: relative;
}
.main-nav a::before,
.footer-nav a::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 6px;
  left: 7px;
  width: 66%;
  height: 3px;
  border-radius: 9px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.17s;
  pointer-events: none;
}
.main-nav a:hover::before,
.footer-nav a:hover::before {
  opacity: 0.56;
}

/* Artistic border doodle around cards */
.feature-item::before, .article-cards article::before, .article-teasers article::before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  width: 98%; height: 98%;
  border-radius: 17px 32px 13px 19px;
  border: 2.5px dashed #ffb32543;
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}

/* Artistic element fade-in */
@media (prefers-reduced-motion: no-preference) {
  .feature-item, .article-cards article, .testimonial-card, .cookie-banner, .cookie-modal {
    animation: fadeUp 0.7s ease;
  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ====== END CSS ====== */
