/* ══════════════════════════════════════════
   VYKLADY-PORUKE.CSS — Chcem Romanu Poruke
   ══════════════════════════════════════════ */

:root {
  --blue:        #C6C9EB;
  --rose:        #E9C7EB;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --white:       #FFFFFF;
  --off-white:   #FAF9FC;
  --text-dark:   #2A2A35;
  --text-mid:    #55556A;
  --purple:      #5C4FA0;
  --purple-rose: #B86BA8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAVIGÁCIA ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 4rem;
  background: #ffffff;
  border-bottom: 1.5px solid rgba(198,201,235,0.5);
  box-shadow: 0 2px 16px rgba(198,201,235,0.2);
}
.nav-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  z-index: 301; position: relative;
}
.nav-logo .dot { color: var(--purple-rose); }
#nav-toggle { display: none; }
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  z-index: 301; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 0.28s ease; transform-origin: center; pointer-events: none;
}
#nav-toggle:checked ~ .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle:checked ~ .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  padding: 0.35rem 0.55rem; border-radius: 3px;
  transition: background 0.18s;
}
.nav-links a:hover, .nav-links a.active { background: var(--blue); }
.nav-dropdown { position: relative; }
.nav-label { cursor: default; color: inherit; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-dropdown > a::after { content: ' ▾'; opacity: 0.45; font-size: 0.6rem; }
.nav-dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 0.6rem; min-width: 148px; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.74rem; color: var(--text-dark); background: #fff;
  border-left: 1px solid rgba(198,201,235,0.55);
  border-right: 1px solid rgba(198,201,235,0.55);
}
.nav-dropdown-menu a:first-child { border-top: 1px solid rgba(198,201,235,0.55); border-radius: 4px 4px 0 0; }
.nav-dropdown-menu a:last-child { border-bottom: 1px solid rgba(198,201,235,0.55); border-radius: 0 0 4px 4px; }
.nav-dropdown-menu a:hover { background: var(--rose); }
.nav-hdcz a { color: var(--purple) !important; font-weight: 700 !important; }
.nav-active > .nav-label { background: var(--blue); border-radius: 3px; padding: 0.45rem 0.8rem; }
.nav-hdcz a:hover { background: rgba(92,79,160,0.1) !important; }
.nav-overlay {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,42,53,0.4); z-index: 199;
}
@media (max-width: 900px) {
  nav { padding: 0.85rem 1.4rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(300px, 88vw); height: 100dvh;
    background: #fff; flex-direction: column;
    align-items: stretch; padding: 5.5rem 1.5rem 2rem;
    gap: 0.1rem; transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    z-index: 200; overflow-y: auto;
  }
  #nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 5px; }
  .nav-dropdown > a::after { content: ' ▾'; }
  .nav-dropdown-menu {
    position: static !important; transform: none !important;
    box-shadow: none !important; border: none !important;
    background: rgba(198,201,235,0.25);
    border-radius: 5px; padding: 0.3rem 0;
    margin: 0.2rem 0 0.3rem 0.8rem; display: block !important;
  }
  .nav-dropdown-menu a { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
}

/* ── SHARED UTILITIES ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label--light { color: rgba(255,255,255,0.5); }
.section-label--purple { color: var(--purple); }

/* ══ HERO ══ */
.poruke-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 0;
}
.poruke-hero-photo {
  overflow: hidden;
  position: relative;
}
.poruke-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.poruke-hero-text {
  background: var(--text-dark);
  padding: 8rem 4.5rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.poruke-hero-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem; display: block;
}
.poruke-hero-text h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700; color: #fff;
  line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.poruke-hero-headline {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300; color: rgba(255,255,255,0.85);
  line-height: 1.35; margin-bottom: 1.8rem;
}
.poruke-hero-headline strong { font-weight: 600; color: #fff; }
.poruke-hero-body {
  font-size: 0.88rem; line-height: 1.8;
  color: rgba(255,255,255,0.65); margin-bottom: 0.5rem;
}
.poruke-hero-meta {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em; margin-bottom: 2rem;
}
.poruke-price-hero { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.poruke-price-big  { font-size: 2rem; font-weight: 700; color: #fff; }
.poruke-price-period { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.btn-buy-large {
  display: inline-block;
  background: var(--gold); color: var(--text-dark);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 3px; text-decoration: none;
  transition: background 0.2s; align-self: flex-start;
}
.btn-buy-large:hover { background: var(--gold-light); }
.poruke-hero-note { font-size: 0.74rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }

/* ══ INTRO ══ */
.poruke-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; padding: 7rem;
  background: var(--white); align-items: start;
}
.poruke-intro-left h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 300;
  line-height: 1.25; color: var(--text-dark);
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.poruke-intro-left h2 strong { font-weight: 700; }
.poruke-intro-left p, .poruke-intro-right p {
  font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem;
}
.poruke-situations {
  list-style: none; margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.poruke-situations li {
  font-size: 0.87rem; line-height: 1.6; color: var(--text-dark);
  padding: 0.6rem 1rem; background: var(--off-white);
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
}

/* ══ PRE KOHO ══ */
.poruke-forwho {
  display: grid; grid-template-columns: 1fr 1.5fr;
  background: var(--rose); padding: 7rem; gap: 5rem; align-items: start;
}
.poruke-forwho-left h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem); font-weight: 300;
  line-height: 1.25; color: #fff; letter-spacing: -0.01em;
}
.poruke-forwho-left h2 strong { font-weight: 700; color: #fff; }
.forwho-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.forwho-list li { font-size: 0.88rem; line-height: 1.7; color: var(--text-dark); }
.forwho-list li strong { display: block; font-weight: 700; margin-bottom: 0.2rem; font-size: 0.92rem; }

/* ══ PRODUKT ══ */
.poruke-produkt { background: var(--text-dark); padding: 7rem; text-align: center; }
.poruke-produkt-inner { max-width: 860px; margin: 0 auto; }
.poruke-produkt h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 300; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.7rem;
}
.poruke-produkt h2 strong { font-weight: 700; }
.poruke-produkt-sub { font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-bottom: 2.5rem; letter-spacing: 0.04em; }
.poruke-produkt-text { font-size: 0.9rem; line-height: 1.9; color: rgba(255,255,255,0.65); margin-bottom: 2rem; text-align: center; }
.poruke-highlight {
  display: block; font-size: 1.05rem; font-weight: 700; color: var(--gold);
  text-align: center; margin: 2rem 0 3rem; letter-spacing: 0.02em;
  padding: 1.2rem 2rem; border: 1.5px solid rgba(201,169,110,0.4); border-radius: 4px;
}
.poruke-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: left; }
.poruke-card {
  background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 2rem 2rem 1.8rem; border-top: 2px solid rgba(201,169,110,0.35);
}
.poruke-card-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; display: block; }
.poruke-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; line-height: 1.3; }
.poruke-card p { font-size: 0.84rem; line-height: 1.75; color: rgba(255,255,255,0.55); }

