﻿/* ========== LAYOUT ========== */
body {
  margin: 0;
  font-family: 'Geist', 'Segoe UI', sans-serif;
  background-color: white;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

.alert {
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  z-index: 9999;
  position: relative;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
  transition: color 0.4s ease;
  background-color: rgba(255, 255, 255, 0.1); /* jemná bílá průhlednost */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* pro Safari */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* volitelně */
  color: white;
}

.header-container {
  margin: 0 auto;
  padding: 2rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

  .header-container .logo img {
    transition: transform 0.3s ease;
    cursor: pointer;
  }

    .header-container .logo img:hover {
      transform: scale(1.05);
    }


  .header-overlay.scrolled {
    background-color: white;
    color: black;
  }

    .header-overlay.scrolled nav a {
      color: black;
    }

  .header-overlay .logo {
    display: flex;
    align-items: center;
  }


    .header-overlay .logo img {
      height: 45px;
      width: auto;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }


  .header-overlay nav {
    display: flex;
    gap: 2rem;
  }

    .header-overlay nav a {
      transition: color 0.4s ease;
      text-decoration: none;
      font-size: 18px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }


      .header-overlay nav a:hover,
      .header-overlay nav a.is-active {
        opacity: 0.7;
        transform: scale(1.05);
      }

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

  .language-switcher i {
    font-size: 1rem;
  }

/* defaultní (horní průhledná varianta) */
.header-overlay .language-switcher {
  color: white;
}

  .header-overlay .language-switcher i {
    color: white;
  }

/* po scrollnutí dolů */
.header-overlay.scrolled .language-switcher {
  color: black;
}

  .header-overlay.scrolled .language-switcher i {
    color: black;
  }



@media (max-width: 1199px) {
  .header-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

    .header-overlay nav {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
}

.home-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 30, 20, 0.85);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.home-overlay-filter {
  text-align: center;
  font-weight: 600;
  color: #ffcc00;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.home-overlay-logo {
  height: 36px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.end-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffcc00;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}




.section {
  padding: 5rem 2rem;
}

.section-container {
  position:relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 2rem;
  background: #f8f8f8;
  overflow: hidden;
  z-index: 2;
}

.split-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #f8f8f8;
  border-radius: 2rem;
  overflow: hidden;
}

/* Media query: allow wrap for smaller screens */
@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .split-half {
    width: 100%;
  }
}


.split-half {
  flex: 1 1 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  padding: 0;
  flex: 1 1 50%;
  position: relative;
  min-height: 400px;
}

  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

/* ========== TYPOGRAPHY ========== */
.section-label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  color: #5c2c2c;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1rem;
}

.section-headline {
  font-size: 2rem;
  font-weight: bold;
  color: #3b0b0b;
  margin-bottom: 1.5rem;
}

.section-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.button-yellow {
  background-color: #ffcc00;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  width:fit-content;

}

.button-yellow.contact-form {
  width: auto;
}

  .button-yellow:hover {
    background-color: #e6b800;
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

/* ========== HOME ========== */
.home-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.home-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.globe-video {
  width: 100%;
  height: 100%;
  object-fit:contain;
  display: block;
}


body.with-overlay .home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(60, 30, 20, 0.85);
  z-index: 1;
}

.home-content {
  z-index: 2;
}

body.with-overlay .home-content,
body.with-overlay{
  z-index: 2;
}



.home-content {
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

  .home-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .home-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

.ups-intro {
  font-size: 0.875rem;
  color: #ffcc00;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.home-content a {
  background-color: #ffcc00;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
}


/* ========== GRID ========== */
.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  min-height: 180px;
}

  .grid-card h2,
  .grid-card h3 {
    margin-bottom: 0.5rem;
    color: #3b0b0b;
  }

  .grid-card p {
    color: #333;
  }

.split-image.relative {
  position: relative;
}

