/* Designs By Lovers — full page styles */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap");

* { 
  margin: 0;
  padding: 0;
  box-sizing:
  border-box;
}
html { 
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #3d0a0a, #5a1414, #3d0a0a);
  overflow-x: hidden;
  color: #f3ead3;
  position: relative;
}
::selection {
   background: #f3ead3;
    color: #3d0a0a;
}
.blur-kruh {
  position: fixed; 
  border-radius: 50%; 
  filter: blur(140px); 
  pointer-events: none; 
  z-index: 0; 
}
.kruh1 { 
  width: 460px; 
  height: 460px; 
  background: rgba(189,158,122,0.22); 
  top: -120px; 
  left: -120px; 
}
.kruh2 { 
  width: 340px; 
  height: 340px; 
  background: rgba(243,234,211,0.12); 
  top: 40%; 
  right: -120px; 
}
.kruh3 { 
  width: 380px; 
  height: 380px; 
  background: rgba(130,21,21,0.45); 
  bottom: -120px; 
  left: 30%; 
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 24px clamp(20px, 5vw, 64px) 0;
  display: flex;
  flex-direction: column;
}
.hero-shell {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 48px);
}

header { width: 100%; 
  z-index: 100; 
  position: relative; 
}
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(243,234,211,0.1);
  position: relative;
}
.leva-strana, .prava-strana { 
  display: flex; 
  gap: 32px; 
  align-items: center; 
}

a, button, .obrazek, 
.dbl-img, .kontakt-karta, 
.hlavni-tlacitko, 
.druhe-tlacitko, 
.logo-mark {
  transition: color 0.6s cubic-bezier(.2,.7,.2,1),
              background 0.6s cubic-bezier(.2,.7,.2,1),
              opacity 0.6s cubic-bezier(.2,.7,.2,1),
              transform 0.7s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.7s cubic-bezier(.2,.7,.2,1),
              border-color 0.6s cubic-bezier(.2,.7,.2,1),
              filter 0.6s cubic-bezier(.2,.7,.2,1);
}

.nav-odkaz, 
.nav-link, 
.dropdown-menu a, 
.mobilni-menu a {
  position: relative;
  text-decoration: none;
  color: #f3ead3;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 6px;
  display: inline-block;
}


.nav-odkaz::after, 
.nav-link::after, 
.dropdown-menu a::after, 
.mobilni-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f3ead3;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.dropdown-menu a::after, 
.mobilni-menu a::after {
  bottom: 8px; 
}
.nav-odkaz:hover::after, 
.nav-link:hover::after, 
.dropdown-menu a:hover::after, 
.mobilni-menu a:hover::after,
.dropdown:hover .nav-odkaz::after, 
.dropdown:focus-within .nav-odkaz::after,
.dropdown input:checked + .nav-odkaz::after {
  transform: scaleX(1);
}

.nav-odkaz:hover, 
.nav-link:hover {
  opacity: 0.85; 
}

.dropdown { 
  display: inline-block; 
}

.dropdown-menu a:hover, 
.mobilni-menu a:hover { 
  opacity: 0.65; 
}

.stred-navbaru:hover .logo-mark { 
  transform: rotate(-8deg) scale(1.05); 
}
.stred-navbaru:hover .male-dbl { 
  opacity: 0.85; 
}
.male-dbl { 
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1); 
}


