/* ============================================================
   am Dorfbach – Second Hand Boutique
   style.css
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --color-bg:         #fdfdfd;
  --color-bg-warm:    #f2f9f5;
  --color-bg-tc-light:#eaf5f6;
  --color-primary:    #00a8b5;
  --color-primary-dark: #008a94;
  --color-secondary:  #39b54a;
  --color-accent:     #f9ed32;
  --color-text:       #1a2a2b;
  --color-text-muted: #5a6e6f;
  --color-border:     #d8e5e6;
  --color-white:      #ffffff;

  --font-serif:       'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', system-ui, sans-serif;
  --font-logo:        "Chalkduster", "Chalkboard SE", "Marker Felt", "Gochi Hand", cursive;
  --font-rounded:     'Quicksand', sans-serif;

  --nav-height:       68px;
  --section-gap:      5rem;
  --container-max:    1140px;
  --radius:           6px;
  --transition:       0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-text);
}

h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 720px;
}

.section {
  padding: var(--section-gap) 0;
}

.section-cream       { background: var(--color-bg); }
.section-warm        { background: var(--color-bg-warm); }
.section-terracotta-light { background: var(--color-bg-tc-light); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-rounded);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--color-primary-dark); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.75);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

/* --- Navigation --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(30, 18, 8, 0.2);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fdfdfd;
  -webkit-text-stroke: 0.2px #fdfdfd;
  white-space: nowrap;
  letter-spacing: 0.02em;
  filter: url(#chalk-filter);
  text-shadow: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: color var(--transition);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  clip-path: inset(0 100% 0 0 round 999px);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.nav-link:hover { color: var(--color-white); }
.nav-link:hover::before {
  opacity: 1;
  clip-path: inset(0 0% 0 0 round 999px);
  transition: clip-path 0.28s ease;
}

.nav-link::after { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 8, 0.38);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 700px;
}

.hero-pretitle {
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 400;
  color: #fdfdfd;
  -webkit-text-stroke: 0.8px #fdfdfd;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  filter: url(#chalk-filter);
  text-shadow: none;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.hero-claim {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: 2.5rem;
}

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col__text .section-label { display: block; }
.two-col__text h2 { margin-bottom: 1.25rem; }
.two-col__text p { color: var(--color-text-muted); font-size: 1.05rem; }

/* --- Image Placeholders (Platzhalter bis echte Fotos vorhanden) --- */
.image-placeholder {
  background: #d6d0c4;
  border: 2px dashed #999;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder--tall {
  aspect-ratio: 3/4;
  width: 100%;
}

.image-placeholder--grid {
  aspect-ratio: 4/3;
  width: 100%;
}

.image-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #888;
  opacity: 0.7;
}

/* --- Image Grid --- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* --- Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--color-bg-warm);
  border-radius: 2px;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.card p { color: var(--color-text-muted); font-size: 0.95rem; }
.card a { color: var(--color-primary); font-weight: 500; }
.card a:hover { text-decoration: underline; }

/* --- Hours Table --- */
.hours-table-wrap {
  background: var(--color-white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.hours-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 500; width: 45%; }
.hours-table td:last-child  { color: var(--color-text-muted); }

.hours-closed td { color: var(--color-text-muted); opacity: 0.6; }

.hours-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-map {
    height: 300px;
    order: -1; /* Place map above info on mobile if preferred, or keep 0 for below */
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a { color: var(--color-text); }
.contact-item a:not(.btn):hover { color: var(--color-primary); text-decoration: underline; }

.social-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}


.contact-map {
  border-radius: 2px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--color-border);
}

.contact-map iframe { width: 100%; height: 100%; }

/* --- Impressum --- */
.impressum-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.impressum-block h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.impressum-block p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.impressum-block a {
  color: var(--color-primary);
}

.impressum-block a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .impressum-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 5.6rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}



.footer-credit { font-size: 0.8rem; }
.footer-credit a { color: rgba(255, 255, 255, 0.38); transition: color var(--transition);  }
.footer-credit a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.footer-social-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ============================================================
   Responsive – Tablet
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-gap: 4rem; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col__image { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }

  .image-grid { grid-template-columns: repeat(2, 1fr); }

  .cards { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
}

