/* === PAINDOCTOR.DE – GLOBAL STYLES v3 === */
/* Lokale Schriften (kein Google Fonts CDN) */
/* Inter – latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
/* Inter – latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* Nunito Sans – latin-ext */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
/* Nunito Sans – latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/assets/fonts/nunito-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --navy: #1a2b4a;
  --navy-dark: #0f1a2e;
  --teal: #2a7f7f;
  --teal-light: #3a9f9f;
  --teal-pale: rgba(42,127,127,0.08);
  --gold: #c8a05a;
  --cream: #f5f7f9;
  --white: #ffffff;
  --text: #1e2d3d;
  --text-light: #566577;
  --border: #e2e8ef;
  --shadow: 0 2px 16px rgba(26,43,74,0.08);
  --shadow-lg: 0 8px 40px rgba(26,43,74,0.14);
  --radius: 8px;
  --transition: 0.22s ease;
  --font-head: 'Nunito Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Nunito Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0.9rem; }
h3 { font-size: clamp(1rem, 1.8vw, 1.15rem); margin-bottom: 0.5rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ====== URLAUBSNOTIZ-BANNER ====== */
.notice-banner {
  background: #b8600a;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.notice-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.notice-banner-icon {
  font-style: normal;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.79rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-hours { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.topbar-hours span { white-space: nowrap; }
.topbar-hours .closed { color: #f08080; }
.topbar a { color: var(--gold); font-weight: 600; }

@media (max-width: 640px) {
  .topbar { padding: 6px 0; }
  .topbar .container {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }
  .topbar-hours {
    justify-content: center;
    gap: 2px 10px;
    font-size: 0.73rem;
    line-height: 1.5;
  }
  .topbar-hours span { white-space: nowrap; }
  .topbar > .container > div:last-child { font-size: 0.8rem; }
}

/* ====== HEADER ====== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 10px rgba(26,43,74,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  gap: 0;
}

/* LOGO */
.logo {
  flex-shrink: 0;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 40px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.6rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1px;
  white-space: nowrap;
}

/* ====== NAV – nur 3 Items + CTA ====== */
nav { flex: 1; display: flex; align-items: center; min-width: 0; }
nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0; padding: 0;
  width: 100%;
}

/* Top-level nav links */
nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 0 16px;
  height: 68px;
  white-space: nowrap;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  letter-spacing: -0.01em;
  line-height: 1;
}
nav > ul > li > a:hover,
nav > ul > li > a.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}

/* Spacer pushes CTA to far right */
.nav-spacer { flex: 1; }

/* Chevron arrow */
.chevron {
  font-style: normal;
  font-size: 0.5rem;
  opacity: 0.5;
  transition: transform var(--transition);
  display: inline-block;
  margin-top: 1px;
}
.dropdown:hover .chevron { transform: rotate(180deg); opacity: 1; }

/* ====== MEGA DROPDOWN ====== */
.dropdown { position: static; }

.mega-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(26,43,74,0.14);
  z-index: 500;
}
.dropdown:hover .mega-menu { display: block; }

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.mega-col {
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }

.mega-col-title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li { margin-bottom: 2px; }
.mega-col ul li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  height: auto;
  border-bottom: none;
  transition: background var(--transition), color var(--transition);
  line-height: 1.4;
}
.mega-col ul li a:hover { background: var(--cream); color: var(--teal); }
.mega-link-icon {
  width: 28px; height: 28px;
  background: var(--teal-pale);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.mega-link-text strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.mega-link-text span  { display: block; font-size: 0.77rem; color: var(--text-light); margin-top: 1px; line-height: 1.3; }
.mega-col ul li a:hover .mega-link-text strong { color: var(--teal); }

/* CTA Button – rechts, immer sichtbar */
.nav-cta-wrap {
  flex-shrink: 0;
  margin-left: 24px;
}
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 7px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  height: auto !important;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  white-space: nowrap;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(42,127,127,0.22);
}
.nav-cta:hover {
  background: #185f5f !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,127,127,0.32) !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  margin-left: auto;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  font-family: var(--font-body); letter-spacing: -0.01em;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: #1f6060; border-color: #1f6060; color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(42,127,127,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #1f6060; color: var(--white); border-color: #1f6060; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
/* 
  HERO-HINTERGRUNDBILD:
  Ersetzen Sie die Datei "hero-bg.jpg" im selben Ordner durch Ihr gewünschtes Bild.
  Empfohlene Größe: mindestens 1400 x 800 px
  Oder ändern Sie die URL in der .hero-bg Klasse direkt.
*/
.hero-bg {
  position: absolute;
  inset: 0;
  /* === PLATZHALTER – durch eigenes Foto ersetzen === */
  background: linear-gradient(160deg, #0f1a2e 0%, #1a3a5c 40%, #1e4d7a 70%, #2a6b8a 100%);
  background-image:
    url('hero-bg.jpg'),
    linear-gradient(160deg, #0f1a2e 0%, #1a3a5c 40%, #1e4d7a 70%, #2a6b8a 100%);
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
/* Dekoratives Muster wenn kein Bild vorhanden (Platzhalter) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 60%, rgba(42,127,127,0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 30%, rgba(200,160,90,0.08) 0%, transparent 45%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,18,34,0.88) 0%, rgba(15,26,46,0.72) 55%, rgba(15,26,46,0.2) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 48px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(200,160,90,0.16);
  border: 1px solid rgba(200,160,90,0.4);
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 18px;
  font-weight: 800;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero hours card */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 28px 24px;
}
.hero-hours-title {
  font-size: 0.67rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 16px;
  font-family: var(--font-body);
}
.hours-list { width: 100%; border-collapse: collapse; }
.hours-list td { padding: 5px 0; font-size: 0.88rem; vertical-align: middle; }
.hours-list td.day { color: rgba(255,255,255,0.65); }
.hours-list td.time { text-align: right; font-weight: 600; color: rgba(255,255,255,0.92); }
.hours-list td.time.open { color: #7de8c0; }
.hours-list td.time.hinweis { color: var(--gold); font-style: italic; }
.hours-list td.time.closed { color: #f08080; }
.hours-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 14px 0; }
.hero-tel { text-align: center; }
.hero-tel a { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.hero-tel a:hover { color: var(--gold); }
.hero-tel small { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.42); margin-top: 3px; }

/* ====== SECTIONS ====== */
.section { padding: 68px 0; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header .overline { display: block; font-size: 0.7rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: 0.96rem; }
.divider-line { width: 38px; height: 3px; background: var(--gold); margin: 12px auto; border-radius: 2px; }

/* ====== HIGHLIGHTS ====== */
.highlights { background: var(--white); padding: 64px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.highlight-card { background: var(--cream); border-radius: 10px; padding: 26px 22px; border-top: 3px solid var(--teal); transition: transform var(--transition), box-shadow var(--transition); }
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 1.7rem; margin-bottom: 12px; }
.highlight-card h3 { margin-bottom: 8px; font-size: 1rem; }
.highlight-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; line-height: 1.65; }

/* ====== TREATMENTS ====== */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.treatment-card { background: var(--white); border-radius: 10px; padding: 22px; border: 1px solid var(--border); transition: all var(--transition); }
.treatment-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.treatment-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.treatment-card p { font-size: 0.85rem; color: var(--text-light); margin: 0 0 10px; line-height: 1.6; }
.treatment-tag { display: inline-block; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); background: var(--teal-pale); padding: 3px 9px; border-radius: 20px; margin-bottom: 10px; }

/* ====== ABOUT ====== */
.about-strip { background: var(--navy); padding: 68px 0; }
.about-strip .container { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
.about-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 320px; object-fit: cover; }
.about-content h2 { color: var(--white); margin-bottom: 14px; }
.about-content p { color: rgba(255,255,255,0.76); font-size: 0.94rem; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.credential-badge { background: rgba(200,160,90,0.14); border: 1px solid rgba(200,160,90,0.35); color: var(--gold); font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h3 { margin-bottom: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 16px; }
.contact-detail-icon { width: 34px; height: 34px; background: var(--teal); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.85rem; color: var(--white); }
.contact-detail-text strong { display: block; font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 2px; font-weight: 600; }
.contact-detail-text span, .contact-detail-text a { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: 10px; padding: 30px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: var(--cream); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.75rem; color: var(--text-light); margin-top: 10px; line-height: 1.55; }
.success-msg { display: none; background: #d4edda; color: #155724; padding: 12px 16px; border-radius: var(--radius); margin-top: 12px; font-size: 0.88rem; }

.map-container { border-radius: 10px; overflow: hidden; margin-top: 22px; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 250px; border: none; display: block; }

/* ====== PAGE HERO ====== */
.page-hero { background: linear-gradient(120deg, var(--navy-dark) 0%, #1a3a5c 100%); padding: 50px 0; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.62); }
.breadcrumb a:hover { color: var(--gold); }

/* ====== CONTENT LAYOUT ====== */
.content-section { padding: 58px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 290px; gap: 44px; align-items: start; }
.content-body h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.55rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin-top: 22px; margin-bottom: 8px; color: var(--teal); font-size: 1.05rem; }
.content-body ul { padding-left: 18px; margin-bottom: 1rem; }
.content-body ul li { margin-bottom: 6px; color: var(--text-light); font-size: 0.94rem; line-height: 1.65; }
.content-body ul li strong { color: var(--navy); }

/* ====== SIDEBAR ====== */
.sidebar-card { background: var(--white); border-radius: 10px; padding: 20px; box-shadow: var(--shadow); margin-bottom: 18px; border-top: 3px solid var(--teal); }
.sidebar-card h4 { color: var(--navy); margin-bottom: 14px; font-size: 0.92rem; font-weight: 700; letter-spacing: -0.01em; }

/* ÖFFNUNGSZEITEN SIDEBAR – Wochentage linksbündig, Zeiten rechtsbündig */
.sidebar-hours-table { width: 100%; border-collapse: collapse; }
.sidebar-hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--cream); }
.sidebar-hours-table td { padding: 6px 0; font-size: 0.85rem; vertical-align: middle; line-height: 1.4; }
.sidebar-hours-table td.sh-day {
  text-align: left;
  color: var(--text);
  font-weight: 500;
  padding-right: 8px;
  width: 52%;
}
.sidebar-hours-table td.sh-time {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  width: 48%;
}
.sidebar-hours-table td.sh-time.open  { color: var(--teal); }
.sidebar-hours-table td.sh-time.hinweis { color: #b8832a; font-style: italic; font-size: 0.82rem; }
.sidebar-hours-table td.sh-time.closed { color: #d94040; font-weight: 500; }

.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: 6px 0; border-bottom: 1px solid var(--cream); font-size: 0.87rem; display: flex; align-items: center; gap: 6px; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li::before { content: '›'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.sidebar-card ul li a { color: var(--text); }
.sidebar-card ul li a:hover { color: var(--teal); }

/* ====== NOTICE BOX ====== */
.notice-box { background: rgba(200,160,90,0.08); border-left: 3px solid var(--gold); padding: 13px 16px; border-radius: 0 6px 6px 0; margin: 18px 0; }
.notice-box p { color: var(--navy); margin: 0; font-size: 0.88rem; }

/* ====== FOOTER ====== */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1180px; margin: 0 auto; padding: 50px 28px 34px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--teal-light); }
.footer-brand p { margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-col h5 { color: var(--white); font-size: 0.71rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 14px; font-family: var(--font-body); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.52); }
.footer-col ul li a:hover { color: var(--gold); }

/* Footer Öffnungszeiten Tabelle */
.footer-hours-table { width: 100%; border-collapse: collapse; }
.footer-hours-table td { padding: 4px 0; font-size: 0.82rem; vertical-align: middle; }
.footer-hours-table td.fh-day { color: rgba(255,255,255,0.5); text-align: left; padding-right: 8px; }
.footer-hours-table td.fh-time { text-align: right; font-weight: 500; }
.footer-hours-table td.fh-time.open { color: #7de8c0; }
.footer-hours-table td.fh-time.hinweis { color: var(--gold); }
.footer-hours-table td.fh-time.closed { color: #f08080; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); max-width: 1180px; margin: 0 auto; padding: 18px 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.79rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links a { color: rgba(255,255,255,0.42); margin-left: 18px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ====== LOGIN/ADMIN ====== */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 24px; }
.login-box { background: var(--white); border-radius: 14px; padding: 44px 36px; width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.login-logo { text-align: center; margin-bottom: 28px; }
.login-error { background: #fde8e8; color: #c0392b; padding: 10px 14px; border-radius: var(--radius); font-size: 0.87rem; margin-bottom: 14px; display: none; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--navy); flex-shrink: 0; display: flex; flex-direction: column; }
.admin-sidebar .logo { padding: 20px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav-item { display: block; padding: 10px 18px; color: rgba(255,255,255,0.62); font-size: 0.875rem; font-weight: 500; transition: all var(--transition); cursor: pointer; border: none; background: none; width: 100%; text-align: left; font-family: var(--font-body); }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.1); color: var(--white); }
.admin-nav-section { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); padding: 14px 18px 5px; }
.admin-logout { padding: 14px 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.admin-logout button { background: none; border: none; color: rgba(255,255,255,0.42); font-size: 0.84rem; cursor: pointer; font-family: var(--font-body); }
.admin-logout button:hover { color: #f08080; }
.admin-main { flex: 1; background: #f0f2f5; overflow: auto; }
.admin-header { background: var(--white); padding: 16px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-header h1 { font-size: 1.15rem; margin: 0; }
.admin-content { padding: 26px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-card { background: var(--white); border-radius: 10px; padding: 22px; margin-bottom: 18px; box-shadow: 0 1px 5px rgba(0,0,0,0.07); }
.admin-card h3 { margin-bottom: 16px; font-size: 0.98rem; padding-bottom: 11px; border-bottom: 1px solid var(--border); }
.field-group { margin-bottom: 14px; }
.field-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.field-group input, .field-group textarea, .field-group select { width: 100%; padding: 9px 11px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; transition: border-color var(--transition); outline: none; }
.field-group input:focus, .field-group textarea:focus, .field-group select:focus { border-color: var(--teal); }
.field-group textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.save-btn { background: var(--teal); color: var(--white); border: none; padding: 10px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background var(--transition); font-family: var(--font-body); }
.save-btn:hover { background: var(--navy); }
.save-success { display: none; background: #d4edda; color: #155724; padding: 9px 13px; border-radius: var(--radius); font-size: 0.85rem; margin-top: 10px; }
.hours-admin-table { width: 100%; border-collapse: collapse; }
.hours-admin-table th { text-align: left; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); padding-bottom: 10px; font-weight: 600; }
.hours-admin-table td { padding: 7px 6px 7px 0; vertical-align: middle; }
.hours-admin-table td input[type="time"], .hours-admin-table td input[type="text"] { padding: 7px 9px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 0.87rem; font-family: var(--font-body); }
.hours-admin-table .day-name { font-weight: 600; color: var(--navy); padding-right: 12px; min-width: 105px; font-size: 0.89rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.stat-card { background: var(--white); border-radius: 10px; padding: 16px 18px; box-shadow: 0 1px 5px rgba(0,0,0,0.07); display: flex; align-items: center; gap: 12px; }
.stat-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.stat-val { font-size: 1.3rem; color: var(--navy); line-height: 1; font-weight: 700; }
.stat-label { font-size: 0.74rem; color: var(--text-light); margin-top: 2px; }
.pw-strength { height: 4px; border-radius: 2px; margin-top: 5px; background: #eee; overflow: hidden; }
.pw-strength-bar { height: 100%; width: 0; border-radius: 2px; transition: all 0.3s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 380px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .about-strip .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header-inner { gap: 0; padding: 0 16px; }
  .logo { margin-right: 0; }
  .nav-cta-wrap { display: none; }

  /* Modern slide-in mobile nav */
  nav {
    display: block;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: 0;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    -webkit-overflow-scrolling: touch;
  }
  nav.open { transform: translateX(0); }

  /* Mobile nav overlay */
  nav::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  /* Mobile nav list */
  nav > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 12px 0 80px;
  }

  /* Mobile nav top-level links */
  nav > ul > li > a {
    height: auto;
    padding: 15px 24px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0;
  }
  nav > ul > li > a:hover,
  nav > ul > li > a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
    border-bottom-color: rgba(255,255,255,0.07);
  }
  nav > ul > li.nav-spacer { display: none; }

  /* Mobile CTA inside nav */
  nav > ul::after {
    content: '';
    display: block;
    height: 1px;
  }

  /* Dropdown accordion for mobile */
  .dropdown { position: static; }

  .mega-menu {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .dropdown.mobile-open > a { color: var(--gold) !important; }
  .dropdown.mobile-open .mega-menu { display: block !important; }

  .mega-inner {
    grid-template-columns: 1fr;
    padding: 8px 0 12px;
    gap: 0;
  }
  .mega-col {
    padding: 8px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mega-col:last-child { border-bottom: none; }
  .mega-col-title {
    color: var(--teal-light);
    font-size: 0.62rem;
    padding: 8px 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4px;
  }
  .mega-col ul li a {
    color: rgba(255,255,255,0.75);
    padding: 8px 4px;
    font-size: 0.9rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .mega-col ul li:last-child a { border-bottom: none; }
  .mega-col ul li a:hover { color: var(--gold); background: transparent; }
  .mega-link-icon { display: none; }
  .mega-link-text strong { color: rgba(255,255,255,0.85); font-weight: 500; }
  .mega-link-text span { display: none; }
  .mega-col ul li a:hover .mega-link-text strong { color: var(--gold); }

  /* Mobile nav – inline CTA at bottom */
  .mobile-nav-cta {
    display: block;
    margin: 20px 24px;
    background: var(--teal);
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: none !important;
  }
  .mobile-nav-cta:hover { background: var(--teal-light) !important; color: #fff !important; }

  /* Chevron mobile */
  .chevron { font-size: 0.65rem; opacity: 0.6; }

  /* Other layout fixes */
  .highlights-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
