/* =============================================
   CARLOS SPORTCARS – Global Styles
   ============================================= */

/* Inter – selbst gehostet, kein Google Fonts Request */
@font-face { font-family:'Inter'; src:url('../fonts/inter-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:block; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:block; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:block; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-800.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:block; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-900.woff2') format('woff2'); font-weight:900; font-style:normal; font-display:block; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #e63946;
  --red-dark:  #c1121f;
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --text:      #ffffff;
  --text-muted:#a0a0a0;
  --radius:    10px;
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.red { color: var(--red); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar .logo        { justify-self: start; margin-left: -1rem; }
.navbar .nav-links   { justify-self: center; }
.navbar > .btn       { justify-self: end; }
.navbar .hamburger   { justify-self: end; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon svg { display: block; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Echtes Logo-Bild — transparenter Hintergrund, weiße Linien */
.logo-img {
  height: 58px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg2);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .navbar > .btn { display: none; }
  .hamburger { display: none; }
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 62px;
    padding: 0 1.25rem;
    gap: 0;
    grid-template-columns: unset;
  }
  /* Logo ohne Text */
  .navbar .logo {
    justify-self: unset;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }
  .logo-img { height: 38px; }
  .logo-text { display: none; }

  /* Nav-Links als Text, restliche Breite aufteilen */
  .navbar .nav-links {
    display: flex;
    justify-content: space-around;
    flex: 1;
    padding: 0;
    gap: 0;
    border-top: none;
    border-left: none;
  }
  .navbar .nav-links .nav-link {
    background: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.25rem 0;
    border-radius: 0;
    flex: 1;
    text-align: center;
  }
  .navbar .nav-links .nav-link:hover,
  .navbar .nav-links .nav-link.active {
    background: none;
    color: var(--red);
  }

  /* Seiteninhalte nach unten schieben */
  .hero { padding-top: 95px; }
  .page-hero { padding-top: 85px; }
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
  /*
    HINTERGRUNDBILD: Ersetze die URL unten mit deinem eigenen Oldtimerfelgen-Foto.
    Empfehlung: Ein hochauflösendes Bild von klassischen Speichenfelgen (z.B. Chromfelgen
    von Mercedes W123, BMW E30, VW Käfer, Porsche 356 etc.)
    Ideal: 1920x1080px oder größer, dunkles Motiv.
  */
  background: #0a0a0a;
}

/* Hintergrundbild – größer als Hero damit es rausgezoomt wirkt */
.hero::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: url('../img/hero-bg.jpg') top center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Verhindert horizontales Scrollen durch inset */
.hero { overflow: hidden; }

/* Mobile: kein Spiegeleffekt, Bild von oben zeigen */
@media (max-width: 600px) {
  .hero::before {
    inset: 0;
    background-position: center top;
    background-size: cover;
  }
}

/* Dunkles Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.80));
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.92;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  background: rgba(230,57,70,0.07);
}
.hero-badge svg { color: var(--red); flex-shrink: 0; }

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-subtitle strong { color: #fff; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 2;
}

.scroll-dot {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(16px); }
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */

.features, .listings-preview {
  padding: 6rem 1.5rem;
}

.features { background: var(--bg2); }
.listings-preview { background: var(--bg); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

/* =============================================
   FEATURES
   ============================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(230,57,70,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230,57,70,0.08);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(230,57,70,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   LISTINGS GRID
   ============================================= */

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Skeleton Loader */
.listing-skeleton {
  height: 340px;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 14px;
  border: 1px solid var(--border);
}
@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Listing Card */
.listing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  border-color: rgba(230,57,70,0.4);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 16px 50px rgba(230,57,70,0.6);
}

.listing-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--bg2);
  display: block;
}

