/* --- CSS RESET & NORMALIZATION --- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F4F6F7;
  font-family: 'Roboto', Arial, sans-serif;
  color: #223065;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223065;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #fdc944;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
}

/* --- BRAND & PLAYFUL DYNAMIC COLOR PALETTE --- */
:root {
  --primary: #223065;
  --secondary: #80A19A;
  --accent: #F4F6F7;
  --yellow: #fdc944;
  --red: #ff5766;
  --blue: #4886ff;
  --green: #44e086;
  --purple: #ad7df1;
  --card-bg: #fff;
  --shadow: rgba(34,48,101,0.08);
  --shadow-hover: rgba(34,48,101,0.15);
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, .btn, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  color: var(--primary);
  line-height: 1.08;
  animation: slideUpFade 1s cubic-bezier(.44,1.54,.82,.97) 0.2s 1 both;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--blue);
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--green);
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #223065;
}
blockquote {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  font-family: inherit;
}

@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
@media (min-width: 992px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.5rem; }
}

/* --- CONTAINERS AND LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: 0 6px 24px var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
}
.logo img {
  height: 42px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.2s cubic-bezier(.5,1.4,.9,.98);
}
.logo img:hover {
  transform: rotate(-7deg) scale(1.06);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.15s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  background: var(--yellow);
  width: 0;
  border-radius: 3px;
  transition: width .22s cubic-bezier(.7,1.34,.82,.97);
  margin-top: 2px;
}
.main-nav a:hover {
  color: var(--yellow);
}
.main-nav a:hover:after {
  width: 70%;
}
header .btn {
  margin-left: 24px;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

/* --- BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--yellow);
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  border-radius: 12px;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 8px;
  z-index: 31;
  transition: background .18s;
  box-shadow: 0 2px 8px var(--shadow);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--blue);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.44,1.54,.82,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  box-shadow: -8px 0 32px var(--shadow-hover);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 22px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 9px 0;
  transition: color .16s, background .16s;
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, #fdc944 0%, #F4F6F7 100%);
  padding: 56px 0 36px 0;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 16px 48px var(--shadow-hover);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.hero p {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.hero .btn {
  margin-top: 6px;
}

@media (min-width: 992px) {
  .hero {
    padding: 70px 0 48px 0;
    border-radius: 0 0 60px 60px;
  }
  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero .content-wrapper {
    max-width: 720px;
  }
}

/* --- FEATURES, SERVICES, CARDS, FLEX LAYOUTS --- */
.features, .vision-werte, .services, .about, .process, .faq, .cta, .living-quality-highlights {
  margin-bottom: 60px;
}
.features .feature-grid,
.feature-grid,
.feature-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
}
.feature-grid > div,
.feature-stepper > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--card-bg);
  box-shadow: 0 3px 16px var(--shadow);
  border-radius: 22px;
  padding: 28px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s cubic-bezier(.44,1.34,.82,.97), transform 0.17s;
  border: 3.5px solid transparent;
}
.feature-grid > div:hover,
.feature-stepper > div:hover {
  box-shadow: 0 6px 24px var(--shadow-hover);
  border-color: var(--yellow);
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
}
.feature-grid img,
.feature-stepper img {
  height: 44px;
  width: 44px;
  background: var(--yellow);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 8px;
  transition: filter 0.23s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}
.feature-grid h3, .feature-stepper h3 {
  color: var(--blue);
  margin-bottom: 4px;
}
@media (max-width: 960px) {
  .feature-grid, .feature-stepper {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .feature-grid > div, .feature-stepper > div {
    min-width: 180px;
    padding: 22px 10px 16px;
  }
  .feature-grid, .feature-stepper {
    gap: 14px;
  }
}

/* --- SERVICES LIST --- */
.services ul, .living-quality-highlights ul {
  margin: 20px 0;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.services li, .living-quality-highlights li {
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  padding: 11px 15px;
  border-radius: 18px;
  box-shadow: 0 1px 5px var(--shadow);
  margin-bottom: 8px;
  transition: background 0.18s;
  font-family: 'Roboto', Arial, sans-serif;
}
.services li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--yellow);
}
.living-quality-highlights ul li {
  background: var(--green);
  color: #223065;
  font-weight: 700;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 56px 0 20px 0;
  background: var(--purple);
  border-radius: 36px;
  box-shadow: 0 6px 32px var(--shadow-hover);
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .content-wrapper h2 {
  color: #fff;
}
.testimonial-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 650px;
  width: 100%;
  flex-direction: column;
  transition: box-shadow .2s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--shadow-hover);
  transform: scale(1.025) rotate(1deg);
}
.testimonial-info {
  color: var(--purple);
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-end;
  animation: fadeIn 1.2s .33s both;
}
.testimonial-card blockquote {
  color: #222;
  font-style: italic;
  font-size: 1.13rem;
}
@media (max-width: 780px) {
  .testimonials {
    padding: 30px 0 10px 0;
    border-radius: 18px;
  }
}

/* --- CONTACT BLOCK --- */
.contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.contact-data > div {
  display: flex;
  gap: 9px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 9px 15px;
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.contact-data img {
  width: 26px;
  height: 26px;
  background: var(--yellow);
  border-radius: 7px;
  box-shadow: 0 1px 5px var(--shadow);
  padding: 3px;
}

.map-placeholder {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 15px;
  margin-bottom: 20px;
  margin-top: 6px;
}
.map-placeholder img {
  border-radius: 12px;
  background: var(--secondary);
}

.address-block {
  font-size: 1.09rem;
  font-weight: 500;
  margin-bottom: 12px;
  background: var(--yellow);
  padding: 14px 18px;
  border-radius: 11px;
}

@media (max-width: 800px) {
  .contact-data {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }
}

/* --- ABOUT/NEIGHBOURHOODS PROFILES --- */
.neighborhood-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.neighborhood-profiles > div {
  flex: 1 1 220px;
  min-width: 180px;
  background: var(--yellow);
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 22px 15px 14px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 13px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 18px 18px 10px 18px;
  transition: box-shadow .18s, background .18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 18px var(--shadow-hover);
  background: var(--accent);
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--pink);
}