/* ============================================================
   Responsive – Mobile
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-gap: 3rem; }

  /* Hamburger nav */
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background:
      linear-gradient(rgba(30, 18, 8, 0.38), rgba(30, 18, 8, 0.38)),
      linear-gradient(145deg, #6b4f3a 0%, #8b6245 30%, #7a5c3a 60%, #4a3520 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(58, 46, 34, 0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-link {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .nav-link::after { display: none; }

  /* Hero */
  .hero-title { font-size: 3rem; }

  /* Image grid */
  .image-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cards */
  .cards { grid-template-columns: 1fr; }

  /* Hours */
  .hours-table td { padding: 0.85rem 1rem; font-size: 0.9rem; }

  /* Contact */
  .contact-map { height: 240px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Offset anchor for fixed nav */
:target::before {
  content: '';
  display: block;
  height: calc(var(--nav-height) + 1rem);
  margin-top: calc(-1 * (var(--nav-height) + 1rem));
  pointer-events: none;
}

/* ============================================================
   Hover & Interaction Enhancements
   ============================================================ */

/* --- Nav logo hover --- */
.nav-logo { transition: color var(--transition); }
.nav-logo:hover { color: var(--color-primary); }

/* --- Buttons: lift on hover --- */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.18s ease,
              box-shadow 0.18s ease;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,92,56,0.22); }
.btn:active { transform: translateY(0);    box-shadow: none; }

/* --- Sortiment image-grid hover --- */
.image-placeholder { position: relative; }

.image-grid .image-placeholder {
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.image-grid .image-placeholder:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(184,92,56,0.2);
  border-color: var(--color-primary);
  border-style: solid;
}
.image-grid .image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184,92,56,0.1), rgba(122,92,58,0.22));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.image-grid .image-placeholder:hover::after { opacity: 1; }
.image-grid .image-placeholder .image-placeholder__inner {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.image-grid .image-placeholder:hover .image-placeholder__inner {
  transform: translateY(-4px);
}

/* Ueber-uns image: appears once on scroll, no hover interaction */

/* --- Cards hover --- */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(184,92,56,0.15);
  border-color: var(--color-primary);
}
.card-icon {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.card:hover .card-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.12) rotate(-6deg);
}

/* --- Hours: open/closed status badge --- */
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 0.85rem;
}
.hours-status--open {
  background: rgba(122,158,126,0.18);
  color: #3d7046;
  border: 1px solid rgba(122,158,126,0.45);
}
.hours-status--closed {
  background: rgba(122,110,94,0.1);
  color: var(--color-text-muted);
  border: 1px solid rgba(122,110,94,0.22);
}
.hours-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hours-status--open .hours-status-dot {
  background: #4a8c54;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.hours-status--closed .hours-status-dot { background: var(--color-text-muted); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,140,84,0.55); }
  55%       { box-shadow: 0 0 0 5px rgba(74,140,84,0); }
}

/* --- Hours table: row hover & today indicator --- */
.hours-table tbody tr { transition: background 0.22s ease; }
.hours-table tbody tr:not(.hours-closed):hover {
  background: rgba(184,92,56,0.05);
}
.hours-table td:first-child { position: relative; }
.hours-table td:first-child::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.hours-table tbody tr:not(.hours-closed):hover td:first-child::before {
  transform: scaleY(1);
}
.hours-table tbody tr:not(.hours-closed):hover td:first-child {
  color: var(--color-primary);
}

/* Today row */
.hours-table tr.hours-today { background: rgba(184,92,56,0.07); }
.hours-table tr.hours-today td:first-child {
  color: var(--color-primary);
  font-weight: 600;
}
.hours-table tr.hours-today td:first-child::after {
  content: 'Heute';
  display: inline-block;
  margin-left: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  vertical-align: middle;
  line-height: 1.6;
}
.hours-table tr.hours-today.hours-closed td:first-child::after {
  background: var(--color-text-muted);
}
.hours-table tr.hours-today td:first-child::before { transform: scaleY(1); }
.hours-table tr.hours-today.hours-closed td:first-child::before { display: none; }

/* --- Contact items hover --- */
.contact-item {
  border-radius: 6px;
  padding: 0.6rem;
  margin: -0.6rem;
  transition: background 0.22s ease;
}
.contact-item:hover { background: rgba(184,92,56,0.05); }
.contact-icon {
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}
.contact-item:hover .contact-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   Multi-Page: Unterseiten-Banner (page-header)
   ============================================================ */
.page-header {
  background: var(--color-primary);
  margin-top: var(--nav-height);
  padding: 3.5rem 0 3rem;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.page-header__subtitle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

/* ============================================================
   Navigation: Active Link
   ============================================================ */
.nav-link--active {
  color: var(--color-white) !important;
}
.nav-link--active::before {
  opacity: 1 !important;
  clip-path: inset(0 0% 0 0 round 999px) !important;
  transition: none !important;
}

/* ============================================================
   Home: Intro Band (teal strip)
   ============================================================ */
.section-band {
  background: var(--color-primary);
  padding: 2.75rem 0;
  text-align: center;
}
.section-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.section-band__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================================
   Cards with CTA (Home Service Cards)
   ============================================================ */
.card--cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card--cta .card-icon { margin-bottom: 1.25rem; }
.card--cta p { margin-bottom: 1.5rem; flex: 1; }

/* ============================================================
   Checklist (Kleiderannahme)
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
}
.checklist--yes .checklist__icon { color: var(--color-secondary); }
.checklist--no  .checklist__icon { color: #d94f4f; }

/* ============================================================
   Steps (Kleiderannahme 3-Schritte)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p  { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   Two-Column List (Sortiment)
   ============================================================ */
.two-col-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
}
.two-col-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  break-inside: avoid;
  font-size: 1rem;
}
.two-col-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================================
   Hinweis Box (Sortiment / Kleiderannahme)
   ============================================================ */
