
/* -----------------------
   0) CSS CUSTOM PROPERTIES
   ----------------------- */
:root {
  /* Barvy (světlé, hravé, modrá jako voda) */
  --clr-bg: #20603d;



  /* Typografie */
    --ff-head: "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --ff-base: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --ff-stone:  "MujFont", "Baloo 2", sans-serif;
    --fs-1000: clamp(5rem, 8vw + 2rem, 7.2rem);
    --fs-900: clamp(2.4rem, 4vw + 1rem, 3.6rem);
    --fs-800: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    --fs-700: 1.5rem;
    --fs-600: 1.25rem;
    --fs-500: 1.125rem;
    --fs-400: 1rem;
    --fs-300: 0.9375rem;
}

@font-face {
  font-family: "MujFont"; /* název fontu, jak ho budeš používat */
  src: url("fonts/Stone Board Rought.otf") format("woff2"),
       url("fonts/Stone board.otf") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* doporučeno kvůli rychlosti načítání */
}


/* -----------------------
   1) MODERNÍ RESET
   ----------------------- */
* { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-base);
  font-size: var(--fs-400);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background-image: url("images/foam kopie kopie.webp");
  background-size: cover;
  background-position: center;

}




.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: #fff;
  color: #000000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px; /* zobrazí se, když na něj Tabem najedeš */
}
/* -----------------------
   2) HLAVIČKA & NAVIGACE
   ----------------------- */

/* ====== HLAVIČKA & NAVIGACE ====== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.27), rgba(0, 0, 0, 0));

}

.logo-img {
  width: 180px;
  margin-top: 0px;
  text-align: center;
  margin-left: 50px;
}

.logo b {

}

.nav__links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
  padding-right: 80px;
}

/* ====== LINKY S ANIMOVANOU ČÁRKOU ====== */
.nav__link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

/* animovaná čárka pod textem */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #dcc46c ;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

/* efekt při hoveru nebo focusu */
.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

/* barva textu při hoveru */
.nav__link:hover,
.nav__link:focus-visible {
  color: #dcc46c;
  outline: none;
}

/* aktivní stránka = čárka trvale zapnutá */
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* respektuj snížený pohyb */
@media (prefers-reduced-motion: reduce) {
  .nav__link::after {
    transition: none;
  }
}

/* ====== RESPONZIVITA ====== */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-bottom: 0.5rem;
  }

  .nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}





.hamburger-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    position: fixed;
    right: 30px;
    top: 30px;
    padding: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 50px;
    background: #000000;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    border: 1px solid #dcc46c;

    border-radius: 50px;
    color: #000000; /* základní barva textu */
  }


.hamburger-menu:hover {
    transform: scale(1.02);
}

.hamburger-menu .line {
    width: 80%;
    height: 3px;
    background-color: #ffffff;
    opacity: 1;
}


.hamburger-logo{
  display: none;
}

.logo-hamburger-div {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -0%);
  display: none; /* nebo block, pokud ho chceš vidět */
  text-align: center;
  z-index: 1000; /* aby bylo logo nad ostatním obsahem */
}

.logo-hamburger {
  width: 200px;
}

.nav-menu {
    position: fixed;
    top: 120px;
    right: -200px; /* Skryté mimo obrazovku */
    width: 200px;
    height: calc(100% - 60px);
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 2px solid #dcc46c;
  backdrop-filter: blur(5px) saturate(150%);
  -webkit-backdrop-filter: blur(5px) saturate(150%);

  color: #000000; /* základní barva textu */
    transition: right 0.3s ease;
    z-index: 9999;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    padding: 15px;
    border-bottom: 1px solid #000000;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.nav-menu.open {
    right: 0; /* Posune menu do viditelné oblasti */
}

.hamburger-menu.open .stredline {
    opacity: 0; /* Skryje prostřední čáru */
    transition: opacity 0.1s ease; /* Rychlejší zmizení prostřední čáry */
}

.hamburger-menu.open .horniline {
    transform: rotate(45deg) translate(5px, 4px); /* Otočí a posune horní čáru */
    transition: transform 0.3s ease 0.1s;
}

