/* Pohoda Live – prekódované z Figma Sites (desktop homepage) */

:root {
  --accent: rgba(46, 47, 154, 0.5);
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  overflow-x: hidden;
}

img { display: block; }

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

/* ---------- Navigácia ---------- */

.nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 15px;
  background: var(--accent);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 20px;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
}

.logo-pohoda {
  font-weight: 900;
  font-variation-settings: "wdth" 122;
  letter-spacing: -0.2px;
}

.logo-live {
  font-weight: 300;
  font-variation-settings: "wdth" 80;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu a {
  font-size: 14px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 2px 5px;
  transition: opacity 0.2s ease;
}

.menu a:hover { opacity: 0.6; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--white);
}

/* ---------- Tlačidlo ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: var(--accent);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  font-size: 20px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.btn:hover { background: rgba(46, 47, 154, 0.75); }

/* ---------- Typografia ---------- */

h1 {
  font-size: 80px;
  line-height: 95px;
  font-weight: 400;
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-size: 45px;
  font-weight: 100;
  font-variation-settings: "wdth" 100;
  text-transform: uppercase;
  line-height: normal;
}

.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 400px;
  max-width: 100%;
}

.text-block p {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
}

/* ---------- Hero ---------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  padding: 300px 30px 50px;
  background: url("../img/hero.jpg") center / cover no-repeat;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.hero-caption {
  width: 350px;
  max-width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
}

/* ---------- Sekcie ---------- */

section { position: relative; }

.section-ktosme {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 30px 300px;
}

.ktosme-inner {
  display: flex;
  align-items: center;
  gap: 100px;
}

.img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-ktosme {
  width: 450px;
  height: 700px;
  flex-shrink: 0;
}

.sq {
  position: absolute;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sq-drums {
  left: calc(50% - 20px);
  top: calc(50% + 288px);
  transform: translate(-50%, -50%);
}

.sq-bass {
  left: max(0px, calc(50% - 720px));
  top: 651px;
}

.section-svadba {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 150px;
}

.img-svadba {
  flex: 1 0 0;
  height: 600px;
  min-width: 1px;
}

.section-svadba .text-block {
  flex: 1 0 0;
  max-width: 400px;
  min-width: 400px;
}

.section-sax {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px 150px;
}

.img-sax {
  width: 770px;
  max-width: 100%;
  height: 600px;
}

.sq-saxman {
  left: calc(50% - 510px);
  top: calc(50% - 66.5px);
  transform: translate(-50%, -50%);
}

.sq-saxspin {
  left: calc(50% + 417px);
  top: calc(50% - 11.5px);
  transform: translate(-50%, -50%);
}

/* ---------- Podstránky: hero ---------- */

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 150px 30px 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.page-hero > * { position: relative; }

.page-hero-plain { padding-bottom: 50px; }
.page-hero-plain::before { background: none; }

.page-hero-center { padding-bottom: 80px; }

.page-title {
  font-size: 50px;
  line-height: normal;
  font-weight: 400;
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  text-align: center;
  max-width: 800px;
}

.btn-multiline {
  white-space: normal;
  text-align: center;
  line-height: normal;
}

/* ---------- Termíny ---------- */

.calendar {
  padding: 50px 0;
  width: 100%;
}

.calendar-year {
  font-size: 30px;
  font-weight: 400;
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  text-align: center;
  padding: 40px 0 20px;
}

.terminy-item {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #2c2c2c;
  min-height: 62px;
  box-sizing: border-box;
  transition: background 0.25s ease;
}

.terminy-item:hover { background: rgba(46, 47, 154, 0.45); }

.terminy-item p {
  font-size: 20px;
  font-weight: 400;
  font-variation-settings: "wdth" 80;
  text-transform: uppercase;
  line-height: normal;
}

.ti-miesto {
  flex: 1 0 0;
  text-align: right;
  padding-right: 50px;
}

.ti-datum {
  flex: 0 0 150px;
}

.ti-typ {
  flex: 1 0 0;
  min-width: 0;
}

.calendar-fallback {
  text-align: center;
  font-size: 16px;
  padding: 40px 30px;
  opacity: 0.7;
}

/* ---------- Foto a video ---------- */

.gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.gal-full,
.gal-half {
  height: 700px;
  overflow: hidden;
}

.gal-row {
  display: flex;
}

.gal-half { flex: 1 0 0; min-width: 1px; }

.gal-full img,
.gal-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-gallery { padding-top: 50px; }

/* ---------- Kontakt ---------- */

.kontakt {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  padding: 100px 30px 150px;
  width: fit-content;
  margin: 0 auto;
}

.kontakt-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  width: 100%;
}

.kontakt-caption {
  width: 350px;
  max-width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
}