/* --- TEXT SECTION --- */
.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--shadow);
}
.text-section h1, .text-section h2 {
  margin-top: 0;
}
.text-section ul,
.text-section ol {
  margin: 18px 0 18px 16px;
  gap: 9px;
  display: flex;
  flex-direction: column;
}
.text-section li {
  margin-bottom: 3px;
}

/* --- CTA BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: box-shadow .17s, background .16s, color .16s, transform .16s;
  box-shadow: 0 2px 9px var(--shadow);
  background: var(--yellow);
  color: #223065;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
  letter-spacing: 0.03em;
  position: relative;
}
.btn.primary {
  background: var(--yellow);
  color: #223065;
}
.btn.secondary {
  background: var(--blue);
  color: #fff;
}
.btn.ghost {
  background: #fff;
  border: 2.5px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}
.btn:hover, .btn:focus {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px var(--shadow-hover);
  transform: scale(1.03) rotate(-1.3deg);
}
.btn.secondary:hover, .btn.secondary:focus {
  background: var(--yellow);
  color: var(--primary);
}
.btn.ghost:hover, .btn.ghost:focus {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--yellow);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
  padding-top: 36px;
  border-radius: 36px 36px 0 0;
  min-height: 120px;
  position: relative;
  z-index: 10;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
}
.footer-content img {
  height: 42px;
  margin-right: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 22px;
}
.footer-nav a {
  color: var(--yellow);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s, text-decoration 0.15s;
}
.footer-nav a:hover {
  text-decoration: underline wavy 2px var(--blue);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  background: var(--yellow);
  border-radius: 5px;
  padding: 2px;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 99;
  background: #fffbe6;
  color: #223065;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 20px 22px 18px 22px;
  box-shadow: 0 -4px 24px var(--shadow-hover);
  border-top: 3.5px solid var(--yellow);
  animation: slideUpFade .9s 0.15s both;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner p {
  flex: 1 1 60%;
  margin: 0 10px 0 0;
}
.cookie-banner .btn {
  margin: 0 8px;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 11px;
}
.cookie-banner .btn.accept {
  background: var(--green);
  color: #223065;
  font-weight: 700;
}
.cookie-banner .btn.reject {
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.cookie-banner .btn.settings {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.cookie-banner .btn.accept:hover,
.cookie-banner .btn.accept:focus {
  background: var(--blue);
  color: #fff;
}
.cookie-banner .btn.reject:hover,
.cookie-banner .btn.reject:focus {
  background: var(--yellow);
  color: var(--primary);
}
.cookie-banner .btn.settings:hover,
.cookie-banner .btn.settings:focus {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--yellow);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    padding: 16px 7px 16px 13px;
  }
  .cookie-banner .btn {
    width: 100%;
    margin: 8px 0 0 0;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 110;
  background: rgba(34,48,101,0.23);
  animation: fadeIn .3s both;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 32px var(--shadow-hover);
  padding: 34px 26px 24px 26px;
  max-width: 460px;
  width: 96vw;
  position: relative;
  animation: slideUpFade .4s .07s both;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  margin-top: 0;
  color: var(--primary);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 15px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.75rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background .13s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--yellow);
  color: var(--blue);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category label {
  color: var(--primary);
  flex: 1;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 22px;
  transition: .2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--yellow);
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--blue);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
  background: var(--green);
}
.cookie-modal .switch input:disabled + .slider {
  background: #ccc;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 11px;
  margin-top: 12px;
  justify-content: flex-end;
}

/* --- ANIMATIONS --- */
@keyframes slideUpFade {
  from { opacity:0; transform: translateY(35px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

/* --- UTILITY FLEX/LAYOUT CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px 14px;
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 6px 20px var(--shadow-hover);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .btn { font-size: 1rem; padding: 11px 14px; border-radius: 11px; }
  .footer-content img { height: 35px; }
  .section, .text-section { padding: 15px 3px; margin-bottom: 22px; }
}

/* --- Z-INDEX FOR LAYERING (MENUS, BANNERS) --- */
header { z-index: 20; }
.mobile-menu { z-index: 40; }
.cookie-banner { z-index: 99; }
.cookie-modal { z-index: 110; }

/* --- HELPER & PLAYFUL VISUAL EFFECTS --- */
/* Decorative circles & confetti for fun, can be positioned absolutely in safe areas */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  top: 32px; right: 70px;
  width: 60px; height: 60px;
  background: var(--green);
  opacity: 0.13;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px; left: 33px;
  width: 46px; height: 46px;
  background: var(--purple);
  opacity: 0.11;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* --- SCROLLBAR STYLING (FOR MODALS/MENU) --- */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) var(--primary);
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 7px;
  background: var(--primary);
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 6px;
}

/* --- FOCUS VISIBILITY (ACCESSIBILITY) --- */
:focus {
  outline: 2px dashed var(--purple);
  outline-offset: 2px;
}

/* --- PRINT STYLING --- */
@media print {
  .main-nav, .footer-nav, .btn, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  header, footer { background: #fff; color: #222 !important; }
  .section, .text-section { box-shadow: none; background: #fff; }
}
