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

:root {
  --night:     #09090B;
  --deep:      #111318;
  --forest-dk: #111318;
  --forest:    #1E2025;
  --forest-lt: #3FA060;
  --meadow:    #3FA060;
  --gold:      #5FB0CE;
  --cream:     #F5EFE6;
  --text:      #1A1814;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* lang */
html.bs .t-en { display: none; }
html.en .t-bs { display: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(6,14,26,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63,160,96,0.25);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--meadow);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: #ddeedd; text-decoration: none; font-size: .9rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--meadow);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--meadow); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-social { color: rgba(200,240,220,.5); font-size: 1.1rem; transition: color .2s; text-decoration: none; }
.nav-social:hover { color: var(--meadow); }
.lang-toggle {
  background: rgba(63,160,96,.15); border: 1px solid rgba(63,160,96,.4);
  color: var(--meadow); font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  padding: 5px 13px; border-radius: 50px; cursor: pointer; transition: background .2s;
}
.lang-toggle:hover { background: rgba(63,160,96,.3); }

/* ─── PAGE HERO ─── */
.page-hero {
  min-height: 52vh;
  background:
    linear-gradient(180deg,
      rgba(6,12,20,0.78) 0%,
      rgba(6,12,20,0.55) 50%,
      rgba(6,12,20,0.85) 100%),
    url('../images/hero/kontakt-hero.png') center 50% / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  padding-top: 100px; padding-bottom: 60px;
  position: relative;
}
.page-hero-content {
  text-align: center; position: relative; z-index: 2; padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(9,9,11,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(63,160,96,.55);
  color: #7de0a8; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 24px; border-radius: 50px; margin-bottom: 24px;
  animation: fadeDown .8s ease both;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.9);
  animation: fadeDown .9s .1s ease both;
}
.page-sub {
  font-size: 1rem; color: rgba(255,255,255,.8);
  max-width: 520px; margin: 18px auto 0; line-height: 1.8;
  animation: fadeDown 1s .2s ease both;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:translateY(0); } }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: #fff; border-bottom: 1px solid #D8EFDF;
  padding: 12px 60px; display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: #6A8A70;
}
.breadcrumb a { color: var(--meadow); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: .65rem; }

/* ─── MAIN SECTION ─── */
.kontakt-section {
  padding: 80px 60px 100px;
  background: var(--cream);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ─── SECTION LABEL / TITLE ─── */
.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--meadow);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text); line-height: 1.15;
  margin-bottom: 20px;
}
.section-title .line2 { color: var(--meadow); }

/* ─── INTRO TEXT ─── */
.kontakt-intro {
  font-size: .92rem; color: #4A6A55; line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ─── CONTACT ITEMS ─── */
.kontakt-items {
  display: flex; flex-direction: column; gap: 24px;
}
.kontakt-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #D8EFDF;
  box-shadow: 0 2px 14px rgba(20,18,14,.05);
  transition: box-shadow .25s, transform .25s;
}
.kontakt-item:hover {
  box-shadow: 0 8px 30px rgba(20,18,14,.1);
  transform: translateY(-2px);
}
.kontakt-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(63,160,96,.1); border: 1.5px solid rgba(63,160,96,.3);
  color: var(--meadow); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.kontakt-item-body { flex: 1; }
.kontakt-label {
  font-size: .73rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #6A8A70; margin-bottom: 6px;
}
.kontakt-value {
  font-size: .95rem; color: var(--text); line-height: 1.65; font-weight: 500;
}
.kontakt-value a {
  color: var(--meadow); text-decoration: none; font-weight: 600;
  transition: color .2s;
}
.kontakt-value a:hover { color: #2D8050; text-decoration: underline; }
.kontakt-closed {
  font-size: .82rem; color: #999; margin-top: 2px; display: block;
}

/* ─── SOCIAL PILLS ─── */
.kontakt-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  background: rgba(63,160,96,.1);
  border: 1.5px solid rgba(63,160,96,.3);
  color: var(--meadow); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-pill:hover {
  background: var(--meadow); color: #fff; border-color: var(--meadow);
}

/* ─── MAP ─── */
.kontakt-map-col { position: sticky; top: 100px; }
.map-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(20,18,14,.15);
  border: 1px solid #D8EFDF;
  height: 380px; margin-bottom: 16px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #D8EFDF;
  box-shadow: 0 2px 10px rgba(20,18,14,.05);
}
.map-meta-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: #4A6A55;
}
.map-meta-item i { color: var(--meadow); width: 14px; }

/* ─── INFO STRIP ─── */
.info-strip {
  background: linear-gradient(180deg, var(--forest-dk) 0%, #0D2232 100%);
  padding: 70px 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.info-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px;
  position: relative;
}
.info-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(63,160,96,.12);
}
.info-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(63,160,96,.12); border: 1.5px solid rgba(63,160,96,.35);
  color: var(--meadow); font-size: 1.4rem; margin-bottom: 18px;
}
.info-item h3 { font-size: 1rem; font-weight: 700; color: #e8f5ee; margin-bottom: 8px; }
.info-item p  { font-size: .84rem; color: rgba(200,240,220,.45); line-height: 1.7; max-width: 240px; }

/* ─── QUICK LINKS ─── */
.quick-links-section {
  padding: 80px 60px 100px;
  background: #f0faf5;
  border-top: 1px solid #C8E6D0;
}
.quick-links-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.quick-link-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: #fff; border-radius: 18px;
  border: 1.5px solid #D8EFDF;
  box-shadow: 0 2px 14px rgba(20,18,14,.06);
  text-decoration: none; color: var(--text);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.quick-link-card:hover {
  box-shadow: 0 10px 36px rgba(20,18,14,.14);
  transform: translateY(-4px);
  border-color: var(--meadow);
}
.ql-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(63,160,96,.1); border: 1.5px solid rgba(63,160,96,.3);
  color: var(--meadow); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.ql-text { flex: 1; }
.ql-text h4 { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ql-text p  { font-size: .8rem; color: #6A8A70; line-height: 1.5; }
.ql-arrow { color: rgba(63,160,96,.4); font-size: .85rem; transition: color .2s, transform .2s; }
.quick-link-card:hover .ql-arrow { color: var(--meadow); transform: translateX(4px); }

/* ─── FOOTER ─── */
footer {
  background: var(--forest-dk);
  border-top: 1px solid rgba(63,160,96,.15);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 60px; gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: .85rem; color: rgba(200,240,220,.45); line-height: 1.7; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(63,160,96,.1); border: 1px solid rgba(63,160,96,.25);
  color: rgba(200,240,220,.6); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--meadow); color: #fff; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .85rem; color: rgba(200,240,220,.5); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--meadow); }
.footer-bottom {
  border-top: 1px solid rgba(63,160,96,.1);
  padding: 20px 60px; text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(200,240,220,.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
  .kontakt-map-col { position: static; }
  .info-strip { grid-template-columns: 1fr; }
  .info-item:not(:last-child)::after { display: none; }
  .quick-links-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .kontakt-section { padding: 60px 24px 80px; }
  .breadcrumb { padding: 12px 24px; }
  .info-strip { padding: 50px 24px; }
  .quick-links-section { padding: 60px 24px 80px; }
  .footer-top { flex-direction: column; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; }
}