.stred-navbaru {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.male-dbl {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: rgba(243,234,211,0.55);
  text-transform: uppercase;
}
.logo-mark { 
  width: 56px; 
  height: 56px; 
  display: block;
  color: #f3ead3; 
}

.dropdown { 
  position: relative; 
}
.dropdown input { 
  display: none; 
}
.dropdown-menu {
  display: none; 
  position: absolute; 
  top: 200%; 
  left: 0; 
  min-width: 180px;
  background: rgba(61,10,10,0.96); 
  border: 1px solid rgba(243,234,211,0.12);
  backdrop-filter: blur(20px); 
  border-radius: 18px; 
  overflow: hidden; 
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.dropdown-menu a { 
  display: block; 
  padding: 14px 20px; 
  font-size: 0.7rem; 
}
.dropdown-menu a:hover { 
  background: rgba(255,255,255,0.04); 
  padding-left: 26px; 
}
.dropdown input:checked ~ .dropdown-menu { 
  display: block; 
}


.hero-obsah {
  flex: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  position: relative;
  z-index: 5;
}
.hero-text { 
  width: 100%; 
  display: flex; 
  flex-direction: column; 
  gap: 28px; 
}
.eyebrow { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}
.eyebrow-cara { 
  width: 32px; 
  height: 1px; 
  background: rgba(243,234,211,0.4); 
}
.male-texty {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: #f3ead3;
  text-transform: uppercase;
  font-weight: 300;
}
.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #f3ead3;
}
.hero-text h1 .it { 
  font-style: italic; 
}
.popis {
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(243,234,211,0.7);
}
.tlacitka {
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
  padding-top: 8px; 
}
.hlavni-tlacitko, 
.druhe-tlacitko {
  padding: 18px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}
.hlavni-tlacitko { 
  background: #f3ead3; 
  color: #3d0a0a; 
}
.hlavni-tlacitko:hover { 
  background: #ffffff; 
  transform: translateY(-3px); 
}
.druhe-tlacitko { 
  border: 1px solid rgba(243,234,211,0.3); 
  color: #f3ead3; 
}
.druhe-tlacitko:hover { 
  background: rgba(243,234,211,0.08); 
  transform: translateY(-3px); 
}

.hero-obrazky {
  position: relative;
  width: 100%;
  height: clamp(440px, 60vw, 680px);
}
.obrazek {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  background-color: #2d0707;
}
.obrazek1 {
  width: 80%; height: 80%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  z-index: 2;
}
.obrazek2 {
  width: 60%; height: 40%;
  top: 0; right: 0;
  border-radius: 30px;
  transform: rotate(3deg) translateY(48px);
  z-index: 3;
}
.obrazek3 {
  width: 50%; height: 33%;
  bottom: 0; left: 0;
  border-radius: 24px;
  transform: rotate(-6deg) translate(16px, -32px);
  opacity: 0.85;
  z-index: 1;
}
.obrazek1:hover { 
  transform: translate(-50%, -50%) scale(1.003); 
}
.obrazek2:hover { 
  transform: rotate(3deg) translateY(44px) scale(1.003); 
}
.obrazek3:hover { 
  transform: rotate(-6deg) translate(16px, -35px) scale(1.003); 
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 0 24px;
  color: rgba(243,234,211,0.5);
}
.hero-meta-info { 
  display: flex; 
  gap: 48px; 
}
.hero-meta-info .blok { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}
.hero-meta-info .lbl { 
  color: rgba(243,234,211,0.85); 
  font-size: 0.6rem; 
  letter-spacing: 0.25em; 
  text-transform: uppercase;
  font-weight: 500; 
}
.hero-meta-info .val { 
  font-size: 0.6rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
}
.scroll-cue { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 14px; 
}
.scroll-cue .lbl { 
  font-size: 0.55rem; 
  letter-spacing: 0.35em; 
  text-transform: uppercase; 
  writing-mode: vertical-rl; 
  transform: rotate(180deg); 
  font-weight: 500; 
}
.scroll-cue .cara { width: 1px; 
  height: 70px; 
  background: linear-gradient(to bottom, rgba(243,234,211,0.6), transparent); 
}

.prechod-sekce {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 120px;
  background: #ffe9be;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.hamburger { 
  display: none; 
  font-size: 1.8rem; 
  cursor: pointer; 
  color: #f3ead3; 
}
#mobilni-menu-toggle { 
  display: none; 
}
.mobilni-menu { 
  display: none; 
}

@media (max-width: 900px) {
  .hero-obsah { 
    grid-template-columns: 1fr; 
    gap: 56px; padding-top: 48px; 
  }
  .leva-strana, .prava-strana { 
    display: none; 
  }
  .stred-navbaru { 
    position: static; 
    transform: none; 
  }
  .hamburger { 
    display: block; 
  }
  #mobilni-menu-toggle:checked ~ .mobilni-menu { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    padding: 20px 0; 
  }
  .hero-meta { 
    flex-direction: column; 
    gap: 24px; 
    align-items: flex-start; 
  }
  .scroll-cue { 
    flex-direction: row; 
  }
  .scroll-cue .lbl { 
    writing-mode: horizontal-tb; 
    transform: none; 
  }
  .scroll-cue .cara { 
    width: 60px; height: 1px; 
    background: linear-gradient(to right, rgba(243,234,211,0.6), transparent); 
  }
}

.sekce-svetla {
  background: #ffe9be;
  color: #4c300e;
  position: relative;
  padding: 40px 8% 160px;
  overflow: hidden;
}
.velky-nadpis {
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  color: #4a0909;
  margin: 20px 0 80px;
  position: relative;
}
.velky-nadpis .akcent {
  font-style: italic;
  font-weight: 400;
  color: #821515;
  display: inline-block;
}
.velky-nadpis::after {
  content: "★";
  font-size: 0.4em;
  color: #bd9e7a;
  vertical-align: super;
  margin-left: 12px;
}