.hamburger-menu.open .dolniline {
    transform: rotate(-45deg) translate(5px, -4px); /* Otočí a posune dolní čáru */
    transition: transform 0.3s ease 0.1s;
}




/* 📱 Přepínání při šířce 1000px a méně */
@media (max-width: 1000px) {
  .nav {
    display: none;   /* schovat velkou navigaci */
  }

.hamburger-logo{
  display: contents;
}

  .hamburger-menu {
    display: flex;   /* zobrazit hamburger */
  }

  .logo-hamburger-div{
  text-align: center;
  display: block;
}
}

@media (min-width: 1000px) {
  .nav {
    display: flex;          /* schovat navigaci */
  }

  .hamburger-menu {
    display: none;          /* ukázat hamburger */
  }
}







/* -----------------------
   3) TLAČÍTKA
   ----------------------- */
.btn { 

}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--clr-primary); color: #fff; }
.btn--primary:hover { background: var(--clr-primary-600); text-decoration: none; }
.btn--ghost { background: transparent; border-color: var(--clr-border); color: var(--clr-text); }
.btn--ghost:hover { background: var(--clr-surface); }






/* -----------------------
   4) HERO SEKCE
   ----------------------- */
.hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    height: 1080PX;
}

@media (max-width: 1000px) {
.hero{
    height: 900PX;
}
}

.visually-hidden{
    display: none;
}
.hero-title-wrap {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100vw; /* přes celou šířku obrazovky */
}

.hero-title {
  font-size: 11vw;
  opacity: 0.05;
  letter-spacing: 50px;
  margin: 0;
  margin-right: 200px; /* mezera mezi opakovaným textem */
  animation: scrollText 80s linear infinite;
}

@media (max-width: 1000px) {
.hero-title {
  font-size: 120px;
  opacity: 0.1;
  letter-spacing: 5px;
  margin: 0;
  margin-right: 5w0px; /* mezera mezi opakovaným textem */
  animation: scrollText 80s linear infinite;
  margin-top: 50px;
}
}


/* Animace – začíná o něco víc vpravo, takže text je chvíli vidět */
@keyframes scrollText {
  0% {
    transform: translateX(4%);  /* 🔹 malý posun doprava při startu */
  }
  100% {
    transform: translateX(-100%);
  }
}



.hero-informace-designtext{
    position: absolute;
    margin-top: 2%;
    left: 7%;
    line-height: 5px;
    text-align: end;
}
.hero-informace-designtext p {
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.6;
    color: #ffffff;
}






.hero-informace{
    position: absolute;
    right: 7%;
    line-height: 5px;
    text-align: end;
        color: #ffffff;
}
.hero-informace p {
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.6;
}
.hero-informace b {
  color: #ffffff;

  min-width: 80px;
  transition: opacity 0.3s ease;
}

@media (max-width: 1000px) {
.hero-informace-designtext{
    position: absolute;
      margin-top: 3%;
    left: 5%;
    line-height: 5px;
    text-align: end;

}
.hero-informace-designtext p {
    text-transform: uppercase;
    font-size: 10px;
    opacity: 0.6;
}

.hero-informace{
    position: absolute;
    right: 5%;
        margin-top: -4%;
    line-height: 5px;
    text-align: end;

}
.hero-informace p {
    text-transform: uppercase;
    font-size: 10px;
    opacity: 0.6;
}
.hero-informace b {
  color: #ffffff;

  min-width: 80px;
  transition: opacity 0.3s ease;
}
}






.stonekask{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  transform: translate(-50%, -10%);
  z-index: 10;
  will-change: transform;
  filter: grayscale(40%);
}
@media (max-width: 700px) {
.stonekask{
  position: absolute;
  top: 55%;
  left: 50%;
  width: 70vw;
  transform: translate(-50%, -10%);
  z-index: 10;
  will-change: transform;
  filter: grayscale(40%);

}
}

/* ===== KROUŽKY + POPISKY ===== */
.rings-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
  margin-top: 100PX;
}

.rings {
  width: 50vw;
  height: auto;
}

