/* ============================================================
   ich-machs.ch — Custom Stylesheet
   Fonts: Playfair Display (headings) + Lato (body)
   Palette: warm olive-green (#4a5e3a), gold (#c9a84c), warm white
   ============================================================ */

:root {
  --primary:        #4a5e3a;
  --primary-dark:   #333f28;
  --primary-light:  #6b7f59;
  --accent:         #c9a84c;
  --accent-dark:    #a8893a;
  --text-dark:      #1c1c1c;
  --text-mid:       #4a4a4a;
  --text-light:     #7a7a7a;
  --bg-warm:        #f8f5ef;
  --bg-card:        #ffffff;
  --border-light:   #e8e0d0;
  --shadow-sm:      0 2px 12px rgba(74,94,58,0.10);
  --shadow-md:      0 6px 28px rgba(74,94,58,0.15);
  --shadow-lg:      0 16px 48px rgba(74,94,58,0.18);
  --radius:         10px;
  --radius-lg:      18px;
  --nav-height:     76px;
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Lato', sans-serif;
  --transition:     all 0.3s ease;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }



html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--accent); }

img { display: block; max-width: 100%; height: auto; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ---- NAVBAR ---- */
#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  transition: var(--transition);
  z-index: 1030;
}

#mainNav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text-dark);
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(74,94,58,0.07);
}

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 0.45rem 1.1rem !important;
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}
.btn-nav.active {
  background: var(--primary-dark) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.3rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74,94,58,1)' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-secondary-custom {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-secondary-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}
.btn-whatsapp:hover {
  background: #128c4e;
  border-color: #128c4e;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,40,20,0.68) 0%,
    rgba(74,94,58,0.45) 50%,
    rgba(20,28,16,0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

/* ---- PAGE HEADER ---- */
.page-header {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-header-sm {
  min-height: 260px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,40,20,0.35) 0%,
    rgba(30,40,20,0.75) 100%
  );
}
.page-header-overlay.light {
  background: linear-gradient(
          to bottom,
          rgba(255,255,255,0.20) 0%,
          rgba(0,0,0,0.35) 100%
  );
}
.page-header-overlay.solid {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem 2.5rem;
}

.page-header-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  margin: 0;
}

.hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  max-width: 750px;
  margin: 0 auto;
}

/* ---- SECTION LABELS & TITLES ---- */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
}

/* ---- BACKGROUND ---- */
.bg-light-warm {
  background-color: var(--bg-warm);
}

/* ---- OFFER CARDS (small icon pills) ---- */
.offer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.offer-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.offer-card i { font-size: 1rem; color: var(--accent); }
.offer-card:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.offer-card:hover i { color: #fff; }

/* ---- CONTENT CARDS ---- */
.card-custom {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  height: 230px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card-custom:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-body-custom {
  padding: 1.5rem;
}
.card-body-custom h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.card-body-custom p { color: var(--text-mid); font-size: 0.92rem; margin: 0; }

/* ---- PRICE BADGE ---- */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.6rem 1.8rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.price-unit {
  font-size: 1rem;
  opacity: 0.85;
}

/* ---- REFERENZEN BANNER ---- */
.referenzen-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.referenzen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}
.referenzen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,40,20,0.72), rgba(74,94,58,0.60));
}
.referenzen-content {
  position: relative;
  z-index: 2;
}
.referenzen-content h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0;
}

/* ---- ERWARTUNGEN BOX ---- */
.erwartungen-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.erwartungen-box h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ---- CHECK LIST ---- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.65rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.check-list li::before {
  content: '\F26A'; /* Bootstrap icon check-circle */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--accent);
  font-size: 0.95rem;
}

/* ---- FEATURE PILLS (Angebot page) ---- */
.feature-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.feature-pill i { color: var(--accent); margin-right: 0.4rem; }
.feature-pill:hover i { color: rgba(255,255,255,0.8); }

/* ---- THEMEN BOX ---- */
.themen-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
}
.themen-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.themen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.thema-tag {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.83rem;
  color: var(--text-mid);
  font-weight: 600;
}
.thema-tag i { color: var(--primary); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}
.cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.cta-section h2, .cta-section h3 {
  color: #fff;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.3rem; }
.cta-section h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 400; opacity: 0.9; }

