/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ZÁKLAD */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* HLAVIČKA / NAVIGACE */
.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* KONTEJNER */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 8%;
}

/* HERO / ÚVOD */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/obrazek-stavba.png") center / cover no-repeat;
}

.hero-content {
  padding: 4rem 0;
}

.hero-subtitle {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c59d5f;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* TLAČÍTKA */
.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn.primary {
  background-color: #c59d5f;
  color: #000;
}

.btn.secondary {
  border: 2px solid #c59d5f;
  color: #fff;
}

/* SEKCE */
.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #f5f5f5;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* O MNĚ – vizitkově */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}

.about-photo img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background-color: #f5f5f5;
}

.about-text p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.7;
  max-width: 950px;
}

/* SLUŽBY – KARTY */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.25rem;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.service-title {
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #222;
}

.service-title a {
  color: inherit;
  text-decoration: none;
}

.service-title a:hover {
  text-decoration: underline;
}

.service-desc {
  color: #444;
  line-height: 1.65;
}

/* Barevné zvýraznění karet */
.service--blue {
  border-left: 6px solid #2b6cb0;
  background: linear-gradient(90deg, rgba(43,108,176,0.08), #ffffff 35%);
}

.service--green {
  border-left: 6px solid #2f855a;
  background: linear-gradient(90deg, rgba(47,133,90,0.08), #ffffff 35%);
}

/* Bubliny u názvu služby */
.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.85rem;
  border: 1px solid rgba(0,0,0,0.10);
  white-space: nowrap;
  margin-right: 0.45rem;
}

.service-pill--blue {
  background: rgba(43,108,176,0.14);
  border-color: rgba(43,108,176,0.30);
}

.service-pill--green {
  background: rgba(47,133,90,0.14);
  border-color: rgba(47,133,90,0.30);
}

/* JAK PRACUJI */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #c59d5f;
  color: #000;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* CENÍK – KARTY */
.pricing-intro {
  max-width: 900px;
  margin-bottom: 1.75rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.pricing-card__header {
  padding: 1.25rem 1.25rem 1rem;
  background: #222;
  color: #fff;
}

.pricing--blue .pricing-card__header {
  background: #2b6cb0;
}

.pricing--green .pricing-card__header {
  background: #2f855a;
}

.pricing-card__header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.pricing-card__header p {
  margin: 0;
  opacity: 0.92;
  font-size: 0.95rem;
}

.pricing-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

/* Legend zarovnaná nad ceny */
.pricing-legend {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.pricing-legend span:last-child {
  text-align: left;
  padding-left: 0.2rem;
}

.pricing-tiers {
  display: grid;
  gap: 0.6rem;
}

.tier {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #eeeeee;
}

.tier:nth-child(even) {
  background: #f3f3f3;
}

.tier__range {
  font-weight: 800;
  color: #222;
}

.tier__prices {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  white-space: nowrap;
  flex-wrap: nowrap;
}

/* Bubliny cen */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1.2;
}

.badge--deal {
  background: rgba(197,157,95,0.18);
  border-color: rgba(197,157,95,0.45);
  color: #222;
}

.dash {
  opacity: 0.55;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
}

.tier--deal {
  background: rgba(197,157,95,0.10);
  border-color: rgba(197,157,95,0.35);
}

.pricing-card__footer {
  padding: 0 1.25rem 1.25rem;
}

.pricing-card__footer .btn {
  width: 100%;
  text-align: center;
}

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #444;
}

/* KONTAKT */
.contact-box {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* PATIČKA */
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== KONTAKT – KARTY ===== */
.contact-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 vedle sebe */
  gap: 20px;
  margin-top: 24px;
}

.card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
}

.label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.value {
  font-size: 20px;     /* ← zmenšeno z 26px */
  font-weight: 600;    /* ← o něco klidnější */
  color: #111;
  letter-spacing: 0.2px;
  user-select: text;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== KONTAKT – zvýrazněné karty (hnědá jako 25+ MIL) ===== */
.card--highlight {
  background: rgba(197, 157, 95, 0.14);   /* stejný tón jako 25+ MIL */
  border-color: rgba(197, 157, 95, 0.45);
}

.card--highlight .label {
  color: #6b4f1d;
}

.card--highlight .value {
  color: #111;
}
/* ===== BANKOVNÍ SPOJENÍ ===== */
.bank-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bank-card {
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #666;
}

.bank-value {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  user-select: text;
}