.hinweis-box {
  background: var(--color-bg-tc-light);
  border: 1px solid rgba(0, 168, 181, 0.4);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  text-align: center;
  margin-top: 2.5rem;
}
.hinweis-box p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.hinweis-box p:last-child { margin-bottom: 0; }

/* ============================================================
   Philosophie Block (Über uns)
   ============================================================ */
.philosophie-block {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-primary);
  padding: 2.5rem 3rem;
  border-radius: 0 2px 2px 0;
}
.philosophie-block h2 { margin-bottom: 1.25rem; }
.philosophie-block p  { color: var(--color-text-muted); font-size: 1.05rem; }

/* ============================================================
   Instagram Box (Über uns)
   ============================================================ */
.instagram-box {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1.75rem 2rem;
}
.instagram-box__icon { color: var(--color-primary); flex-shrink: 0; }
.instagram-box__text p { margin: 0 0 0.25rem; font-size: 1rem; font-weight: 500; }
.instagram-box__text span { font-size: 0.9rem; color: var(--color-text-muted); }

/* ============================================================
   Gallery Sections (Galerie-Seite)
   ============================================================ */
.gallery-section { margin-bottom: 4rem; }
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section__title {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ============================================================
   Contact Form (Kontakt)
   ============================================================ */
.contact-form-section { margin-top: 4rem; }
.contact-form-section h2 { margin-bottom: 1.75rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 181, 0.12);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-submit { margin-top: 1.5rem; }
.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 1rem;
}
.form-success {
  display: none;
  background: rgba(57, 181, 74, 0.1);
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #2a7a35;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* ============================================================
   Impressum (Kontakt – details-Block)
   ============================================================ */
.impressum-details {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}
.impressum-details summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-rounded);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg-warm);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
.impressum-details summary::-webkit-details-marker { display: none; }
.impressum-details summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-primary);
}
.impressum-details[open] summary::after { content: '−'; }
.impressum-details-body {
  padding: 2rem;
}

/* ============================================================
   Footer – neue zweispaltige Struktur
   ============================================================ */
.footer-cols {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}
.footer-col-title {
  font-family: var(--font-rounded);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}
.footer-address a { color: rgba(255, 255, 255, 0.7); transition: color var(--transition); }
.footer-address a:hover { color: var(--color-white); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

/* ============================================================
   Responsive – neue Komponenten
   ============================================================ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .philosophie-block { padding: 2rem 2rem; }
  .instagram-box { flex-direction: column; text-align: center; }
  .footer-cols { flex-direction: column; gap: 2rem; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 640px) {
  .page-header { padding: 2.5rem 0 2rem; }
  .two-col-list { columns: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hinweis-box { padding: 1.5rem; }
  .philosophie-block { padding: 1.5rem; border-left-width: 3px; }
}

/* --- Contact Card (Valonix Style) --- */
.contact-card {
  background: var(--color-white);
  padding: 4rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 168, 181, 0.04);
  margin-top: 1rem;
}

.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.contact-card__text {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  padding: 1.1rem 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 168, 181, 0.2);
}

.contact-card__btn svg {
  transition: transform 0.3s ease;
}

.contact-card__btn:hover svg {
  transform: translate(3px, -3px);
}

.contact-card__alt {
  margin-top: 3.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-card__alt a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-card__alt a:hover {
  border-color: var(--color-primary);
}

/* --- Hero Venus Icon --- */
.hero-venus {
  width: clamp(18px, 4vw, 26px);
  height: clamp(18px, 4vw, 26px);
  margin-left: 0.6rem;
  vertical-align: middle;
  stroke: var(--color-white);
  filter: url(#chalk-filter);
  transform: rotate(15deg);
  display: inline-block;
  margin-top: -4px;
}

/* --- Logo Accent (Blue Offset) --- */
.logo-accent {
  text-shadow: 4.5px 1.5px 0px rgba(0, 174, 239, 0.9) !important;
}

/* --- Hero Subtitle Polish --- */
.hero-subtitle {
  font-family: var(--font-rounded) !important; /* Helvetica/Quicksand */
  letter-spacing: 0.02em !important;
}


/* --- Logo Images --- */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: none;
}

.hero-logo-container {
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  filter: none;
  transform: none;
}

@media (max-width: 640px) {
  .hero-logo-img { max-height: 180px; }
  .nav-logo-img { height: 34px; }
}
