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

body {
  font-family: nimbus-sans, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  flex: 1;  /* vyplní prostor mezi headerem a footerem */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fef6e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  font-family: "sofia-pro", sans-serif;
  color: #dd4e28;
}


nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: nimbus-sans, sans-serif;
}

.hero {
  
  color: #63082d;
  display: block;
  text-align: center;
  font-family: "sofia-pro", sans-serif;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  font-family: nimbus-sans, sans-serif;
}

.btn {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
}

#services-page {
  min-width: 280px;
}



.service {
  flex-direction: column;
  background: transparent;
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  min-height: 350px; /* můžeš upravit podle obsahu */
  margin: 0 auto;
}

.service p {
  margin-bottom: 20px;
  
  font-family: nimbus-sans, sans-serif;
  max-width: 320px;
}

.services {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  background: #f8eca4;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px;
  text-align: center; /* nebo center, podle vkusu */
}

.services-wrap {
  background-color: #f8eca4;
  padding: 60px 0;
}


.btn-detail {
  margin-top: 10px;
  margin-bottom: 0px;
  align-self: center;
  background-color: #dd4e28;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: nimbus-sans, sans-serif;
}

.btn-detail:hover {
  background-color: #e63600;
}


.service h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "sofia-pro", sans-serif;
}

.gallery {
  padding: 0;           /* odstraníme padding, aby šla galerie od kraje */
  margin: 0;
  background: #fff;
  text-align: center;
  width: 100vw;          /* aby zabírala celou šířku viewportu */
  overflow-x: hidden;    /* aby nešlo horizontálně scrollovat */
}

.gallery h2 {
  margin: 30px;
  font-size: 32px;
  font-family: "sofia-pro", sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* pevně 2 sloupce */
  gap: 0px;
}

.img-placeholder {
  background: #ddd;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #666;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* pokud chceš, aby se obrázek pěkně ořízl */
  border-radius: 0;  /* pokud chceš */
}

footer {
  padding: 30px;
  text-align: center;
  background: #f8eca4;
  color: #000000;
}

.cta-bar {
  background-color: #f8eca4;
  padding: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-block {
  flex: 1;
  min-width: 200px;
}

.cta-block h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  font-family: "sofia-pro", sans-serif;
}

.cta-block p {
  font-size: 16px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.cta-form input[type="email"] {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  min-width: 180px;
  font-family: "sofia-pro", sans-serif;
}

.cta-form button {
  background-color: #e64a19;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: "sofia-pro", sans-serif;
}

.cta-form button:hover {
  background-color: #cf3c0c;
}

.cta-arrow {
  font-size: 24px;
  color: #5e0031;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px; /* mezera od okrajů */
}

/* --- Mobilní verze (max šířka 768px) --- */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 20px;
    display: inline-block;
    margin-top: 10px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .services {
    padding: 30px 20px;
    grid-template-columns: 1fr; /* jeden sloupec */
    text-align: left;
  }

  .service {
    min-height: auto;
    padding: 15px;
  }

  .gallery {
    padding: 30px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr; /* jeden sloupec */
  }

  .cta-bar {
    padding: 30px 20px;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-form {
    justify-content: flex-start;
    width: 100%;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .cta-form input[type="email"] {
    min-width: 100%;
    margin-bottom: 10px;
  }

  .cta-form button {
    width: 100%;
    white-space: normal;
  }
}


.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fef6e8;
  height: 120vh; /* zajistí výšku přes obrázek */
  overflow: hidden; /* skryje cokoliv co přetéká */
}

.about-bg {
  width: 100%;
  height: 80vh; /* ukáže jen 60 % výšky viewportu */
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.about-content {
  width: 100%;
  padding: 0 30px 0 200px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: absolute;
  transform: translateY(-280px); /* ↞ místo top: -280px */
  justify-content: flex-start; /* ↞ zarovná doleva */
  z-index: 2; /* ať je to nad pozadím */
  
}

.about-textbox {
  background: white;
  max-width: 550px;
  padding: 40px;
  margin: -100px 0 0 ;
  border-radius: 24px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-textbox h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "sofia-pro", sans-serif;
  font-weight: bold;
}

.about-textbox span {
  color: #dd4e28;
}

.about-textbox p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: "sofia-pro", sans-serif;
  
}

.about-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 300px; /* zarovná výš pod obrázek */
}

.tag {
  background: #fef6e8;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-family: nimbus-sans, sans-serif;
  font-size: 14px;
}