.invest-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: repeat(16, 1fr);
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.invest-dot {
  width: 18px;
  height: 18px;
  background-color: #ffcc00;
  place-self: center;
  animation: blinkDot 6s infinite ease-in-out;
  transition: transform 0.3s ease;
}

  .invest-dot:hover {
    transform: scale(1.4);
  }

@keyframes blinkDot {
  0%, 100% {
    opacity: 0;
  }

  10%, 90% {
    opacity: 1;
  }
}



@keyframes blinkDot {
  0%, 100% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }
}

@keyframes blinkInvestDot {
  0%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }
}


/* ========== CONTACT ========== */

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30rem; /* zvětšeno z 4rem */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position:relative;
  z-index:3;
}

.contact-person {
  text-align: center;
  max-width: 300px;
  transition: transform 0.3s ease;
}

  .contact-person:hover {
    transform: scale(1.05);
  }

  .contact-person img {
    width: 220px;
    height: 220px;
    border-radius: 20%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  .contact-person h3 {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
  }

  .contact-person p {
    font-size: 1.1rem;
    color: #444;
    margin: 0.2rem 0;
  }

.contact-right {
  padding: 3rem;
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.contact-card {
  box-shadow: 0 0 20px rgba(0,0,0,0.03);
}

.contact-input {
  background: #f9f8f7;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px #ddd;
}

  .contact-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #ffcc00;
  }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 204, 0, 0.4) 2px, transparent 1px), linear-gradient(to bottom, rgba(255, 204, 0, 0.4) 2px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  /* Viditelnost zespodu přes masku */
  mask-image: linear-gradient(315deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(315deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Tečky – větší a rychlejší */
.dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.9;
}

.dot1 {
  bottom: 13%;
  right: 16.25%;
  animation: moveDot1 12s infinite alternate ease-in-out;
}

.dot2 {
  bottom: 24%;
  right: 24%;
  animation: moveDot2 14s infinite alternate ease-in-out;
}

@keyframes moveDot1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(60px, 0); /* 1 krok doprava */
  }

  50% {
    transform: translate(60px, 60px); /* 1 dolů */
  }

  75% {
    transform: translate(0, 60px); /* zpět doleva */
  }

  100% {
    transform: translate(0, 0); /* zpět nahoru */
  }
}

@keyframes moveDot2 {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-60px, 0); /* vlevo */
  }

  40% {
    transform: translate(-60px, -60px); /* nahoru */
  }

  60% {
    transform: translate(0, -60px); /* doprava */
  }

  80% {
    transform: translate(0, 0); /* zpět dolů */
  }

  100% {
    transform: translate(0, 0);
  }
}