.dbl-rozlozeni {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.dbl-text-blok {
  position: relative;
  padding: 40px 0 0 60px;
  border-left: 1px solid rgba(74,9,9,0.2);
}
.dbl-text-blok .stitek {
  position: absolute;
  top: 0; left: -8px;
  background: #4a0909;
  color: #ffe9be;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 4px;
  border-radius: 20px;
}
.dbl-text-blok p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4c300e;
  margin-bottom: 22px;
}
.dbl-text-blok p:first-letter {
  font-size: 3.4rem;
  float: left;
  line-height: 1;
  padding-right: 10px;
  font-weight: 900;
  color: #821515;
}

.dbl-galerie {
  position: relative;
  height: 560px;
}
.dbl-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(74,9,9,0.25);
  transition: 0.6s cubic-bezier(.2,.7,.2,1);
}
.dbl-img img { width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.dbl-img-1 { width: 70%; 
  height: 380px; 
  top: 0; 
  left: 0; 
  transform: rotate(-3deg); 
}
.dbl-img-2 { 
  width: 55%; 
  height: 260px; 
  bottom: 0; 
  right: 0; 
  transform: rotate(4deg); 
  border: 6px solid #ffe9be; 
}
.dbl-img-3 {
  width: 130px; height: 130px; top: 50%; left: 55%;
  border-radius: 50%; transform: rotate(0deg);
  border: 4px solid #821515;
}
.dbl-img-1:hover { 
  transform: rotate(-3deg) translateY(-2px) scale(1.003); 
}
.dbl-img-2:hover { 
  transform: rotate(4deg) translateY(-2px) scale(1.003); 
}
.dbl-img-3:hover { 
  transform: translateY(-2px) scale(1.003); 
}

.dvojsekce {
  background: linear-gradient(180deg, #ffe9be 0%, #bd9e7a 100%);
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.pribeh-blok, 
.cil-blok { 
  position: relative; 
}
.cislo-sekce {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(74,9,9,0.08);
  position: absolute;
  top: -40px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
}
.nadpis-sekce {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #4a0909;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 900;
}
.nadpis-sekce .pomlcka {
  display: inline-block;
  width: 50px; height: 3px;
  background: #821515;
  vertical-align: middle;
  margin-right: 16px;
}
.text-sekce {
  font-size: 1rem; 
  line-height: 1.9; 
  color: #4c300e; 
  margin-bottom: 24px;
}

.pribeh-obrazky { 
  position: relative; 
  height: 420px; 
  margin-top: 40px; 
}
.pribeh-obrazky .img-a {
  position: absolute; 
  width: 60%; 
  height: 100%; 
  left: 0; 
  top: 0;
  border-radius: 22px; 
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74,9,9,0.3);
}
.pribeh-obrazky .img-b {
  position: absolute;
  width: 50%; 
  height: 60%; 
  right: 0; 
  bottom: -20px;
  border-radius: 22px; 
  overflow: hidden;
  border: 6px solid #ffe9be;
  box-shadow: 0 20px 40px rgba(74,9,9,0.3);
}
.pribeh-obrazky img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1); 
}
.pribeh-obrazky .img-a:hover img,
.pribeh-obrazky .img-b:hover img { 
  transform: scale(1.006); 
}

.cil-obrazek {
  margin-top: 40px;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74,9,9,0.3);
  position: relative;
}
.cil-obrazek img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1); 
}
.cil-obrazek:hover img { 
  transform: scale(1.006); 
}
.cil-obrazek::after {
  content: ""; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(74,9,9,0.4));
}