/* Kružnice */
.ring {
  fill: none;
  stroke: #dcc46c;
  stroke-width: 1;
    opacity: 0.8;
}
.ring--3 {
  stroke-dasharray: 10 12;
  stroke: #dcc46c;
  animation: rotateRing 30s linear infinite;
  transform-origin: 600px 600px;  /* 🔹 důležité – střed rotace */
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Body */
.dot {
  fill: rgba(255, 255, 255, 0.606);
    z-index: 20;
  opacity: 1;
}

/* Spojnice */
.line {
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
  opacity: 0.3;
}

/* Textové popisky */
.label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 000;
  fill: rgb(255, 255, 255);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responzivita */
@media (max-width: 1000px) {
  .label {
    font-size: 12px;
  }
  .rings {
    width: 95vmin;
  }
}



.fibonaci-background{
    position: absolute;
    right: 5%;
    width: 400px;
    margin-top: 400px;
    opacity: 0.06;
    rotate: 35deg;
}

.bohemiart-background{
    position: absolute;
    left: 0%;
    width: 400px;
    margin-top: 400px;
    opacity: 0.01;
    rotate: -35deg;
}

@media (max-width: 900px) {
.fibonaci-background{
  display: none;
}

.bohemiart-background{
  display: none;
}
}




.heromainbtn {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%, -10%);
  z-index: 20;

  /* základní styl */
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--ff-base, "Poppins", sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #000000, #000000);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(191, 71, 71, 0.238);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* světelný lesk přes tlačítko při hoveru */
.heromainbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.heromainbtn:hover::before {
  left: 125%;
}

.heromainbtn:hover {
  transform: translate(-50%, -10%) scale(1.05);
  box-shadow: 0 10px 25px #dcc46c;
}

/* kliknutí (aktivní stav) */
.heromainbtn:active {
  transform: translate(-50%, -8%) scale(0.98);
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.35);
}





/* -----------------------
   5) STATS sekce
   ----------------------- */
.stats {

  padding: 2.5rem 0;

}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  gap: 0; /* žádné mezery – oddělovače kreslíme pseudo-prvkem */
}

/* Svislé oddělovače mezi položkami */
.stat {
  position: relative;
  padding: 1rem 1.25rem;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: #dcc46c64;
}