/* ========== FOOTER ========== */
.footer {
  background-color: #ffcc00;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  margin-right: 1.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

  .footer-menu a:hover {
    transform: scale(1.03);
  }

.footer-copyright {
  font-size: 0.9rem;
  color: #333;
  margin: 0.3rem 0;
}

  .services-4-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.grid-item {
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

  .grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }


/* Obrázkové dlaždice */
.image-tile {
/*  position:relative;
  z-index:2;*/
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0;
}

  .image-tile .image-label {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-weight: 600;
  }

.image-label {
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

  .image-label:hover {
    transform: scale(1.05);
    opacity: 0.7;
  }

/* Specifické obrázky (můžeš nastavit z modelu jako inline background) */
.image-tile-1 {
  background-image: url('../../uploads/img/statImg1.png');
}

.image-tile-2 {
  background-image: url('../../uploads/img/services1Img.png');
}

/* Čísla + text */
.number-tile .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #300000;
}

.number-tile .description {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #333;
}

/* UPS logo dlaždice */
.logo-tile {
  background-color: #300000;
  color: #FFD100;
  font-weight: 600;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Žlutá dlaždice */
.text-yellow {
  background-color: #FFD100;
  color: #300000;
}

  .text-yellow .title {
    font-weight: 800;
    font-size: 1.5rem;
  }

  .text-yellow .description {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

.header-mobile {
  display: none;
}

.mobile-topbar,
.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none; /* defaultně skryté na desktopu */
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
}

/* Když je menu otevřené */
.mobile-menu.show {
  display: flex;
  z-index: 999;
}

.menu-overlay.show {
  display: block;
}

.privacy-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 2rem;
  overflow-y: auto;
}

.privacy-content {
  background: #fff;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
}




.footer-link {
  color: #333 !important;
}











/* Zobrazit jen na desktop */
@media (min-width: 1200px) {
  .mobile-topbar {
    display: none;
  }

  .header-container {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .logo.mobile-only {
    display: none;
  }
}



@media (max-width: 1199px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .header-container {
    justify-content: space-between;
    align-items: center;
  }

  /* mobil: logo vlevo, vpravo jazyky a za nimi hamburger */
  .logo.mobile-only {
    order: 1;
    margin: 0;
  }

  .language-switcher.mobile-only {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle.mobile-only {
    order: 3;
    margin-left: 0.9rem;
  }

  .header-container {
    display: flex;
    gap: 0.5rem;
  }

  .header-mobile {
    display: block;
    background: white;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .mobile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .mobile-left,
  .mobile-center,
  .mobile-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-left {
    justify-content: flex-start;
  }

  .mobile-right {
    justify-content: flex-end;
  }

  .mobile-logo {
    height: 30px;
  }


  /* po dojetí slidu má sklo jen panel menu — header své zhasne (jinak dvojitá vrstva = dva bloky) */
  body.menu-settled .header-overlay {
    background-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top-color: transparent;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; /* přesnou hodnotu nastavuje JS dle výšky headeru — bez mezery */
    left: 0;
    right: 0;
    z-index: 998; /* pod headerem — slide vyjíždí zpod něj */
    padding: 0.5rem 1rem 1.5rem;
    /* stejné sklo jako navbar (.header-overlay) — dohromady jeden souvislý panel */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-105%);
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  }

    .mobile-menu a {
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu.show {
      display: flex;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mobile-menu a {
      padding: 0.4rem 0;
      font-size: 1.15rem;
    }

    .mobile-menu.show a { opacity: 1; transform: none; }
    .mobile-menu.show a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.show a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu.show a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.show a:nth-child(4) { transition-delay: 0.2s; }



  .menu-toggle {
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: block;
  }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      margin: 0.5rem 0;
      font-size: 1.1rem;
    }

  .logo-center img {
    height: 32px;
  }

  .lang-switch {
    font-weight: bold;
  }

  .hamburger {
    font-size: 24px;
    cursor: pointer;
  }

  .header-overlay {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.4s ease;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

    .header-container nav {
      display: none;
    }

  .language-switcher {
    margin-top: 0;
    font-size: 0.9rem;
  }

  .home-content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .home-content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .button-yellow {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  /* HOME */
  .home-content h1 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1rem;
  }

  /* SECTION GENERIC */
  .section-container {
    flex-direction: column;
  }

  .section {
    padding: 15px;
  }

  .split-section {
    flex-direction: column !important;
    padding: 10px 10px;
    text-align:center;
  }

  .split-half {
    all: unset;
    padding-top:15px;
  }
  .split-image {
    min-height: auto;
  }
    .split-image img{
      border-radius:5%;
    }

    .split-image img, .split-image video {
      height: auto;
    }

    

  /* GRID SEKCÍ (services-4) */
  .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto; /* na mobilu dlaždice dle obsahu, ne natvrdo 240px (byly moc vysoké) */
    padding: 1rem;
  }

  .grid-item {
    padding: 1.5rem;
    min-height: auto;
  }

  /* obrázkové dlaždice si musí držet výšku (nemají textový obsah) */
  .image-tile {
    min-height: 200px;
  }

  /* KONTAKTNÍ OSOBY */

  .contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1rem 0;
  }

  .contact-image {
    flex: 0 0 100px;
    height: auto;
  }

  .contact-info {
    flex: 1;
  }

    .contact-info h4 {
      margin: 0;
      font-size: 1rem;
    }

    .contact-info p {
      margin: 0.2rem 0;
      font-size: 0.85rem;
    }

  .contact-container {
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .contact-person img {
    width: 100px;
    height: 100px;
    border-radius: 9999px;
  }

  .contact-right {
    padding: 10px;
  }

  .footer {
    padding: 8px;
  }

  .footer-menu{
    display: flex;
  }
  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-menu a {
    margin: 0.5rem;
  }
}






/* ===== Nové logo — lockup KUMO wordmark + Transport (dle poznámky designéra, viz rozcestník/cars/pack) ===== */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transition: color 0.4s ease;
}

.logo-lockup .lockup-mark {
  width: 127px;
  height: 23px;
  display: block;
  flex: none;
}

.logo-lockup .lockup-word {
  font-family: 'Geist', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: inherit;
  white-space: nowrap;
}

.footer .logo-lockup {
  color: #330000;
}

@media (max-width: 1199px) {
  .logo-lockup .lockup-mark { width: 99px; height: 18px; }
  .logo-lockup .lockup-word { font-size: 22px; }
}


/* hamburger -> krizek (plynula rotace) */
.menu-toggle i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-toggle.is-open i {
  transform: rotate(180deg);
}

/* ================= KUMO unified contact + footer (sjednoceno s /cars a /pack) ================= */
.ucontact, .ucontact *, .ufooter, .ufooter * { box-sizing: border-box; } /* transport nemá globální border-box → jinak vstupy přetékají o padding */
.ucontact { max-width: 1512px; margin: 96px auto 3rem; padding: 0 clamp(20px, 4.2vw, 64px); }
.ucontact .contact__card { background: #fff; border-radius: 32px; overflow: hidden; display: flex; min-height: 748px; }
.ucontact .contact__form-side { flex: 1 1 50%; position: relative; background: #330000; overflow: hidden; padding: 56px; display: flex; align-items: center; }
.ucontact .contact__form-side::before { content: ''; position: absolute; inset: 0; background-image: url('../img/noise.png'); background-size: 126px 126px; opacity: .35; pointer-events: none; }
.ucontact .contact__form { position: relative; width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 24px; }
.ucontact .contact__form .form-input, .ucontact .contact__form input:not([type=checkbox]), .ucontact .contact__form textarea { width: 100%; background: #fff; border: none; border-radius: 12px; padding: 15px 24px; font-family: 'Geist', sans-serif; font-size: 16px; color: #330000; resize: none; }
.ucontact .contact__form input::placeholder, .ucontact .contact__form textarea::placeholder { color: #330000; opacity: 1; }
.ucontact .contact__form textarea { min-height: 188px; }
.ucontact .contact__consent { position: absolute; top: 100%; left: 0; right: 0; margin-top: 14px; display: block; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.8); }
.ucontact .contact__consent a { color: #ffcc00; text-decoration: underline; }
.ucontact .contact__form .btn { width: 100%; }
.ucontact .contact__info-side { flex: 1 1 50%; padding: 56px; display: flex; flex-direction: column; }
.ucontact .section__label { font-family: 'Geist Mono', ui-monospace, monospace; font-weight: 600; font-size: 14px; letter-spacing: 6px; text-transform: uppercase; color: #b8860b; }
.ucontact .contact__logo { display: flex; align-items: center; gap: 10px; margin-top: 32px; }
.ucontact .contact__logo .logo__mark { width: 150px; height: 28px; color: #330000; }
.ucontact .contact__logo .logo__word { font-family: 'Geist', sans-serif; font-weight: 400; font-size: 34px; line-height: 1; color: #330000; }
.ucontact .contact__rows { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.ucontact .contact__row { display: flex; align-items: center; gap: 14px; font-size: 28px; line-height: 1.5; color: #330000; }
.ucontact .contact__row svg { width: 28px; height: 28px; flex: none; color: #d1a000; }
.ucontact .contact__addr { margin-top: 28px; font-size: 19px; line-height: 1.65; color: #330000; white-space: pre-line; }
.ucontact .contact__actions { margin-top: auto; padding-bottom: 73px; }
.ucontact .contact__actions .btn { width: 100%; }
.ucontact .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; border-radius: 39px; font-family: 'Geist', sans-serif; font-weight: 600; font-size: 16px; line-height: 1.5; cursor: pointer; border: none; transition: background-color .2s ease; text-decoration: none; }
.ucontact .btn--yellow { background: #ffcc00; color: #330000; }
.ucontact .btn--yellow:hover { background: #e6b800; }
.ucontact .btn--maroon { background: #330000; color: #fff; }
.ucontact .btn--maroon:hover { background: #4a1414; }

.ufooter { position: relative; margin-top: 120px; background: #330000; border-radius: 48px 48px 0 0; overflow: hidden; padding: 64px clamp(20px, 4.2vw, 64px); font-family: 'Geist', sans-serif; }
.ufooter::before { content: ''; position: absolute; inset: 0; background-image: url('../img/noise.png'); background-size: 126px 126px; opacity: .4; pointer-events: none; }
.ufooter__inner { position: relative; max-width: 1512px; margin: 0 auto; }
.ufooter__top { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ufooter__claim { font-weight: 400; font-size: 39px; line-height: 1.25; color: #fff; }
.ufooter__contacts { display: flex; gap: 64px; }
.ufooter__contacts a { font-weight: 500; font-size: 31px; color: #fff; text-decoration: none; }
.ufooter__hr { height: 1px; background: rgba(255,255,255,0.2); margin: 48px 0; }
.ufooter__cols { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ufooter__group { display: flex; gap: 64px; flex-wrap: wrap; }
.ufooter__col h4 { font-weight: 500; font-size: 20px; color: #fff; margin-bottom: 24px; }
.ufooter__col p, .ufooter__col a { display: block; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.8); text-decoration: none; }
.ufooter__col a { margin-bottom: 12px; transition: color .2s ease; }
.ufooter__col a:hover { color: #fff; }
.ufooter__bottom { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ufooter__wordmark { display: block; height: auto; max-width: 62%; } /* SVG se škáluje do šířky → nikdy nepřeteče (jako cars/pack) */
.ufooter__legal { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.ufooter__legal-links { display: flex; gap: 16px; }
.ufooter__legal-links a { font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: underline; }
.ufooter__copy { font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.8); }
.ufooter__credit { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.8); }
.ufooter__credit a { color: #fff; text-decoration: underline; }
.ufooter__credit img { height: 22px; width: auto; }

@media (max-width: 1199px) {
  .ucontact .contact__card { flex-direction: column; min-height: 0; }
  .ucontact .contact__form-side, .ucontact .contact__info-side { padding: 40px; }
  .ucontact .contact__actions { margin-top: 16px; padding-bottom: 0; }
  .ufooter__top { flex-direction: column; align-items: flex-start; }
  .ufooter__contacts { flex-direction: column; gap: 12px; }
  .ufooter__contacts a { font-size: 24px; }
  .ufooter__wordmark { max-width: 100%; }
  .ufooter__bottom { flex-direction: column; align-items: flex-start; }
  .ufooter__legal { align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .ucontact .contact__logo .logo__mark { width: 120px; height: 22px; }
  .ucontact .contact__logo .logo__word { font-size: 26px; }
  .ucontact .contact__row { font-size: 20px; }
  .ucontact .contact__row svg { width: 22px; height: 22px; }
  .ucontact .contact__addr { font-size: 17px; }
  .ufooter__wordmark .logo__word { font-size: 56px; }
  .ufooter__claim { font-size: 30px; }
}

/* žlutá „opona" u spodku (end-overlay) překrývala novou patičku → vypnuto */
.end-overlay { display: none !important; }

/* ===== Odkaz na subpage „O nás" ze sekce #aboutus (vedle žlutého tlačítka) ===== */
.section-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.link-story {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: #5c2c2c;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.link-story svg { width: 18px; height: 18px; flex: none; }
.link-story:hover { color: #b8860b; gap: 0.7rem; }