.kontakt-sekce {
  background: linear-gradient(180deg, #bd9e7a 0%, #4c300e 100%);
  padding: 140px 8% 100px;
  position: relative;
  overflow: hidden;
}
.kontakt-sekce::before {
  content: "KONTAKT";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 900;
  color: rgba(255,233,190,0.08);
  letter-spacing: 30px;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.kontakt-obsah {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kontakt-vlevo h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #ffe9be;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 30px;
  line-height: 1;
}
.kontakt-vlevo h2 span {
  display: block;
  color: #4a0909;
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  letter-spacing: 2px;
}
.kontakt-vlevo p {
  color: rgba(255,233,190,0.85);
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 460px;
}

.kontakt-vpravo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.kontakt-karta {
  background: rgba(255,233,190,0.08);
  border: 1px solid rgba(255,233,190,0.18);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffe9be;
  text-decoration: none;
  transition: 0.4s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.kontakt-karta::before {
  content: ""; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(135deg, #821515, #4a0909);
  opacity: 0; 
  transition: 0.4s; 
  z-index: 0;
}
.kontakt-karta > * { 
  position: relative; 
  z-index: 1; 
}
.kontakt-karta:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: #ffe9be;
  box-shadow: 0 20px 40px rgba(74,9,9,0.4);
}
.kontakt-karta:hover::before { 
  opacity: 1; 
}
.kontakt-karta .ikona {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: #ffe9be;
  color: #4a0909;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: 0.4s;
}
.kontakt-karta:hover .ikona { 
  background: #bd9e7a; 
  transform: rotate(-8deg); 
}
.kontakt-karta .ikona svg { 
  width: 22px; 
  height: 22px; 
}
.kontakt-karta .info { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}
.kontakt-karta .info .lbl { 
  font-size: 0.7rem; 
  letter-spacing: 3px; 
  color: #bd9e7a; 
}
.kontakt-karta:hover .info .lbl { 
  color: #ffe9be; 
}
.kontakt-karta .info .val {
  font-size: 0.95rem; 
  letter-spacing: 1px; 
}
.kontakt-karta.siroka { 
  grid-column: span 2; 
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.reveal.delay-1 { 
  transition-delay: 0.1s; 
}
.reveal.delay-2 { 
  transition-delay: 0.2s; 
}
.reveal.delay-3 { 
  transition-delay: 0.3s; 
}

.dbl-footer {
  background: #4a0909;
  color: rgba(255,233,190,0.6);
  text-align: center;
  padding: 30px;
  font-size: 0.85rem;
  letter-spacing: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .leva-strana, 
  .prava-strana { 
    display: none; 
  }
  .hamburger { 
    display: block; 
  }
  .mobilni-menu {
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 120%; 
    right: 0;
    width: 260px; 
    padding: 25px; 
    border-radius: 25px; 
    background: rgba(74,9,9,0.95);
    backdrop-filter: blur(20px); 
    gap: 20px; 
    z-index: 1000;
  }
  .mobilni-menu a { 
    text-decoration: none; 
    color: #ffe9be;
    letter-spacing: 3px; 
  }
  #mobilni-menu-toggle:checked ~ .mobilni-menu { 
    display: flex; 
  }
  .hero-obsah { flex-direction: column; 
    justify-content: center; 
    gap: 80px; 
    padding-top: 80px; 
  }
  .hero-text { 
    width: 100%; 
    text-align: center; 
  }
  .hero-text h1 { 
    font-size: 3.5rem; 
  }
  .popis { 
    width: 100%; 
  }
  .tlacitka { 
    justify-content: center; 
  }
  .hero-obrazky { 
    width: 100%; 
    height: auto; 
    display: flex; 
    justify-content: center; 
    gap: 0; 
    margin-top: 20px; 
    position: relative; 
  }
  .obrazek, 
  .obrazek:hover { 
    transform: none !important; 
  }
  .obrazek::before { 
    display: none; 
  }
  .obrazek1 { 
    position: relative; 
    width: 240px; 
    height: 320px; 
    left: 0; 
    top: 0; 
    z-index: 2; 
  }
  .obrazek2 { 
    position: relative; 
    width: 200px;
    height: 260px; 
    right: 15px; 
    top: 40px; 
    z-index: 1; 
  }
  .obrazek3 { 
    display: none; 
  }

  .dbl-rozlozeni { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .dbl-galerie { 
    height: 480px; 
  }
  .dvojsekce { 
    grid-template-columns: 1fr; 
    gap: 100px; 
    padding: 80px 6%; 
  }
  .kontakt-obsah { 
    grid-template-columns: 1fr; 
    gap: 50px; 
  }
  .kontakt-vpravo { 
    grid-template-columns: 1fr; 
  }
  .kontakt-karta.siroka { 
    grid-column: span 1; 
  }
}
@media (max-width: 600px) {
  .navbar { 
    height: 80px; 
    padding: 0 25px; 
  }
  .logo { 
    font-size: 2rem; 
  }
  .hero-text h1 { 
    font-size: 2.7rem; 
  }
  .male-texty { 
    font-size: 0.8rem; 
  }
  .tlacitka {
    flex-direction: column; 
  }
  .sekce-svetla { 
    padding: 40px 6% 100px; 
  }
  .dbl-text-blok { 
    padding-left: 30px; 
  }
  .dbl-galerie { 
    height: 420px; 
  }
  .dbl-img-1 { 
    width: 90%; 
  }
  .dbl-img-2 { 
    width: 65%; 
  }
}