/* Typografie hodnoty a popisku */
.stat__value {
  font-family: var(--ff-head, "Baloo 2", system-ui, sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: .5px;
}
.stat__label {
  margin-top: .45rem;
  font-family: var(--ff-base, "Poppins", system-ui, sans-serif);
  font-size: .9rem;
  color: #dcc46cc9;
}

/* Responsivita – na mobilu pod sebe, oddělovače vodorovně */
@media (max-width: 720px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .stat {
    padding: .9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .stat:last-child { border-bottom: 0; }
}













/* -----------------------
   6) ABOUT sekce
   ----------------------- */

.aboutclone-section {
  position: relative;
  color: #0e0e0f;
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 300px;

  font-family: "Poppins", system-ui, sans-serif;
}

.aboutclone-inner,
.aboutclone-banner {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(2rem, 6vw);
  padding-right: min(2rem, 6vw);
}

/* horní banner */
.aboutclone-banner {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.aboutclone-title {
  margin: 0;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 15vw, 10.5rem);
  background-image:
    url("images/web-5.webp"),
    linear-gradient(#723e3e, #111);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

    opacity: 0.8;
}

.aboutclone-cap {
  position: absolute;
  bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff9a;
  white-space: nowrap;
}
.aboutclone-cap--left  { left: min(2rem, 6vw); }
.aboutclone-cap--right { right: min(2rem, 6vw); }

/* nadpis sekce */
.aboutclone-sub {
  margin: clamp(12px, 3vw, 20px) 0;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4.2vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffffff;
}

/* grid rozložení */
.aboutclone-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: end; /* ✅ zarovnání spodní hrany */
}

/* levý blok */
.aboutclone-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.aboutclone-figure {
  margin: 0;
}

.aboutclone-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  border-radius: 8px;
}

.aboutclone-figure--main img {
   aspect-ratio: 15 / 11; /* 🔹 mírně zkráceno oproti původní 4/5 */
}

.aboutclone-left-text {
  margin-top: 25px;
  font-size: 18px;

  opacity: 0.7;
  color: #ffffff;
}

/* pravá strana */
.aboutclone-side {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  align-content: start;
}

.aboutclone-copy {
  margin: 0;
  max-width: 36ch;
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #dcc46c;
}

.aboutclone-figure--small img {
  aspect-ratio: 3.1 / 4;
}


.oprojektubtn{

}


.oprojektubtn {
  z-index: 20;
  /* základní styl */
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--ff-base, "Poppins", sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(135deg, #000000, #2d2714);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(191, 71, 71, 0.238);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.oprojektubtn:hover {
  box-shadow: 0 10px 25px #dcc46c;
}

/* kliknutí (aktivní stav) */
.oprojektubtn:active {
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.35);
}


/* watermark dole */
.aboutclone-year {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1160px;
  padding-left: min(2rem, 6vw);
  text-align: left;

  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.8;
  font-size: clamp(6rem, 22vw, 18rem);
  color: rgba(0, 0, 0, 0.045);
  user-select: none;
  pointer-events: none;
}

/* responsivita */
@media (max-width: 600px) {
  .aboutclone-section {
  padding-bottom: 200px;

  font-family: "Poppins", system-ui, sans-serif;
}
  .aboutclone-grid { grid-template-columns: 1fr; }
  .aboutclone-figure--main img { aspect-ratio: 16 / 11; }
  .aboutclone-copy { max-width: 50ch; }
  .aboutclone-left-text { margin-bottom: 1rem; }
}













/* -----------------------
   6) VIDEO SEKCE
   ----------------------- */
/* ===== Sekce s videem přes celou šířku ===== */
.section-video {
  width: 100%;
  margin: 0;
}

/* Wrapper drží poměr a vrstvy */
.video-wrap {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  background: #000000; /* příjemná „výplň“ při načítání */
}




/* Video vyplní plochu a ořeže se jako background-cover */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* důležité: pokryje celou plochu */
  object-position: center;
  opacity: 0.8;
}





.newsletter-div {
  width: 500px;
  min-height: 280px;
  position: absolute;
  left: 10%;
  top: 40%;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: solid 1px #1b1b1b;
}

/* Nadpis a text */
.newsletter-title {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.newsletter-text {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Formulář */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.9);
  color: #222;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  background: #fff;
}

/* Tlačítko */
.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: #33738d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, transform 0.15s ease;
}

.newsletter-form button:hover {
  background: #1e62b5;
  transform: translateY(-2px);
}

.newsletter-form button:active {
  transform: translateY(0);
}

/* Responsivita */
@media (max-width: 640px) {
  .newsletter-div {
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}





/* Obrázek přes video – full width, nahoře */
.video-overlay {
  position: absolute;
  inset: 0;             /* roztáhne přes celý wrapper */
  width: 100%;
  object-fit: cover;    /* aby se pěkně přizpůsobil */
  object-position: center;
  pointer-events: none; /* ať nepřekáží klikům na případné CTA */
  z-index: 2;
}

.video-overlay2{
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    position: absolute;
    bottom: 0;
      
}


@media (max-width: 640px) {
  .video-wrap {
    height: 60vh;
  }
}


/* -----------------------
   7) SEKCE produkt
   ----------------------- */


.qa-section{
  background:#000000;           
  color:#eae8e4;                  
  padding: clamp(48px,6vw,80px) 0;
}

.qa-wrap{
  width:min(1120px, 100% - 2rem);
  margin-inline:auto;
}

/* Titulek */
.qa-title{
  margin:0 0 clamp(28px,4vw,40px);
  font-family:"Baloo 2", system-ui, sans-serif;
  font-weight:800;
  font-size:clamp(1.6rem,3.2vw,2.2rem);
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:left;
}

/* Hlavní grid: vlevo fotky, vpravo Q&A */
.qa-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap:clamp(24px,4vw,48px);
  align-items:start;
}

