:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #172033;
  --muted: #55627a;
  --line: #dde4ee;
  --accent: #d62828;
  --accent-dark: #b51f1f;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f6fa 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 228, 238, 0.9);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #364152;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}



.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 32px;
  align-items: center;
}
   
h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 12px;
}

.hero-lead {
  max-width: 680px;
  font-size: 17px;
}

.hero-points {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.point-card,
.info-card,
.step-card,
.ref-item,
.contact-form-wrap,
.contact-copy,
.cert-box {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.point-card {
  border-radius: var(--radius-md);
  padding: 18px;
}

.point-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #cfd7e3;
  background: #fcfdff;
}

.btn-full {
  width: 100%;
}

.hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: -40px;
}

.hero-photo-frame {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #eef2f7 100%);
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 14px;
}

.hero-photo-frame img {
    width: 100%;
    height: 420px;        /* 👈 pridaj */
    object-fit: cover;    /* 👈 pridaj */
    border-radius: 12px;
    display: block;
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  border-radius: var(--radius-md);
  padding: 30px;
  min-height: 240px;
}

.clean-list {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 10px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}
 

.step-card {
  border-radius: var(--radius-md);
  padding: 26px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff3f3;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.cert-box {
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: center;
}

.cert-visual {
  display: flex;
  justify-content: center;
}

.cert-badge {
  width: 100%;
  max-width: 280px;
  min-height: 220px;
  border-radius: 26px;
  border: 1px dashed #d8b4b4;
  background: linear-gradient(180deg, #fffafa 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  padding: 24px;
}

.cert-badge strong {
  font-size: 18px;
  color: var(--accent);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ref-item {
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 600;
  color: #334155;
  min-height: 78px;
  display: flex;
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.contact-copy,
.contact-form-wrap {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 17px;
}

.contact-details a {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-row input[type="file"] {
  padding: 12px 0;
  border: 0;
  background: transparent;
}

.form-row small {
  color: var(--muted);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(214, 40, 40, 0.12);
  border-color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .contact-layout,
  .cert-box,
  .cards-grid-3,
  .cards-grid-2,
  .references-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-frame {
    display: flex;
    justify-content: flex-end;
  }
}

.hero-photo-frame img {
    max-width: 420px;
    width: 100%;
    height: auto;
}


@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .brand-text {
    font-size: 32px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-icon {
    width: 50px;
    height: 50px;
  }

  .brand-text {
    font-size: 28px;
  }

  .hero {
    padding-top: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-photo-frame,
  .info-card,
  .step-card,
  .contact-copy,
  .contact-form-wrap,
  .cert-box,
  .ref-item,
  .point-card {
    padding: 22px;
  }
  .hero-image {
    display: flex;
    justify-content: flex-end;
}

..hero-image img {
    width: 300px !important;
    height: auto;
    border-radius: 16px;
}

/* ===== HERO – lepšie čitateľné odrážky ===== */
.hero-lead ul {
  margin: 10px 0 20px;
  padding-left: 18px;
}

.hero-lead li {
  margin-bottom: 6px;
}

/* ===== CERTIFIKÁCIA – rozloženie do dvoch stĺpcov ===== */
.cert-box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px;
  border-radius: 28px;
}

/* textová časť */


/* badge vpravo */
.cert-visual {
  align-items: center;
}

/* ===== FORMULÁR – poznámka menším písmom ===== */
.form-note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* ===== FORMULÁR – lepšie medzery ===== */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== FORMULÁR – inputy krajšie ===== */
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dc2626;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 44px);
    color: var(--text) !important;
  }
}
.info-card {
  display: block;
  text-decoration: none;<link rel="stylesheet" href="novy_style.css?v=11">
  color: inherit;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  cursor: pointer;
}
/* ===== GALÉRIA ===== */

.section-gallery {
  background: #f9f9f9;
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }
}
/* TABLET */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    width: 100%;
    max-width: none;
  }
}

/* MOBIL */
@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
}
/* ===== ODBORNOSŤ (sekcia textu) ===== */

.section-expertise {
  padding: 80px 0;
}

.expertise-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #4b5563;
  font-size: 16px;
}

.expertise-text p {
  margin-bottom: 16px;
}


/* ===== TRUST STRIP ===== */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trust-strip div {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-strip span {
  font-size: 14px;
  color: #6b7280;
}
/* ===== RESPONZIVITA - ČISTÁ OPRAVA ===== */

@media (max-width: 1500px) {
  .hero-grid,
  .cert-box,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-media,
  .contact-form,
  .contact-help {
    margin-top: 32px;
  }

  .hero-points,
.cards-grid,
.cards-grid-2,
.cards-grid-3,
.steps-grid,
.trust-strip,
.cert-box,
.hero-grid {
  grid-template-columns: 1fr !important;
}

  .step-card,
  .info-card,
  .point-card {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .hero-points,
  .cards-grid,
  .cards-grid-2,
  .cards-grid-3,
  .steps-grid,
  .trust-strip,
  .cert-box,
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }
}
/* ===== KONTAKT – FINÁL ===== */

#kontakt .contact-grid {
  display: grid !important;
  grid-template-columns: 420px 600px !important;
  gap: 40px !important;
  max-width: 1100px !important;
}

#kontakt .contact-help,
#kontakt .contact-form {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 900px) {
  #kontakt .contact-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== KONTAKT – ČISTÝ LAYOUT ===== */

#kontakt .section-head {
  max-width: 780px;
}

#kontakt .contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(420px, 560px);
  gap: 48px;
  align-items: start;
  justify-content: start;
}

#kontakt .contact-help,
#kontakt .contact-form {
  width: 100%;
}

@media (max-width: 900px) {
  #kontakt .contact-grid {
    grid-template-columns: 1fr;
  }
}
#kontakt .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.section .container {
  width: 100%;
}