.about-buttons {
  padding: 0 30px 20px 200px;
  display: flex;
  gap: 15px;
  background-color: #fef6e8;
}

.about-buttons img {
  width: auto;        /* menší velikost */
  height: 60px;
  transition: transform 0.3s ease;  /* plynulý efekt */
  cursor: pointer;
}

.about-buttons img:hover {
  transform: scale(1.2);   /* zvětšení při najetí myší */
}



.reels-section {
  padding: 60px 30px;
  background-color: #fef6e8;
  background-image: url("ilustrace-14.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: relative;
  z-index: 1;
}

.reels-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "sofia-pro", sans-serif;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-bottom: 150px;
}

.reel-video {
  width: 100%;
  aspect-ratio: 9 / 16; /* aby to sedělo na formát Shorts */
  border-radius: 12px;
}

.contact-hero {
  background-color: #fef6e8;
  position: relative;
  overflow: hidden;
  padding: 100px 30px;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.text-left {
  max-width: 650px;
  font-family: "sofia-pro", sans-serif;
}

.text-left h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.text-left p {
  font-size: 16px;
  margin-bottom: 10px;
  z-index: 2;
}

.email-link {
  color: #dd4e28;
  text-decoration: none;
  font-weight: bold;
}

.arrow-bg {
  position: relative;
  display: flex;
  left: -20px;
  top: 170px;
  
  height: 60px;
  z-index: 1;
}

.arrow-bg1 {
  position: relative;
  display: flex;
  left: 0px;
  top: 0px;
  height: 40px;
  z-index: 1;
}

.hands-bg {
  width: 300px;
  max-width: 100%;
  z-index: 1;
  position: relative;
  right: 0px;
  top: 150px;
}

.portfolio-cta {
  text-align: center;
  margin: 60px 0;
}

.btn-orange {
  background-color: #dd4e28;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  text-decoration: none;
  
  font-family: "sofia-pro", sans-serif;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #c6401c;
}

.partners-section {
  background-color: #000000;
  color: white;
  padding: 80px 30px;
  text-align: center;
}

.partners-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "sofia-pro", sans-serif;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 60px;
  font-weight: bold;
  font-family: "nimbus-sans", sans-serif;
  font-size: 16px;
}

/* --- Služby stránka --- */



/* Kontejner pro celý obsah stránky */
.page-container {
    max-width: 1100px;    /* maximální šířka obsahu */
    margin: 0 auto;       /* centrování */
    padding: 0 40px;      /* mezery po stranách */
}

