/* =========================================================
   VT Bodenbeläge – Design Polish (Sie-Ansprache)
   Ziel: moderner, klarer, mobile-first, mehr Vertrauen/Leads
   ========================================================= */

:root{
  --accent: #b33a2f;
  --accent-2: #e49a5d;
  --surface: #ffffff;
  --bg: #fbfbfc;
  --text: rgba(0,0,0,.86);
  --muted: rgba(0,0,0,.62);
  --border: rgba(0,0,0,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 18px;
}

html, body{ background: var(--bg); color: var(--text); }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.container{ max-width: 1120px; padding-left: 18px; padding-right: 18px; margin: 0 auto; }

/* Topbar: modern, aber nicht sticky (verschwindet beim Scrollen) */
.topbar{
  position: static !important;
  background: linear-gradient(135deg, rgba(179,58,47,.10) 0%, rgba(228,154,93,.14) 100%) !important;
  border-bottom: 1px solid var(--border) !important;
}
.topbar .topbar-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0; flex-wrap:wrap; }
.topbar .topbar-text{ color: var(--text); opacity:.92; line-height:1.25; }
.topbar a.topbar-link{
  display:inline-flex; align-items:center; justify-content:center; gap:.45rem;
  padding:.65rem 1rem; border-radius:999px; text-decoration:none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff !important; font-weight:900;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.topbar a.topbar-link:hover{ filter:brightness(1.06); transform:translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,.20); }

/* Headings */
h1,h2,h3{ letter-spacing:-.02em; }
h1{ font-size: clamp(2.0rem, 3.2vw, 3.0rem); line-height:1.05; }
h2{ font-size: clamp(1.5rem, 2.3vw, 2.05rem); line-height:1.15; }
p{ color: var(--muted); line-height:1.6; }

/* Karten / Sections */
.section{ padding: 56px 0; }
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons: neutral als Standard */
a.btn, button.btn, input.btn[type="submit"]{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  text-decoration:none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor:pointer;
}
a.btn:hover, button.btn:hover, input.btn[type="submit"]:hover{
  border-color: rgba(0,0,0,.16);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

/* Accent-Gradient nur bei .btn-accent (und optional .topbar-link) */
a.btn-accent, button.btn-accent, input.btn-accent[type="submit"],
a.btn.btn-accent, button.btn.btn-accent, input.btn.btn-accent[type="submit"]{
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
a.btn-accent:hover, button.btn-accent:hover, input.btn-accent[type="submit"]:hover,
a.btn.btn-accent:hover, button.btn.btn-accent:hover, input.btn.btn-accent[type="submit"]:hover{
  filter: brightness(1.06);
  box-shadow: 0 14px 26px rgba(0,0,0,.22);
}

/* Formulare: hochwertig + mobile friendly */
input[type="text"], input[type="email"], input[type="tel"], textarea, select{
  width: 100%;
  padding: .85rem .95rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(179,58,47,.35);
  box-shadow: 0 0 0 4px rgba(228,154,93,.20);
}

/* Kleine Trust-Leiste (falls vorhanden) */
.trust, .badges, .usp-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust .badge, .badges .badge, .usp-row .badge{
  background: rgba(179,58,47,.08);
  border: 1px solid rgba(179,58,47,.18);
  color: rgba(0,0,0,.78);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
}

/* Mobile */
@media (max-width: 720px){
  .section{ padding: 44px 0; }
  .topbar .topbar-inner{ flex-direction:column; align-items:stretch; }
  .topbar .topbar-text{ text-align:center; }
  .topbar a.topbar-link{ width:100%; padding:.8rem 1rem; }
}


/* ===== VT: Citypages responsive helpers ===== */

.vt-grid{ display:grid; gap:18px; align-items:stretch; }
.vt-hero-grid{ grid-template-columns:1.15fr .85fr; }
.vt-grid-2{ grid-template-columns:repeat(2, minmax(0,1fr)); }
.vt-grid-3{ grid-template-columns:repeat(3, minmax(0,1fr)); }
.vt-btn-row{ display:flex; gap:10px; flex-wrap:wrap; }
.vt-hero-img{ width:100%; height:100%; min-height:260px; object-fit:cover; border-radius:var(--radius); }

@media (max-width: 980px){
  .vt-grid-3{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px){
  .vt-hero-grid, .vt-grid-2, .vt-grid-3{ grid-template-columns:1fr; }
  .vt-hero-img{ height:auto; min-height:0; aspect-ratio: 16/9; }
  .vt-btn-row{ flex-direction:column; }
  .vt-btn-row .btn{ width:100%; }
}