/* ══ KROKY ══ */
.poruke-kroky { background: var(--blue); padding: 7rem; }
.poruke-kroky-inner { max-width: 900px; margin: 0 auto; }
.poruke-kroky h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 300; color: var(--text-dark);
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 3rem; text-align: center;
}
.poruke-kroky h2 strong { font-weight: 700; }
.kroky-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.krok { background: rgba(255,255,255,0.5); border-radius: 6px; padding: 2rem 2rem 1.8rem; }
.krok-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.7rem; display: block; }
.krok h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.3; }
.krok p { font-size: 0.84rem; line-height: 1.75; color: var(--text-mid); }

/* ══ PODMIENKY ══ */
.poruke-podmienky { background: var(--gold-light); padding: 6rem 7rem; }
.poruke-podmienky-inner { max-width: 760px; margin: 0 auto; }
.poruke-podmienky h2 {
  font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 300; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 2rem; letter-spacing: -0.01em;
}
.poruke-podmienky h2 strong { font-weight: 700; }
.poruke-podmienky p { font-size: 0.9rem; line-height: 1.9; color: var(--text-dark); margin-bottom: 1rem; opacity: 0.85; }

/* ══ CENA ══ */
.poruke-cena { background: var(--text-dark); padding: 7rem 2rem; text-align: center; }
.poruke-cena-inner { max-width: 540px; margin: 0 auto; }
.poruke-cena h2 {
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 700; color: #fff;
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.poruke-cena-price { font-size: 2.2rem; font-weight: 300; color: var(--gold); margin: 1.5rem 0; }
.poruke-cena-price strong { font-weight: 700; }
.poruke-cena-features { list-style: none; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.poruke-cena-features li { font-size: 0.88rem; color: rgba(255,255,255,0.6); padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.poruke-cena-features li:last-child { border-bottom: none; }
.poruke-cena-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.9rem; }

/* ══ BIO ══ */
.poruke-bio { display: grid; grid-template-columns: 1fr 1fr; background: var(--off-white); min-height: 520px; }
.poruke-bio-photo { overflow: hidden; background: var(--rose); }
.poruke-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.poruke-bio-text { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.poruke-bio-text h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 300; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.poruke-bio-text h2 strong { font-weight: 700; }
.poruke-bio-text p { font-size: 0.9rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem; }
.poruke-bio-text p strong { color: var(--text-dark); font-weight: 600; }
.poruke-bio-kluczova {
  font-size: 0.97rem; font-style: italic; color: var(--text-dark);
  border-left: 3px solid var(--gold); padding-left: 1.2rem;
  margin-top: 1rem; line-height: 1.7;
}

/* ══ FINALE ══ */
.poruke-finale { background: var(--text-dark); padding: 7rem 2rem; text-align: center; }
.poruke-finale-inner { max-width: 700px; margin: 0 auto; }
.poruke-finale h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem); font-weight: 300; color: #fff;
  line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.poruke-finale h2 strong { font-weight: 700; }
.poruke-finale-sub { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; letter-spacing: 0.04em; }
.poruke-finale-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.9rem; }

/* ══ KONTAKT ══ */
.section-contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.contact-info { background: var(--rose); padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-info .section-label { color: var(--purple); }
.contact-info h2 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 300; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.25; letter-spacing: -0.01em; }
.contact-info h2 strong { font-weight: 700; }
.contact-info p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
.contact-avatars { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.contact-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.contact-badge-link { display: flex; }
.contact-badge { height: 64px; width: auto; }
.contact-form { padding: 6rem 4rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form input, .contact-form textarea {
  font-family: 'Open Sans', sans-serif; font-size: 0.87rem;
  background: var(--off-white); border: 1.5px solid rgba(42,42,53,0.13);
  padding: 0.82rem 1rem; border-radius: 3px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--purple); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.btn-send {
  font-family: 'Open Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--text-dark); color: #fff; border: none;
  padding: 0.9rem 2rem; border-radius: 3px; cursor: pointer;
  transition: background 0.2s; align-self: flex-start;
}
.btn-send:hover { background: var(--purple); }
.form-msg { font-size: 0.84rem; line-height: 1.5; }
.form-msg.success { color: #2a7a2a; }
.form-msg.error   { color: #a02a2a; }

/* ══ RESPONZIVITA ══ */
@media (max-width: 1100px) {
  .poruke-intro    { padding: 5rem 4rem; gap: 3rem; }
  .poruke-forwho   { padding: 5rem 4rem; gap: 3rem; }
  .poruke-produkt  { padding: 5rem 4rem; }
  .poruke-kroky    { padding: 5rem 4rem; }
  .poruke-podmienky { padding: 5rem 4rem; }
  .poruke-bio-text { padding: 4rem 3.5rem; }
}
@media (max-width: 900px) {
  .poruke-hero     { grid-template-columns: 1fr; min-height: auto; }
  .poruke-hero-photo { order: 2; height: 100vh; max-height: none; }
  .poruke-hero-text { order: 1; padding: 5rem 2rem 3rem; }
  .poruke-intro    { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
  .poruke-forwho   { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
  .poruke-produkt  { padding: 4rem 2rem; }
  .poruke-cards    { grid-template-columns: 1fr; }
  .poruke-kroky    { padding: 4rem 2rem; }
  .kroky-grid      { grid-template-columns: 1fr; }
  .poruke-podmienky { padding: 4rem 2rem; }
  .poruke-cena     { padding: 5rem 2rem; }
  .poruke-bio      { grid-template-columns: 1fr; }
  .poruke-bio-photo { height: 100vh; max-height: none; }
  .poruke-bio-text { padding: 4rem 2rem; }
  .poruke-finale   { padding: 5rem 2rem; }
  .section-contact { grid-template-columns: 1fr; }
  .contact-info    { padding: 4rem 2rem; }
  .contact-form    { padding: 4rem 2rem; }
}