/* Grid s balíčky */
.packages {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Jednotlivé boxy */
.package-box {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;   /* menší vnitřní mezery */
    box-sizing: border-box;
}

/* Nadpisy v boxech */
.package-box h2 {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Vždy nový řádek po slově Balíček */
.package-box h2 .break {
    display: block;
}

/* Lepší seznam uvnitř boxu */
.package-box ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.package-box li {
    margin-bottom: 8px;
}

/* Galerie obrázků pod sebou */
.gallery {
  margin: 0;
  padding: 0;
}

.gallery-item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Obrázky přes celou šířku */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover efekt – ztmavení a lehké přiblížení */
.gallery-item:hover img {
  filter: brightness(70%);
  transform: scale(1.03);
}

/* Overlay tlačítko */
.overlay-btn {
  position: absolute;
  font-family: "sofia-pro", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 22px;
  background: rgba(255, 102, 0, 0.9); /* oranžová */
  color: white;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Zobrazení tlačítka při hover */
.gallery-item:hover .overlay-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.custom-footer {
  margin-top: auto;
  background-color: #f8eb9c; /* světle žluté pozadí */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* zarovnání vlevo */
}

.footer-text {
  font-size: 50px;
  margin: 0;
  font-weight: 500;
  color: #f03e0a;
  text-align: left;  
  font-family: "sofia-pro", sans-serif;
}

.footer-email {
  font-size: 28px;
  font-weight: 800;
  margin: 10px 0 0;
  text-align: left;  
  font-family: "sofia-pro", sans-serif;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-icon-img {
  width: 60px;  /* velikost ikon */
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.footer-icon-img:hover {
  transform: scale(1.1); /* efekt zvětšení při hoveru */
}

/* 📱 Kompletní responzivní balík (max-width: 768px) */
@media (max-width: 768px) {

  /* Header */
  header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  header nav a {
    margin: 0 !important;
    font-size: 16px;
  }

  /* CTA formulář */
  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-form input[type="email"],
  .cta-form button {
    width: 100%;
  }

  .cta-form img {
    order: -1;
    margin: 0 auto;
  }

  /* Galerie */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .overlay-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* Partners */
  .partners-grid {
    gap: 20px 30px;
    font-size: 14px;
  }

  /* Hero sekce */
  .hero h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .hero {
    padding: 50px 20px;
  }

  /* Footer */
  .custom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 20px;
  }

  .footer-email {
    font-size: 22px;
  }

  .footer-right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer-icon-img {
    width: 50px;
  }
}

/* 📱 Responzivita pro stránku služeb */
@media (max-width: 768px) {

  

  /* Nadpisy a texty */
  .identity-section h1,
  .identity-section h2,
  .online-graphics h2,
  .photo-video h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .intro-text,
  .online-graphics p,
  .photo-video p,
  .note {
    font-size: 16px;
  }

  /* Grid balíčků */
  .package-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .package-card {
    padding: 20px;
    font-size: 16px;
  }

  .package-card h2 {
    font-size: 20px;
  }

  .package-card ul li {
    font-size: 15px;
    line-height: 1.5;
  }

  .price {
    font-size: 18px;
  }

  /* Text pod balíčky */
  .txt p {
    font-size: 17px;
    padding: 0 10px;
  }

  /* CTA tlačítko */
  .cta-offer {
    text-align: center;
    margin-top: 20px;
  }

  .btn-orange {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Online grafika seznam */
  .online-graphics ul {
    padding-left: 20px;
  }

  .online-graphics ul li {
    font-size: 15px;
    margin-bottom: 8px;
  }

  /* Sekce spacing */
  .identity-section,
  .online-graphics,
  .photo-video {
    padding: 40px 20px;
  }

  .services-page {
  min-width: 280px;
  }
}


/* 📱 Mobilní verze kontaktu */
@media (max-width: 768px) {

  /* Kontejner hlavní sekce */
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  /* Levá textová část */
  .text-left {
    max-width: 100%;
  }

  .text-left h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .text-left p {
    font-size: 16px;
    margin-top: 10px;
  }

  .email-link {
    font-size: 18px;
    display: inline-block;
    margin-top: 15px;
    word-break: break-word;
  }

  /* Obrázky */
  .arrow-bg {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
  }

  .hands-bg {
    width: 80%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Zarovnání celé hero sekce */
  .contact-hero {
    padding: 40px 0;
  }
}

/* 📱 Mobilní verze – Kontakt */
@media (max-width: 768px) {

  /* Hlavní sekce */
  .contact-hero {
    padding: 40px 20px;
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* Levá textová část */
  .text-left {
    width: 100%;
    max-width: 100%;
  }

  .text-left h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .text-left p {
    font-size: 16px;
    margin-top: 8px;
  }

  .email-link {
    margin-top: 15px;
    display: inline-block;
    font-size: 18px;
    word-break: break-word;
  }

  /* Obrázky */
  .arrow-bg {
    width: 120px;
    margin: 0 auto 10px auto;
    display: block;
  }

  .hands-bg {
    width: 80%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Footer lepší spacing */
  .custom-footer {
    padding: 30px 20px;
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-text,
  .footer-email {
    font-size: 16px;
  }
}


/* 📱 Mobilní verze – About */
@media (max-width: 768px) {

  .about-hero {
    height: auto;
    padding: 0;
  }

  /* Obrázek */
  .about-bg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Wrapper */
  .about-wrapper {
    position: static;
  }

  /* Klíčová část – vypnutí absolutního pozicování */
  .about-content {
    position: static;
    transform: none;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  /* Textový box */
  .about-textbox {
    margin: 0;
    padding: 20px;
    max-width: 100%;
    border-radius: 16px;
  }

  .about-textbox h1 {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }

  .about-textbox span {
    font-size: 20px;
  }

  .about-textbox p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: left;
  }

  /* Tagy pod textem */
  .about-tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Tlačítka sociálních sítí a PDF */
  .about-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
  }

  .about-buttons img {
    height: 50px;
    width: auto;
  }

  /* Reels sekce */
  .reels-section {
    padding: 30px 20px;
  }

  .reels-section h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }

  .reels-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .reel-video {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
  }

  /* Footer */
  .custom-footer {
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-text,
  .footer-email {
    font-size: 16px;
  }

  .footer-icon-img {
    width: 50px;
  }
}

@media (max-width: 768px) {
  .arrow-bg {
    display: none;
  }

  .arrow-bg1 {
    display: none;
  }

  .services-page {
    background-color: #fef6e8;
    padding: 60px 20px;
    font-family: nimbus-sans, sans-serif;
    }
}


.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px;
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature img {
  height: 150px;
  margin-bottom: 15px;
}

.feature p {
  font-family: "sofia-pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr; /* jedna ikona pod druhou */
    gap: 30px;
    padding: 40px 20px;
  }

  .feature img {
    height: 70px; /* klidně o chlup menší než desktop */
  }

  .feature p {
    font-size: 16px;
  }
}

/* Kontejner mřížky - 2x2 sloupce */
.services-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

/* Základní styl boxu */
.service-box {
    padding: 80px 60px;
    min-height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white; /* Text v boxech je bílý */
}

/* Barvy boxů podle obrázku */
.bg-pink { background-color: #ba0049; }
.bg-orange { background-color: #f03e0a; }

.box-content {
    max-width: 500px;
    z-index: 2;
}

.service-box h2 {
    font-size: 42px;
    font-family: "sofia-pro", sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.service-box p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Černá tlačítka v boxech */
.btn-black {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.btn-black:hover {
    background-color: #333;
}

/* Ikony v pozadí boxů */
.box-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    height: 150px; /* Uprav podle potřeby */
    opacity: 0.9;
    z-index: 1;
}

/* Ceník pod mřížkou */


/* Responzivita pro mobilní telefony */
@media (max-width: 900px) {
    .services-grid-top {
        grid-template-columns: 1fr; /* Na mobilu vše pod sebou */
    }
    .service-box {
        padding: 60px 30px;
    }
    .box-icon {
        height: 100px;
        right: 20px;
        bottom: 20px;
    }
    .pricing-grid-pdf {
        grid-template-columns: 1fr;
    }
}

/* Pozadí a hlavní kontejner spodní části */
.pricing-container-bottom {
    background-color: #fef6e8; /* Světlá barva z tvého screenshotu */
    padding: 100px 80px;
    font-family: "sofia-pro", sans-serif;
}

.pdf-pricing {
    max-width: 1200px;
    margin: 0 ;
}

.pricing-main-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 80px;
}

/* Mřížka ceníku */
.pricing-grid-pdf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px; /* Široká mezera mezi sloupci */
    align-items: start;
}

.price-col h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

.price-col p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

/* Oválná tlačítka (Pills) z obrázku */
.price-pill-btn {
    display: inline-block;
    border: 2px solid #000;
    border-radius: 50px; /* Vytvoří oválný tvar */
    padding: 15px 40px;
    background-color: #ffffff;
    margin-top: 30px;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
}

.big-price {
    font-size: 24px;
    padding: 12px 50px;
}

/* Finální texty */
.final-invite {
    text-align: left; /* Zarovnání vlevo podle screenshotu */
    max-width: 1200px;
    margin: 120px auto 0;
}

.final-invite h2 {
    font-size: 48px;
    font-weight: 800;
}

.final-email {
    font-size: 24px;
    margin-top: 10px;
}

/* Úprava pro mobily */
@media (max-width: 800px) {
    .pricing-grid-pdf {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .pricing-container-bottom {
        padding: 60px 30px;
    }
}


/* --- Banner --- */
.hero-banner {
    width: 100%;
    line-height: 0;
}
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Horní sloupce služeb --- */
.services-intro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 100px;
    background-color: #fef6e8;
}
.service-col{
  padding-left: 50px;
  padding-right: 50px;
}
.service-col h2 {
    font-size: 24px;
    font-weight: 1500;
    margin-bottom: 15px;
    font-family: "sofia-pro", sans-serif;
    
}
.service-col p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 250px;

}
.btn-detail-orange {
    background-color: #f24e1e;
    color: white;
    padding: 8px 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* --- Oranžový pruh --- */
.vision-orange-bar {
  background-color: #f24e1e;
  padding: 80px 60px;
  color: white;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-container h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.4;
  font-family: "sofia-pro", sans-serif;
  display: inline;
}

.pill-button-white {
  display: inline-block;
  background: white;
  color: #f24e1e;
  padding: 12px 35px;
  font-family: "sofia-pro", sans-serif;
  text-decoration: none;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 25px;
}

@media (max-width: 768px) {
  .vision-container h1 {
    font-size: 32px;
  }
  .pill-button-white {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.testimonials-section {
    background-color: #fef6e8;
    padding: 100px 100px; /* Snížen boční padding pro sekci */
    display: flex;
    flex-direction: column;
    align-items: center; /* Zarovná obsah na střed */
}

.testimonials-title {
    color: #f9eda2;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 800;
    font-family: "sofia-pro", sans-serif;
    width: 100%;
    max-width: 1500px; /* Nadpis bude lícovat s mřížkou */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Menší mezera, aby lépe fungovalo překrytí */
    align-items: center; /* Vertikální zarovnání na střed */
    width: 100%;
    max-width: 1500px; /* Omezení šířky, aby bloky nebyly roztažené ke krajům */
}

.testimonial-card {
    background: #f9eda2;
    padding: 40px 30px; /* Více místa uvnitř */
    border-radius: 30px; /* Více zakulacené rohy podle obrázku */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 470px; /* Prodloužení na výšku */
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.185);
}

.testimonial-card p {
    font-size: 13px;
    margin-bottom: 20px;
}

/* Styl pro zvýrazněnou kartu (druhá v pořadí) */
.testimonial-card.highlighted {
    background: #fff8d3;
    min-height: 490px; /* Ještě delší než ostatní */
    transform: scale(1.1); /* Zvětšení */
    z-index: 10; /* Zajistí, že bude nad ostatními */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.548);
    justify-content: center; /* Citát bude uprostřed karty */
    padding: 50px 35px;
    margin: -15px;
}

.testimonial-card.highlighted p{
  font-size: 30px;
  font-family: "sofia-pro", sans-serif;

}

.quote {
    font-size: 26px; /* Větší písmo pro citát */
    font-weight: 800;
    color: #b00058;
    text-align: left;
    line-height: 1.2;
}

.testimonial-author {
    margin-top: auto; /* Tlačí jméno dospod */
}

.testimonial-author strong {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Responzivita - na mobilu zrušíme překrývání */
@media (max-width: 1100px) {
    .testimonials-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }
    .testimonial-card.highlighted {
        transform: scale(1);
        min-height: 450px;
    }
}

@media (max-width: 700px) {
    .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
}

/* --- Responzivita --- */
@media (max-width: 1100px) {
    .services-intro, .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .services-intro, .testimonials-grid { grid-template-columns: 1fr; }
    .vision-container { flex-direction: column; text-align: center; gap: 30px; }
    .vision-container h1 { font-size: 36px; }
}

.logos-marquee-section {
  background-color: #000;
  padding: 60px 0;
  overflow: hidden;
}

.logos-marquee-section h2 {
  text-align: center;
  color: #fff;
  font-family: "sofia-pro", sans-serif;
  font-size: 32px;
  margin-bottom: 40px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  align-items: center;
}

.marquee-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.marquee-track img:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logos-marquee-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .marquee-track img {
    height: 40px;
  }
  .marquee-track {
    gap: 40px;
  }
}

.marquee-track img.logo-small {
  height: 35px;
}

@media (max-width: 768px) {
  .marquee-track img {
    height: 40px;
  }
  .marquee-track img.logo-small {
    height: 25px;
  }
}

.testimonial-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-top: 10px;
  display: block;
  opacity: 0.8;
  filter: brightness(0);
}

.service-box {
    padding: 60px 50px;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
    overflow: hidden;
}

.box-content {
    max-width: 55%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.box-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    flex-shrink: 0;
    z-index: 1;
    align-self: center;
}

@media (max-width: 900px) {
    .service-box {
        padding: 40px 30px;
        min-height: auto;
    }

    .box-content {
        max-width: 65%;
    }

    .box-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .service-box {
        padding: 30px 20px;
    }

    .box-content {
        max-width: 70%;
    }

    .box-icon {
        width: 70px;
        height: 70px;
    }
}

.service-box {
    padding: 60px 50px;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    color: white;
    overflow: hidden;
}

.box-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
    z-index: 1;
    align-self: center;
}

@media (max-width: 900px) {
    .service-box {
        padding: 40px 30px;
        min-height: 300px;
    }
    .box-content {
        max-width: 65%;
    }
    .box-icon {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 600px) {
    .service-box {
        padding: 30px 20px;
        min-height: 250px;
    }
    .box-content {
        max-width: 70%;
    }
    .box-icon {
        width: 90px;
        height: 90px;
    }
}