.listing-img-placeholder {
  width: 100%; height: 200px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.listing-body {
  padding: 0.9rem 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.listing-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.badge {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-neu       { background: rgba(21,128,61,0.25);   color: #15803d; }  /* dunkelgrün */
.badge-wie-neu   { background: rgba(22,163,74,0.2);   color: #16a34a; }  /* grün */
.badge-sehr-gut  { background: rgba(34,197,94,0.15);  color: #22c55e; }  /* mittelgrün */
.badge-gut       { background: rgba(163,230,53,0.12); color: #84cc16; }  /* gelbgrün */
.badge-gebraucht { background: rgba(202,138,4,0.15);  color: #ca8a04; }  /* amber/gelb */
.badge-groesse   { background: rgba(255,255,255,0.08); color: var(--text-muted); }

.listing-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.listing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.listing-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.listing-card .btn { font-size: 0.82rem; padding: 0.45rem 1rem; }

.listings-cta { text-align: center; }

.no-listings {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
}

/* =============================================
   FILTER BAR (Katalog)
   ============================================= */

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.filter-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition);
}
.filter-select:hover, .filter-select:focus {
  border-color: rgba(230,57,70,0.5);
  outline: none;
}
.filter-search {
  flex: 1;
  min-width: 220px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}
.filter-search::placeholder { color: var(--text-muted); }
.filter-search:focus { outline: none; border-color: rgba(230,57,70,0.5); }

/* =============================================
   PAGE HERO (Unterseiten)
   ============================================= */

.page-hero {
  padding: 110px 1.5rem 35px;
  text-align: center;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   KONTAKT
   ============================================= */

.kontakt-section {
  padding: 2.5rem 1.5rem 5rem;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.kontakt-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

@media (max-width: 700px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.kontakt-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.kontakt-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.kontakt-details { display: flex; flex-direction: column; gap: 1rem; }
.kontakt-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
}
.kontakt-item svg { color: var(--red); flex-shrink: 0; }

.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(230,57,70,0.6);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

/* Google Maps – inline im Social-Balken */
.footer-map-inline {
  width: 120px;
  height: 90px;
  border: 0;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
  filter: grayscale(0.2) brightness(0.85);
}

/* Kontakt-Seite: Map links neben dem Formular */
.kontakt-info-wrapper {
  display: flex;
  flex-direction: column;
}
.kontakt-map {
  flex: 1;
  min-height: 320px;
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.kontakt-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Social Bereich – Label oben mittig, Logos darunter */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-social-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.footer-social-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social-logos .social-btn-instagram {
  justify-content: center;
}

.social-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.5rem;
  height: 46px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  text-decoration: none;
  cursor: pointer;
}

.social-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.social-btn > *:not(.social-fill) {
  position: relative;
  z-index: 1;
}

/* ---- Logos & Icons ---- */
.ka-logo {
  height: 46px;
  width: auto;
  min-width: 140px;
  display: block;
}
.ig-icon {
  height: 22px;
  width: 22px;
  display: block;
  object-fit: contain;
}

/* ---- Instagram – Gradient immer sichtbar, kein Rand ---- */
.social-btn-instagram {
  color: #fff;
  background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  outline: none;
  min-width: 180px;
  padding: 0 2rem;
}
.social-btn-instagram .social-fill { display: none; }

/* Footer Bottom */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }

/* =============================================
   MODAL / INSERAT-OVERLAY
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.modal-overlay.open { opacity: 1; }

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.28s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }

@media (max-width: 640px) {
  .modal-box { grid-template-columns: 1fr; }
}

.modal-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--red); }

@media (max-width: 640px) {
  .modal-close {
    width: 37px; height: 37px;
    font-size: 1.05rem;
    background: rgba(0,0,0,0.45);
  }
}

/* Bilder */
.modal-images {
  position: relative;
  background: #000;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  min-height: 300px;
}
@media (max-width: 640px) {
  .modal-images { border-radius: 16px 16px 0 0; min-height: 240px; }
}

.modal-img-wrap { width: 100%; height: 100%; position: relative; }

.modal-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-img.active { opacity: 1; }
.modal-no-img {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
}

.modal-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: none; color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 5;
}
.modal-nav:hover { background: var(--red); }
.modal-prev { left: 0.6rem; }
.modal-next { right: 0.6rem; }

.modal-dots {
  position: absolute;
  bottom: 0.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.modal-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.modal-dot.active { background: #fff; }

/* Info rechts */
.modal-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =============================================
   AIRTABLE CONFIG HINWEIS (nur im Dev-Modus)
   ============================================= */

.config-banner {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--bg3);
  border: 1px solid rgba(230,57,70,0.4);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  max-width: 320px;
  font-size: 0.82rem;
  z-index: 9999;
  line-height: 1.5;
}
.config-banner strong { color: var(--red); }
.config-banner .close-banner {
  position: absolute; top: 0.5rem; right: 0.75rem;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 600px) {
  /* Hero */
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero { padding: 95px 1.25rem 40px; min-height: 85vh; }
  .hero-subtitle { margin-bottom: 1.75rem; }
  .scroll-indicator { display: none; }

  /* Sections – weniger vertikaler Abstand */
  .features, .listings-preview { padding: 2.5rem 1.25rem; }
  .section-title { margin-bottom: 1.75rem; }
  .kontakt-section { padding: 1.25rem 1.25rem 2.5rem; }

  /* 2 Spalten Inserate – Größe beibehalten */
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .listing-img { height: 130px; }
  .listing-body { padding: 0.75rem; }
  .listing-title { font-size: 0.9rem; }
  .listing-desc { display: none; }
  .listing-price { font-size: 1rem; }
  .listing-card .btn { display: none; }

  /* Footer Social – originale Größe */
  .footer-social { padding: 1rem 1.25rem; }
  .ka-logo { height: 46px; min-width: 140px; }
  .ig-icon { height: 22px; width: 22px; }
  .social-btn { height: 46px; font-size: 0.95rem; padding: 0 1.5rem; min-width: 180px; }
  .footer-social-logos { gap: 10px; }

  /* Footer Bottom – weniger Freiraum */
  .footer-inner { grid-template-columns: 1fr; text-align: center; padding: 0.6rem 1rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .footer-copy { font-size: 0.82rem; }
  .logo-img-footer { display: none; }

  /* Page Hero */
  .page-hero { padding: 90px 1.25rem 25px; }
  .page-hero h1 { font-size: 2rem; }

  /* Kontakt – kein Zoom bei Eingabefeldern (iOS), volle Breite */
  .kontakt-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .kontakt-section { padding-left: 0; padding-right: 0; }
  .kontakt-map { min-height: 200px; }
  .kontakt-map iframe { min-height: 200px; }
  .kontakt-form { gap: 0.6rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.75rem;
  }
  .form-group textarea { resize: none; height: 110px; }
  #kontaktForm > button { margin-top: 0.5rem; }
}