.kontakt-tel {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.kontakt-tel-note {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-align: center;
}

.kontakt-tel-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.kontakt-tel-links a {
  font-size: 14px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.kontakt-tel-links a:hover { opacity: 0.6; }

/* ---------- Footer ---------- */

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 30px 15px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.legal {
  font-size: 14px;
  font-weight: 400;
  font-variation-settings: "wdth" 110;
  text-transform: uppercase;
  opacity: 0.3;
  white-space: nowrap;
}

.social {
  display: flex;
  gap: 15px;
}

.social a {
  font-size: 14px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.social a:hover { opacity: 0.6; }

.smash {
  display: flex;
  align-items: center;
  gap: 5px;
}

.smash p {
  font-size: 14px;
  font-weight: 400;
  font-variation-settings: "wdth" 110;
  text-transform: uppercase;
  white-space: nowrap;
}

.smash img {
  width: 14.794px;
  height: 18px;
}

/* ---------- Formulár dopytu ---------- */

.body-formular {
  background: #17174d;
  color-scheme: dark;
}

.formular-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 170px 20px 100px;
  min-height: 100vh;
}

.formular-title {
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.15;
  font-weight: 400;
  font-variation-settings: "wdth" 125;
  text-transform: uppercase;
  text-align: left;
}

.form-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-progress-label {
  font-size: 13px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.form-progress-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.form-progress-fill {
  height: 100%;
  width: 25%;
  background: #fff;
  transition: width 0.3s ease;
}

.form-step { display: none; flex-direction: column; gap: 28px; }
.form-step.active { display: flex; }

.form-step-title {
  font-size: 22px;
  font-weight: 300;
  font-variation-settings: "wdth" 110;
  text-transform: uppercase;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field > label {
  font-size: 13px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #fff;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip { position: relative; }

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-flex;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.chip input:checked + span {
  background: #fff;
  border-color: #fff;
  color: #17174d;
  font-weight: 500;
}

.chip input:focus-visible + span { border-color: #fff; }

.form-error {
  display: none;
  font-size: 14px;
  font-weight: 300;
  color: #ffb0b0;
}

.form-error.visible { display: block; }

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 5px;
}

.btn-form-back {
  background: none;
  border: none;
  padding: 10px 0;
  color: #fff;
  opacity: 0.6;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-form-back:hover { opacity: 1; }
.btn-form-back[hidden] { display: none; }

.btn-form-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  background: #fff;
  border: none;
  color: #17174d;
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  font-weight: 500;
  font-variation-settings: "wdth" 115;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s ease;
  margin-left: auto;
}

.btn-form-next:hover { opacity: 0.85; }
.btn-form-next:disabled { opacity: 0.5; cursor: wait; }

.form-success {
  display: none;
  flex-direction: column;
  gap: 25px;
  padding-top: 20px;
}

.form-success.visible { display: flex; }

.form-success h2 {
  font-size: clamp(26px, 5vw, 36px);
}

.form-success p {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  font-variation-settings: "wdth" 115;
  max-width: 440px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .formular-wrap { padding: 140px 20px 80px; gap: 32px; }
  .btn-form-next { width: 100%; }
  .form-nav { flex-direction: column-reverse; align-items: stretch; }
  .btn-form-back { align-self: center; }
}

/* ---------- Responzivita ---------- */

@media (max-width: 1279px) {
  .sq-bass { left: 0; }
  .sq-saxman { left: 130px; transform: translate(0, -50%); }
  .sq-saxspin { left: auto; right: 130px; transform: translate(0, -50%); }
}

@media (max-width: 1023px) {
  .nav {
    top: 20px;
    gap: 25px;
    max-width: calc(100% - 40px);
  }

  h1 {
    font-size: clamp(42px, 9vw, 72px);
    line-height: 1.18;
  }

  h2 { font-size: clamp(32px, 5.5vw, 45px); }

  .hero {
    gap: 100px;
    padding: 220px 30px 50px;
  }

  .section-ktosme { padding-bottom: 150px; }

  .text-block {
    width: 100%;
    max-width: 400px;
  }

  .ktosme-inner {
    flex-direction: column-reverse;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
  }

  .img-ktosme {
    width: 100%;
    max-width: 450px;
    height: 550px;
  }

  .section-svadba {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding: 0 30px 150px;
  }

  .img-svadba {
    flex: none;
    width: 100%;
    height: 450px;
  }

  .section-svadba .text-block { min-width: 0; }

  .section-sax { gap: 50px; }

  .img-sax { height: 450px; }

  .sq { display: none; }
}

@media (max-width: 767px) {
  .nav {
    top: 20px;
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
    justify-content: space-between;
    padding: 12px 15px;
    flex-wrap: wrap;
  }

  .nav-toggle { display: flex; }

  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 18px 5px 8px;
  }

  .nav.open .menu { display: flex; }

  .menu a { font-size: 15px; padding: 0; }

  .hero {
    gap: 80px;
    padding: 180px 20px 40px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .section-ktosme,
  .section-svadba,
  .section-sax {
    padding-left: 20px;
    padding-right: 20px;
  }

  .img-ktosme { height: 460px; }
  .img-svadba, .img-sax { height: 340px; }

  .btn { font-size: 17px; }

  .page-title { font-size: clamp(30px, 7.5vw, 50px); }

  .page-hero,
  .page-hero-plain,
  .page-hero-center {
    padding: 140px 20px 40px;
    gap: 40px;
  }

  .terminy-item {
    padding: 15px 20px;
    min-height: 0;
    gap: 12px;
  }

  .terminy-item p { font-size: 14px; }

  .ti-miesto { padding-right: 0; }
  .ti-datum { flex: 0 0 96px; }

  .gal-full, .gal-half { height: 300px; }

  .gal-row { flex-direction: column; }
  .gal-half { flex: none; }

  .kontakt {
    gap: 50px;
    padding: 70px 20px 100px;
  }

  .kontakt-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .kontakt-caption { width: 100%; }

  .kontakt-tel-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .legal { white-space: normal; }
}
