/* CB Parkhaus – stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1c2b3a;
  --accent:  #2d6a9f;
  --bg:      #ffffff;
  --bg-alt:  #f5f7fa;
  --text:    #1a1a1a;
  --muted:   #5a6470;
  --border:  #dde1e7;
  --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius:  4px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.6; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
  background: rgba(28, 43, 58, 0.92);
  backdrop-filter: blur(6px);
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo img {
  height: 38px; width: auto;
  background: #fff; border-radius: 3px;
  padding: 3px 8px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .875rem; letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-lang {
  display: flex; gap: .5rem; list-style: none;
}
.nav-lang a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .25rem .4rem; border-radius: 2px;
  transition: all .2s;
}
.nav-lang a:hover, .nav-lang a.active {
  color: #fff; background: rgba(255,255,255,.15);
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 1px; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/parkhaus-den.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,20,35,.72) 0%,
    rgba(10,20,35,.55) 40%,
    rgba(10,20,35,.70) 100%);
}
.hero-content {
  position: relative; text-align: center; color: #fff;
  padding: 0 1.5rem; max-width: 700px;
}
.hero-badge {
  display: inline-block; margin-bottom: 1.25rem;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: #7fb8e8; border: 1px solid rgba(127,184,232,.5);
  padding: .35rem .9rem; border-radius: 20px;
}
.hero-content h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.01em;
  margin-bottom: .9rem;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82); margin-bottom: 2rem;
}
.hero-cta {
  display: inline-block; padding: .85rem 2rem;
  background: var(--accent); color: #fff;
  text-decoration: none; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.hero-cta:hover { background: #245a8a; transform: translateY(-1px); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
section:nth-child(even) { background: var(--bg-alt); }

.container { max-width: 1000px; margin: 0 auto; }

.section-label {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--primary); margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem;
  max-width: 600px;
}

/* ── PARKING ── */
.tariff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.tariff-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
}
.tariff-card h3 {
  font-size: .95rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: .25rem;
}
.tariff-card .time-range {
  font-size: .8rem; color: var(--muted); margin-bottom: 1.25rem;
}
.tariff-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
}
.tariff-row:last-child { border-bottom: none; }
.tariff-row .label { font-size: .9rem; color: var(--text); }
.tariff-row .price { font-size: 1.05rem; font-weight: 700; color: var(--primary); }

.parking-photo {
  width: 100%; border-radius: 8px; overflow: hidden;
  margin-bottom: 2rem; max-height: 380px; object-fit: cover;
  display: block; border: 1px solid var(--border);
}

.ev-notice {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #eaf4ff; border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
}
.ev-notice .ev-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.ev-notice p { font-size: .9rem; color: var(--primary); line-height: 1.5; }
.ev-notice strong { display: block; margin-bottom: .2rem; }

.payment-title {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 1rem;
}
.payment-grid {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.payment-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: .4rem 1rem;
  font-size: .875rem; color: var(--text);
}
.payment-chip .chip-icon { font-size: 1rem; }

/* ── LOCATION ── */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start;
}
.location-info { }
.address-block {
  display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start;
}
.address-block .addr-icon {
  font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem;
}
.address-block address {
  font-style: normal; font-size: 1rem; line-height: 1.6; color: var(--text);
}
.address-block strong { display: block; font-size: 1.05rem; }

.nearby-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: .75rem;
}
.nearby-list { list-style: none; }
.nearby-list li {
  display: flex; gap: .75rem; padding: .4rem 0;
  border-bottom: 1px solid var(--border); font-size: .9rem;
}
.nearby-list li:last-child { border-bottom: none; }
.nearby-list .dist { color: var(--muted); font-size: .85rem; margin-left: auto; white-space: nowrap; }

.map-container {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); height: 380px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── OFFICES ── */
.offices-inner {
  display: flex; gap: 2rem; align-items: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
}
.offices-text h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem;
}
.offices-text p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.offices-icon { font-size: 3rem; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.contact-block { }
.contact-block h3 {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem;
}
.contact-item {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem; }
.contact-item a {
  color: var(--accent); text-decoration: none; font-size: .95rem;
}
.contact-item a:hover { text-decoration: underline; }
.contact-item span { font-size: .95rem; color: var(--text); line-height: 1.5; }
.contact-item .ci-label {
  font-size: .75rem; color: var(--muted); display: block; margin-top: .1rem;
}

/* ── SECTION LINK ── */
.section-link {
  display: inline-block; margin-top: 1.25rem;
  color: var(--accent); text-decoration: none;
  font-weight: 600; font-size: .95rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.section-link:hover { border-bottom-color: var(--accent); }

/* ── NIGHT STRIP ── */
.night-strip {
  position: relative;
  height: 400px;
  background: url('../img/nocni-foto.png') center center / cover no-repeat;
  overflow: hidden;
}
.night-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,20,35,.30) 0%,
    rgba(10,20,35,.50) 100%);
}

/* ── FOOTER ── */
footer {
  background: var(--primary); color: rgba(255,255,255,.6);
  padding: 2rem 1.5rem; text-align: center; font-size: .82rem;
}
footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: #fff; }
footer .footer-inner { max-width: 1000px; margin: 0 auto; }
footer .footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
footer .footer-brand { color: #fff; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .95rem; }
footer .footer-lang { display: flex; gap: .75rem; }
footer .footer-lang a { font-size: .82rem; }
footer .footer-bottom { line-height: 1.7; }
.footer-cgp { display: flex; align-items: center; }
.cgp-logo { height: 38px; width: auto; opacity: .82; transition: opacity .2s; }
.cgp-logo:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--primary); padding: 1rem 2rem 1.5rem;
  }
  .nav-links.open a { padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

  .tariff-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .map-container { height: 280px; }
  .offices-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; text-align: center; }
}