/* ---- ÜBER MICH PAGE ---- */
.portrait-img {
  max-width: 280px;
  border: 4px solid var(--border-light);
}
.person-name {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.person-roles {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- CV TIMELINE ---- */
.cv-heading {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}
.cv-timeline { display: flex; flex-direction: column; gap: 0; }
.cv-item {
  display: flex;
  gap: 1.2rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
}
.cv-item:last-child { border-bottom: none; }
.cv-year {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  white-space: nowrap;
  min-width: 80px;
  letter-spacing: 0.03em;
}
.cv-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.cv-desc a { color: var(--primary); font-weight: 600; }
.cv-desc a:hover { color: var(--accent); }

/* ---- REFERENZEN CARDS ---- */
.ref-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.ref-card-img {
  height: 220px;
  overflow: hidden;
}
.ref-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ref-card:hover .ref-card-img img { transform: scale(1.05); }
.ref-card-body {
  padding: 1.5rem;
  flex: 1;
}
.ref-card-body h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.ref-person { font-weight: 700; font-size: 0.9rem; margin: 0; }
.ref-role { font-size: 0.83rem; color: var(--text-light); margin-bottom: 0.75rem; }
.ref-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- WEITERE FIRMEN ---- */
.weitere-firmen-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.firma-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}
.firma-item:last-child { border-bottom: none; }
.firma-item:hover { color: var(--primary); padding-left: 0.3rem; }
.firma-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.firma-item:hover i { color: var(--primary); }
.firma-item div { display: flex; flex-direction: column; }
.firma-item strong { font-size: 0.93rem; }
.firma-item span { font-size: 0.82rem; color: var(--text-light); }

/* ---- ROUNDED CUSTOM ---- */
.rounded-custom { border-radius: var(--radius-lg); }

/* ---- KONTAKT PAGE ---- */
.kontakt-items { display: flex; flex-direction: column; gap: 1.5rem; }
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.kontakt-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-cta-box {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.kontakt-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-light);
  margin: 0 auto;
}

/* ---- LEGAL / IMPRESSUM ---- */
.legal-section {
  margin-bottom: 2.5rem;
}
.legal-section h2 {
  font-size: 1.6rem;
  color: var(--primary);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
}
.legal-section h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-section ul { padding-left: 1.5rem; }
.legal-section ul li { margin-bottom: 0.4rem; color: var(--text-mid); font-size: 0.93rem; }
.legal-section p { color: var(--text-mid); font-size: 0.93rem; }
.legal-einwilligung {
  background: var(--bg-warm);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.legal-einwilligung h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 1rem 2rem;
}
.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}
.footer-address a { color: rgba(255,255,255,0.85); }
.footer-address a:hover { color: var(--accent); }
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-nav a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-divider {
  border-color: rgba(255,255,255,0.12);
  margin: 2rem 0 1.2rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: #25d366;
  color: #fff;
}

.social-icon[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

/* ---- ANIMATIONS ---- */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1.in-view { transition-delay: 0.1s; }
.animate-on-scroll.delay-2.in-view { transition-delay: 0.2s; }
.animate-on-scroll.delay-3.in-view { transition-delay: 0.3s; }

/* ---- BUTTON SPACING HELPERS (Bootstrap me-/mt- ohne .btn) ---- */
.btn-primary-custom.me-3,
.btn-outline-custom.me-3,
.btn-outline-secondary-custom.me-3,
.btn-whatsapp.me-3 { margin-right: 1rem !important; }

.btn-primary-custom.mt-2,
.btn-outline-custom.mt-2,
.btn-outline-secondary-custom.mt-2 { margin-top: 0.5rem !important; }

.btn-primary-custom.mt-3,
.btn-outline-custom.mt-3,
.btn-outline-secondary-custom.mt-3 { margin-top: 1rem !important; }

.btn-primary-custom.mt-4,
.btn-outline-custom.mt-4,
.btn-outline-secondary-custom.mt-4 { margin-top: 1.5rem !important; }

/* d-grid gap-3 für Kontaktseite */
.d-grid { display: grid !important; }
.d-grid.gap-3 { gap: 1rem !important; }
.d-grid .btn-primary-custom,
.d-grid .btn-whatsapp,
.d-grid .btn-outline-secondary-custom { width: 100%; text-align: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    padding: 1rem;
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 1px solid var(--border-light);
  }
  .navbar-nav .nav-link { padding: 0.6rem 0.5rem !important; }
  .btn-nav { margin-top: 0.5rem; }
  .hero-section { min-height: 85vh; }
}

@media (max-width: 767px) {
  .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
  .page-header { min-height: 280px; }
  .page-header-sm { min-height: 200px; }
  .hero-title { font-size: 2.2rem; }
  .referenzen-content h2 { font-size: 2rem; }
}
