/* ==========================================================================
   Osteopathie Praxis Lidija Wenzel — Template 2025
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
section, footer, header { display: block; margin: 0; }


body {
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.3;
  color: #1a2a30;
}
a { color: #2bb5cd; text-decoration: none; -webkit-transition: color 200ms; transition: color 200ms; }
a:hover { color: #1fa3ba; }
a:focus, button:focus { outline: 3px solid #2bb5cd; outline-offset: 3px; border-radius: 2px; }
p { margin: 0 0 1em 0; }

.visuallyhidden {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  display: inline-block;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 14px 36px;
  color: #fff; background: #2bb5cd;
  border: none; border-radius: 4px; cursor: pointer;
  -webkit-transition: background 200ms, -webkit-transform 150ms;
  transition: background 200ms, transform 150ms;
  box-shadow: 0 4px 16px rgba(43,181,205,0.35);
}
.btn-primary:hover { background: #1fa3ba; color: #fff; -webkit-transform: translateY(-2px); transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-block;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 13px 34px;
  color: #1a2a30;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(26,42,48,0.55);
  border-radius: 4px; cursor: pointer;
  -webkit-transition: all 200ms; transition: all 200ms;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.90); color: #1a2a30; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  -webkit-transition: all 300ms; transition: all 300ms;
}
.header-inner {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  padding: 8px 32px;
  max-width: 1200px; margin: 0 auto;
}
.logo-wrap {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 12px; text-decoration: none;
}
.logo-circle { height: 52px; width: 52px; -ms-flex-negative: 0; flex-shrink: 0; }
.contact-logo .logo-circle { height: 48px; width: 48px; }
.logo-text {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal;
  -ms-flex-direction: column; flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 16px; font-weight: 800; color: #1a2a30;
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 11px; font-weight: 600; color: #2bb5cd;
  text-transform: uppercase; letter-spacing: 0.1em;
}

.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  gap: 30px;
}
.main-nav ul li a {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #444; padding: 6px 0;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 200ms, border-color 200ms; transition: color 200ms, border-color 200ms;
}
.main-nav ul li a:hover,
.main-nav ul li.active a { color: #2bb5cd; border-bottom-color: #2bb5cd; }

.mobile-menu-btn {
  display: none;
  background: #2bb5cd;
  border: none; border-radius: 4px;
  width: 44px; height: 44px;
  cursor: pointer;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  padding: 0;
}
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}
.hamburger-icon {
  margin: 0 auto;
}
.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger-icon::before { top: -7px; }
.hamburger-icon::after  { top:  7px; }

.mobile-nav {
  display: none;
  position: fixed; top: 0; right: -300px; width: 260px; height: 100%;
  background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 5500; padding-top: 80px;
  -webkit-transition: right 300ms ease; transition: right 300ms ease;
  overflow-y: auto;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li { border-bottom: 1px solid #f0f4f5; }
.mobile-nav ul li a {
  display: block; padding: 16px 28px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: #333;
}
.mobile-nav ul li a:hover { color: #2bb5cd; background: #f7fbfc; }

/* ==========================================================================
   Hero — slider-bg.png hell sichtbar, nur Text + Blüte
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  margin-top: 82px;
  margin-bottom: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.52) 50%, rgba(240,252,250,0.20) 100%),
    url('../images/berge.jpg') center 40% / cover no-repeat;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 100px;
  width: 100%;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  gap: 40px;
}
.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-block;
  background: rgba(43,181,205,0.12);
  border: 1px solid rgba(43,181,205,0.4);
  color: #1a8da0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: 48px; font-weight: 800;
  color: #1a2a30;
  margin: 0 0 18px 0;
  line-height: 1.12;
}
.hero-subtitle {
  font-size: 17px;
  color: #445;
  margin-bottom: 38px; line-height: 1.7;
}
.hero-actions { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 16px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.hero-actions .btn-primary,
.hero-actions .btn-outline-dark { -webkit-box-flex: 1; -ms-flex: 1 1 0; flex: 1 1 0; text-align: center; max-width: 280px; white-space: nowrap; }

/* Große Blüte rechts als Deko statt Foto */
.hero-deco {
  -ms-flex-negative: 0; flex-shrink: 0;
  width: 380px; text-align: center;
  opacity: 0.88;
}
.hero-deco img { width: 100%; drop-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Scroll-Pfeil */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  -webkit-transform: translateX(-50%); transform: translateX(-50%);
  z-index: 3; text-align: center; color: #2bb5cd;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  -webkit-animation: bounce 2s infinite; animation: bounce 2s infinite;
}
.hero-scroll i { display: block; font-size: 20px; margin-top: 4px; }
@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: translateX(-50%) translateY(0); }
  50% { -webkit-transform: translateX(-50%) translateY(8px); }
}
@keyframes bounce {
  0%, 100% { -webkit-transform: translateX(-50%) translateY(0); transform: translateX(-50%) translateY(0); }
  50% { -webkit-transform: translateX(-50%) translateY(8px); transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   Container & Section Basics
   ========================================================================== */
.container-lw { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; margin: 0; }

/* Sektionen nahtlos aneinander — keine Lücken, keine Bögen */
#services, #aboutme, #therapy, #contact {
  margin: 0;
  border-top: none;
  border-bottom: none;
}

.section-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #2bb5cd; margin-bottom: 10px;
}
.section-title { font-size: 36px; font-weight: 800; color: #1a2a30; margin: 0 0 14px 0; }
.section-lead { font-size: 17px; color: #666; max-width: 620px; line-height: 1.75; }
.section-divider {
  width: 52px; height: 4px;
  background: #2bb5cd; border: none; border-radius: 2px; margin: 18px 0 44px 0;
}

/* ==========================================================================
   Services — weißer Hintergrund, Naturakzente mit blume-steine als Deko
   ========================================================================== */
#services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(240,252,248,0.78) 100%),
    url('../images/meer.jpg') center 60% / cover no-repeat;
  padding: 96px 0 112px;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid #d8eef2;
  border-radius: 12px;
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(43,181,205,0.09);
  -webkit-transition: box-shadow 250ms, -webkit-transform 250ms;
  transition: box-shadow 250ms, transform 250ms;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  box-shadow: 0 10px 36px rgba(43,181,205,0.18);
  -webkit-transform: translateY(-6px); transform: translateY(-6px);
}

/* Kreislogo mit + (logo_circle93.png) */
.service-icon-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid #2bb5cd;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  margin: 0 auto 14px;
  background: #edf9fb;
  -webkit-transition: all 350ms ease; transition: all 350ms ease;
}
.service-card:hover .service-icon-wrap {
  background: #2bb5cd;
  -webkit-transform: rotate(12deg) scale(1.06);
  transform: rotate(12deg) scale(1.06);
  box-shadow: 0 6px 20px rgba(43,181,205,0.35);
}
.service-icon-wrap img {
  width: 56px; height: 56px;
  -webkit-transition: -webkit-transform 350ms ease, -webkit-filter 350ms ease;
  transition: transform 350ms ease, filter 350ms ease;
}
.service-card:hover .service-icon-wrap img {
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.service-card h3 { font-size: 16px; font-weight: 700; color: #1a2a30; margin: 0 0 8px 0; }
.service-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 14px 0; }
.service-more {
  font-size: 12px; font-weight: 800;
  color: #2bb5cd; text-transform: uppercase; letter-spacing: 0.1em;
}
.service-more:hover { color: #1fa3ba; }

.service-detail { max-width: 640px; padding: 10px 10px 20px; text-align: left; }
.service-detail h3 { font-size: 22px; font-weight: 700; color: #1a2a30; margin-bottom: 16px; }
.service-detail h4 { font-size: 15px; font-weight: 700; color: #2bb5cd; margin: 20px 0 6px; }
.service-detail p { font-size: 15px; color: #444; line-height: 1.8; }

/* ==========================================================================
   About Me — helles Naturdesign, Lidija nur hier
   ========================================================================== */
#aboutme {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86) 0%, rgba(225,245,248,0.88) 100%),
    url('../images/bergkette.jpg') center 50% / cover no-repeat;
  overflow: hidden;
  margin: 0;
}

.aboutme-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 72px; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  margin-top: 48px;
}
.aboutme-img-wrap { position: relative; }
.aboutme-img-wrap img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  display: block; position: relative; z-index: 1;
}
.aboutme-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 3px solid #2bb5cd;
  border-radius: 16px;
  opacity: 0.3; z-index: 0;
}
.aboutme-text .name-tag {
  font-size: 16px; font-weight: 700; color: #2bb5cd;
  display: block; margin-bottom: 24px;
}
.aboutme-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 6px; }
.aboutme-text p { color: #555; font-size: 15px; }

.credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 28px;
}
.credential {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 10px; font-size: 14px; color: #444;
  background: transparent;
  padding: 6px 0;
}
.credential i { color: #2bb5cd; font-size: 15px; }

/* ==========================================================================
   Therapie — therapy-bg.png hell sichtbar
   ========================================================================== */
#therapy {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,0.97) 100%),
    url('../images/huegel.jpg') left center / cover no-repeat;
  margin: 0;
}
.therapy-content h2 { color: #1a2a30; }
.therapy-content p { color: #444; }

.therapy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  margin-top: 52px;
}
.therapy-img {
  position: relative;
}
.therapy-img img {
  width: 100%; max-width: 460px;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
}
.therapy-content h2 { font-size: 34px; font-weight: 800; color: #1a2a30; margin-bottom: 20px; }
.therapy-content p { color: #555; font-size: 15px; margin-bottom: 14px; }

.steps { list-style: none; padding: 0; margin: 28px 0 0 0; }
.steps li {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: flex-start; -ms-flex-align: flex-start; align-items: flex-start;
  gap: 14px; margin-bottom: 14px;
  font-size: 15px; color: #555;
}
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: #2bb5cd; color: #fff;
  font-size: 12px; font-weight: 800;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  -ms-flex-negative: 0; flex-shrink: 0; margin-top: 2px;
}
.steps li strong { color: #1a2a30; }

/* ==========================================================================
   Kontakt — contact-bg.png hell sichtbar
   ========================================================================== */
#contact {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20,70,85,0.88) 0%, rgba(15,50,65,0.92) 100%),
    url('../images/contact-bg.png') center center / cover no-repeat;
  padding: 96px 0 112px;
}
#contact .section-label { color: #7adaec; }
#contact .section-title { color: #fff; }
#contact .section-lead { color: rgba(255,255,255,0.72); }
#contact .section-divider { background: #2bb5cd; }

.contact-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 64px; -webkit-box-align: start; -ms-flex-align: start; align-items: start;
  margin-top: 52px;
}
.contact-logo { margin-bottom: 28px; }
.contact-logo img { max-width: 160px; }
.logo-circle-light { -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); opacity: 0.9; }
.logo-name-light { color: #fff !important; }
.logo-sub-light { color: #7adaec !important; }

.contact-item {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 16px; margin-bottom: 20px;
}
.contact-item .ci {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(43,181,205,0.18);
  border: 1px solid rgba(43,181,205,0.45);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: #7adaec; font-size: 15px;
  -ms-flex-negative: 0; flex-shrink: 0;
}
.contact-item .ct { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.5; }
.contact-item .ct a { color: #7adaec; }

/* Form */
.cform fieldset { border: none; padding: 0 0 14px 0; margin: 0; }
.cform input[type="text"],
.cform textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; color: #fff;
  padding: 13px 16px; font-size: 15px; font-family: inherit;
  -webkit-transition: border-color 200ms, background 200ms;
  transition: border-color 200ms, background 200ms;
  outline: none;
}
.cform input[type="text"]::-webkit-input-placeholder,
.cform textarea::-webkit-input-placeholder { color: rgba(255,255,255,0.38); }
.cform input[type="text"]:-ms-input-placeholder,
.cform textarea:-ms-input-placeholder { color: rgba(255,255,255,0.38); }
.cform input[type="text"]::placeholder,
.cform textarea::placeholder { color: rgba(255,255,255,0.38); }
.cform input[type="text"]:focus,
.cform textarea:focus { border-color: #2bb5cd; background: rgba(255,255,255,0.12); }
.cform textarea { resize: vertical; min-height: 120px; }
.form-error { color: #ffe066; font-size: 13px; margin-bottom: 6px; min-height: 18px; }
.cform .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform .gdpr-row {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: flex-start; -ms-flex-align: flex-start; align-items: flex-start;
  gap: 12px; font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.55; margin-bottom: 20px;
}
.cform .gdpr-row a { color: #7adaec; }
.cform .gdpr-row input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px; cursor: pointer;
}
.success-box {
  background: rgba(43,181,205,0.1);
  border: 1px solid rgba(43,181,205,0.35);
  border-radius: 10px; padding: 32px 28px; text-align: center;
}
.success-box h3 { color: #1a8da0; font-size: 22px; margin-bottom: 10px; }
.success-box p { color: #555; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #1a2a30;
  padding: 24px 0;
}
.footer-inner {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 12px;
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-nav { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 24px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-nav a:hover { color: #2bb5cd; }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a2a30;
  color: rgba(255,255,255,0.88);
  padding: 18px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
}
#cookie-banner.hidden {
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
}
.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 220px;
}
.cookie-text a {
  color: #2bb5cd;
  text-decoration: underline;
}
.cookie-text a:hover { color: #1fa3ba; }
.cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: #2bb5cd;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 200ms;
  transition: background 200ms;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: #1fa3ba; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: border-color 200ms, color 200ms;
  transition: border-color 200ms, color 200ms;
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
}
@media (max-width: 600px) {
  #cookie-banner { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; text-align: center; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .aboutme-grid { grid-template-columns: 300px 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .hero-title { font-size: 36px; }
  .hero-deco { display: none; }
  .aboutme-grid { grid-template-columns: 1fr; gap: 40px; }
  .therapy-grid { grid-template-columns: 1fr; gap: 32px; }
  .therapy-img { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .therapy-img img { max-width: 340px; }
  #therapy { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.97) 100%), url('../images/huegel.jpg') center center / cover no-repeat; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .mobile-menu-btn { display: -webkit-box; display: -ms-flexbox; display: flex; }
  .main-nav { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 20px 80px; }
  .hero-title { font-size: 28px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .credentials { grid-template-columns: 1fr; }
  .cform .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }
  .footer-nav { -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 24px; }
  .hero-actions { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
}