/* Fotky vlevo – mírně posazené */
.qa-photos{
  display:grid;
  gap:clamp(18px,2.8vw,28px);
}
.qa-photo{
  margin:0;
  overflow:hidden;
  box-shadow:0 16px 30px rgba(0,0,0,.25);
}
.qa-photo img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  filter:saturate(.95) contrast(1.02);
}
.qa-photo--top   { transform: translateX(0); }
.qa-photo--bottom{ transform: translateX(14%); } /* lehké odsazení jako v předloze */

.qa-photos p{
  color: #9b9b9b;
}

/* Q&A vpravo – dvousloupcové */
.qa-content{
  display:grid;
}
.qa-list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(20px,3vw,36px) clamp(24px,3.2vw,40px);
  margin:0;
}
.qa-item{ margin:0; }

.qa-q{
  margin:0 0 .6rem 0;
  font-family:"Baloo 2", system-ui, sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  line-height:1.15;
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
}

.qa-a{
  margin:0;
  font-family:"Poppins", system-ui, sans-serif;
  line-height:1.7;
  color:#d6d2cb;
  font-size: clamp(.92rem, 1.2vw, 1rem);
  max-width:38ch;
}


.qa-button-wrap {
  margin-top: clamp(40px, 5vw, 57px);
  text-align: center;
}

.qa-button {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #020202;
  text-transform: uppercase;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 0.9em 2em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.qa-button:hover {
  background: linear-gradient(90deg, #888, #bbb);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


/* Responsivita */
@media (max-width: 700px){
  .qa-grid{ grid-template-columns:1fr; }
  .qa-photo--bottom{ transform:none; }
  .qa-list{ grid-template-columns:1fr; }
  .qa-a{ max-width:unset; }
}






/* -----------------------
   8) more 
   ----------------------- */

.order-section {
  background: #000;
  color: #eae8e4;
  padding: clamp(60px, 6vw, 100px) 0;
  text-align: center;
}

.order-wrap {
  width: min(600px, 90%);
  margin: 0 auto;
}

.order-title {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.order-desc {
  font-family: "Poppins", system-ui, sans-serif;
  color: #bcbcbc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.order-form {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Poppins", system-ui, sans-serif;
}

input, textarea {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #eae8e4;
  padding: 0.8em;
  font-family: "Poppins", system-ui, sans-serif;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #888;
}

.order-btn {
  background: linear-gradient(90deg, #3f9752, #445c44);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1em 2em;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.order-btn:hover {
  background: linear-gradient(90deg, #57cf71, #77a077);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}





/* -----------------------
   9) FOOTER
   ----------------------- */
footer {
  width: 100%;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.footer-content {
  background-color: #5f1818;
  color: #fff;
  text-align: center;
  padding: 0px 20px 30px;
  font-family: "Poppins", system-ui, sans-serif;
}

.footer-logo h3 {
  margin: 0;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo p {
  color: #ccc;
  margin-top: 5px;
  font-size: 0.95rem;
}

.footer-nav {
  margin: 25px 0 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #000000;
}

.footer-socials {
  margin: 15px 0 20px;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover img {
  transform: translateY(-3px);
  filter: brightness(1) invert(1);
}

.footer-copy {
  color: #ccc;
  font-size: 0.85rem;
  margin-top: 10px;
  opacity: 0.8;
}

/* Vlny – zachovány z původního stylu */
svg {
  width: 100%;
  height: 250px;
  display: block;
}

.wave {
  animation: wave 3s linear infinite;
  fill: #5f1818;
}

#wave2 {
  animation-duration: 5s;
  animation-direction: reverse;
  opacity: 0.6;
}

#wave3 {
  animation-duration: 7s;
  opacity: 0.3;
}

@keyframes wave {
  to {
    transform: translateX(-100%);
  }
}


/* Responsivita */
@media (max-width: 530px){

.footer-nav a {
  text-decoration: none;
  margin: 0 5px;
  font-size: 13PX;
}
}


/* Responsivita */
@media (max-width: 400px){
.footer-nav a {
  font-size: 10PX;
}
}

/* -----------------------
   10) OSTATNI
   ----------------------- */

  .section-glaerie{
    width: 100%;
    height: 100vh;
    background-color: #000;
  }
