/* Reset a základní styly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #e67e22;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --subtle-bg: #f5f7f9;
  --accent-bg: #ecf0f3;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 18px; /* Zvětšeno ze základních 16px */
 font-weight: 700; /* NOVÝ ŘÁDEK */
  
  /* ===== VARIANTA 3: Tmavá teplá omítka (AKTIVNÍ) ===== */
  background: linear-gradient(135deg, #ddd5ca 0%, #c9bfb0 100%);
  background-attachment: fixed;
}

/* Humr JEN pro slogan */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
}

/* Humr pouze pro hero slogan */
.hero__slogan {
  font-family: 'Humr', serif !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVIGACE ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.95); /* Tmavé poloprůhledné pozadí */
  box-shadow: var(--shadow);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__brand a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  color: white; /* Bílá barva textu */
  text-decoration: none;
  font-family: 'Humr', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar__brand img {
  height: 60px; /* Zvětšeno z 45px */
  width: auto;
  max-width: 400px; /* Zvětšeno z 250px */
}

/* Mobilní verze - menší logo */
@media (max-width: 768px) {
  .navbar__brand img {
    height: 45px; /* Zvětšeno z 35px */
    max-width: 250px; /* Zvětšeno z 180px */
  }
  
  .navbar__brand a {
    font-size: 1rem;
  }
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar__menu a {
  text-decoration: none;
  color: white; /* Bílá barva pro odkazy */
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.navbar__menu a:hover,
.navbar__menu a.active {
   color: white; /* Stejná barva jako ostatní */
}

.navbar__menu .btn-nav {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}

.navbar__menu .btn-nav:hover {
  background: #d35400;
  color: var(--white);
}

/* Hamburger menu pro mobily */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar__toggle span {
  width: 25px;
  height: 3px;
  background: #e67e22; /* ORANŽOVÁ */
  transition: 0.3s;
}


/* ===== MOBILNÍ RESPONZIVITA ===== */
@media (max-width: 1024px) {
  /* Logo */
  .navbar__brand img {
    height: 40px;
    max-width: 200px;
  }
  
  /* Hamburger menu */
  .navbar__toggle {
    display: flex;
  }
  
  /* Mobilní menu */
  .navbar__menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    align-items: flex-start;
    gap: 0;
  }
  
  .navbar__menu.active {
    right: 0;
  }
  
  .navbar__menu li {
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  
  .navbar__menu li:last-child {
    border-bottom: none;
  }
  
  .navbar__menu a {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }
  
  .navbar__menu a.btn-nav {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
  }
  
  /* Hero slider */
  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero__content h1 {
    font-size: 1.8rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  /* Galerie */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer__content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__section {
    margin-bottom: 2rem;
  }
}

/* ===== HERO SEKCE ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 70px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Šipky slideru */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Navigační tečky slideru */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.15);
}

.slider-dots .dot.active {
  background: white;
}
/* ===== TLAČÍTKA ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: bold;
  text-align: center;
}

.btn--primary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn--primary:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn--secondary {
  background: var(--primary-color);
  color: var(--white);
}

.btn--secondary:hover {
  background: #1a252f;
  transform: translateY(-2px);
}

/* ===== SEKCE ===== */
.section {
  padding: 4rem 0;
  /* background odstraněno - použije se pozadí z body */
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

/* ===== O MNĚ SEKCE ===== */
.about {
  /* background odstraněno - bude průhledná */
}

.about__text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about__text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about__image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===== SLUŽBY ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service__item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.service__item:hover {
  transform: translateY(-5px);
}

.service__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service__item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services__cta {
  text-align: center;
}

/* ===== PORTFOLIO ===== */
.portfolio-preview {
  /* background odstraněno - použije se pozadí z body */
}

.portfolio-preview p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 300px;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio__item:hover img {
  transform: scale(1.1);
}

.portfolio__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.portfolio__item:hover .portfolio__overlay {
  transform: translateY(0);
}

.portfolio__cta {
  text-align: center;
}

/* ===== REFERENCE ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial__item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary-color);
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial__author {
  font-weight: bold;
  color: var(--primary-color);
}

.testimonials__cta {
  text-align: center;
}

/* ===== KONTAKT SEKCE ===== */
.contact {
  /* background odstraněno - použije se pozadí z body */
  text-align: center;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ===== PATIČKA ===== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__section h3,
.footer__section h4 {
  margin-bottom: 1rem;
}

.footer__section ul {
  list-style: none;
}

.footer__section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__section a:hover {
  color: var(--secondary-color);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== VNITŘNÍ STRÁNKY ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* O firmě - detaily */
.about-detailed {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.owner-photo {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.intro-text h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.experience-section {
  margin-bottom: 4rem;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.exp-item {
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.exp-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.exp-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

.certificates-section {
  margin-bottom: 4rem;
}

.values-section {
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ===== RESPONZIVITA ===== */
@media (max-width: 768px) {
  /* Mobilní menu */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s;
    box-shadow: var(--shadow);
  }

  .navbar__menu.active {
    left: 0;
  }

  .navbar__menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  /* Hero */
  .hero__content h1 {
    font-size: 2rem;
  }

  .hero__content p {
    font-size: 1.2rem;
  }

  /* O mně */
  .about .container {
    grid-template-columns: 1fr;
  }

  /* Šipky */
  .arrow {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  /* Vnitřní stránky */
  .page-hero h1 {
    font-size: 2rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-text h2 {
    text-align: center;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NOVÉ SEKCE PRO O FIRMĚ ===== */
.owner-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.approach-section,
.area-section {
  margin-bottom: 4rem;
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.approach-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.text-center {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.certificates-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.certificates-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.certificates-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===== SLUŽBY - DETAIL ===== */
.services-detailed {
  /* background odstraněno - použije se pozadí z body */
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-detail__image {
  order: 2;
}

.service-detail.reverse .service-detail__content {
  order: 1;
}

.service-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-detail__content h2 {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.service-perex {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.service-detail__content h3 {
  margin: 2rem 0 1rem 0;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05rem;
  color: #444;
}

.service-list li:last-child {
  border-bottom: none;
}

/* Další služby */
.additional-services {
  margin: 4rem 0;
  padding: 4rem 0;
  /* background odstraněno - použije se pozadí z body */
  border-radius: 15px;
}

.additional-services h2 {
  margin-bottom: 3rem;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.additional-service-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.additional-service-item:hover {
  transform: translateY(-5px);
}

.additional-service-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.additional-service-item p {
  color: #666;
  line-height: 1.6;
}

/* Responzivita pro služby */
@media (max-width: 768px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .service-detail.reverse .service-detail__image,
  .service-detail.reverse .service-detail__content {
    order: initial;
  }
  
  .service-detail__image img {
    height: 300px;
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PORTFOLIO / GALERIE ===== */
.portfolio-full {
  /* background odstraněno - použije se pozadí z body */
}

/* Filtr kategorií */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Galerie mřížka */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 300px;
  background: #f0f0f0;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s;
}
/*
.gallery-item img:first-child {
  position: relative;
  z-index: 1;
}

.gallery-item img:not(:first-child) {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
*/

.gallery-item:hover img:first-child {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.gallery-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.btn-view {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view:hover {
  background: #d35400;
  transform: scale(1.05);
}

/* Načíst více */
.load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

/* MODAL - Zvětšení fotky */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  animation: zoomIn 0.3s;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--secondary-color);
}

.modal-caption {
  text-align: center;
  color: var(--white);
  padding: 1rem;
  position: absolute;
  bottom: 20px;
  width: 100%;
  font-size: 1.2rem;
  background: rgba(0,0,0,0.7);
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s;
  border-radius: 5px;
}

.modal-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: translate(-50%, -50%) scale(0.8); }
  to { transform: translate(-50%, -50%) scale(1); }
}

/* Skrýt položky při filtrování */
.gallery-item.hidden {
  display: none;
}

/* Responzivita galerie */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }
  
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 35px;
  }
  
  .modal-arrow {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }
}

/* ===== PROCES PRÁCE ===== */
.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #555;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.process-step.reverse {
  grid-template-columns: 1fr 100px;
}

.process-step.reverse .step-number {
  order: 2;
}

.process-step.reverse .step-content {
  order: 1;
  text-align: right;
}

.process-step.reverse .step-list {
  text-align: left;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.step-content h2 {
  text-align: left;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-step.reverse .step-content h2 {
  text-align: right;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.step-list {
  list-style: none;
  padding: 0;
}

.step-list li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: #444;
}

.step-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.process-info {
  margin: 5rem 0 3rem;
  padding: 3rem;
  /* background odstraněno - použije se pozadí z body */
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.3);
}

.process-info h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-item p {
  line-height: 1.7;
  color: #555;
}

/* Responzivita procesu */
@media (max-width: 768px) {
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .process-step.reverse .step-number {
    order: initial;
  }
  
  .process-step.reverse .step-content {
    order: initial;
    text-align: center;
  }
  
  .step-content h2 {
    text-align: center;
  }
  
  .process-step.reverse .step-content h2 {
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REFERENCE ===== */
.references-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #555;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.reference-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.reference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.reference-rating {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reference-text {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.05rem;
}

.reference-author {
  padding-top: 1rem;
  border-top: 2px solid var(--light-bg);
}

.reference-author strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.reference-author span {
  color: #777;
  font-size: 0.95rem;
}

.references-stats {
  margin: 5rem 0 3rem;
  padding: 3rem;
  /* background odstraněno - použije se pozadí z body */
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.3);
}

.references-stats h2 {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: 'Humr', serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* ===== KONTAKT ===== */
.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  height: fit-content;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-bg);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-detail p {
  margin-bottom: 0.3rem;
}

.contact-detail a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.contact-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-bg);
}

.contact-social h3 {
  margin-bottom: 1rem;
}

.social-link {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.social-link:hover {
  background: #d35400;
}

/* Formulář */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.form-intro {
  color: #777;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.2rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}

.form-response {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  display: none;
}

.form-response.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-response.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ===== HLAVNÍ RESPONZIVITA - TABLET A MOBIL ===== */
@media (max-width: 768px) {
  /* HAMBURGER MENU - VIDITELNÉ */
  .navbar__toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }

  .navbar__toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    margin: 4px 0;
    transition: 0.3s;
  }

  /* LOGO - VĚTŠÍ NA MOBILU */
  .navbar__brand img {
    height: 50px !important;
    max-width: 300px !important;
  }

  /* MENU */
  .navbar__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s;
    box-shadow: var(--shadow);
    z-index: 1000;
  }

  .navbar__menu.active {
    left: 0;
  }

  .navbar__menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  .navbar__menu a {
    color: var(--primary-color) !important;
    font-size: 1.1rem;
  }

  /* HERO SEKCE */
  .hero__content h1 {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }

  .hero__content p {
    font-size: 1.1rem !important;
  }

  /* ŠIPKY SLIDERU */
  .arrow {
    padding: 0.5rem 0.8rem !important;
    font-size: 1.2rem !important;
  }

  .arrow.left {
    left: 5px !important;
  }

  .arrow.right {
    right: 5px !important;
  }

  /* SLIDER DOTS */
  .slider-dots {
    bottom: 15px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }

  /* O MNĚ */
  .about .container {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-text h2 {
    text-align: center;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  /* VNITŘNÍ STRÁNKY */
  .page-hero h1 {
    font-size: 2rem;
  }

  /* SLUŽBY */
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .service-detail.reverse .service-detail__image,
  .service-detail.reverse .service-detail__content {
    order: initial;
  }
  
  .service-detail__image img {
    height: 300px;
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
  }
  

  /* GALERIE */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }
  
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 35px;
  }
  
  .modal-arrow {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
  }

  /* PROCES PRÁCE */
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .process-step.reverse .step-number {
    order: initial;
  }
  
  .process-step.reverse .step-content {
    order: initial;
    text-align: center;
  }
  
  .step-content h2 {
    text-align: center;
  }
  
  .process-step.reverse .step-content h2 {
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* REFERENCE */
  .references-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* KONTAKT */
    .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBIL - EXTRA MALÉ OBRAZOVKY ===== */
@media (max-width: 480px) {
  .hero__content h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}/* Slogan ve stylu z obrázku */
   .hero__slogan {
     font-family: 'Humr', serif;
     font-size: 2.5rem;
     font-weight: bold;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--white);
     text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
     margin-bottom: 1rem;
     line-height: 1.3;
   }

   .hero__subtitle {
     font-family: 'Humr', serif;
     font-size: 1.2rem;
     font-style: italic;
     color: var(--white);
     text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
     margin-bottom: 2.5rem;
     letter-spacing: 1px;
   }
   /* ===== ANIMACE A VYLEPŠENÍ ===== */

/* Logo hover efekt */
.navbar__brand a {
  transition: transform 0.3s ease;
}

.navbar__brand a:hover {
  transform: scale(1.05);
}

/* Plynulejší přechody menu */
.navbar__menu a {
  position: relative;
  transition: color 0.3s ease;
}
/* Animace čáry pod menu */
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -22px; /* Hodně dole */
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a843;
  transition: width 0.3s ease;
}
/* Čára se zobrazí JEN při hover (ne u aktivní) */
.navbar__menu a:hover::after {
  width: 100%;
}
.navbar__menu a:hover::after {
  width: 100%;
}

/* Animace pro sekce při načtení */
.section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zpoždění pro různé sekce */
.about { animation-delay: 0.2s; }
.services { animation-delay: 0.3s; }
.portfolio-preview { animation-delay: 0.4s; }
.testimonials { animation-delay: 0.5s; }

/* ===== OPRAVA HAMBURGERU - KRITICKÉ ===== */ 
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex !important;
    z-index: 1001;
  }
  
  .navbar__toggle span {
    background: #ffffff !important;
  }
}
/* ===== TUČNÉ PÍSMO PRO CELÝ WEB ===== */
body {
  font-weight: 600 !important;
}

/* FORCE TUČNÉ PÍSMO */
p, div, span, li, a {
  font-weight: 700 !important;
}
* {
  font-weight: inherit !important;
}

/* Nadpisy ještě tučnější */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
}
/* JEDNODUŠŠÍ VERZE FLEXIBILNÍHO PŘÍSTUPU */
.flexible-approach-box-simple {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--secondary-color);
}

.flexible-approach-box-simple h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.flexible-approach-box-simple ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.flexible-approach-box-simple li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.flexible-approach-box-simple li:last-child {
  border-bottom: none;
}
/* ===== O MNĚ - DVA SLOUPCE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sjednocení šířky všech sekcí */
.about-grid,
.services__grid,
.portfolio__grid {
  max-width: 1200px;
  margin: 0 auto;
}

.about__text h2 {
  margin-bottom: 1.5rem;
}

.about__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* FEATURES BOX */
.about-features {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--secondary-color);
}

.about-features h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.features-list strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.features-list p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* MOBILNÍ */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* SOCIÁLNÍ SÍTĚ - KONTAKT */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link.facebook {
  color: #1877F2; /* Facebook modrá */
}

.social-link:hover {
  color: #145dbf;
  transform: translateY(-3px);
}

.social-link.instagram {
  color: #E4405F; /* Instagram růžová */
}

.social-link.instagram:hover {
  color: #d62976;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 1.5rem;
}

/* MOBILNÍ */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}
/* FORMULÁŘ - ODPOVĚDI */
.form-response {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
  display: none;
}

.form-response.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/* KONTAKT STRÁNKA - DVA SLOUPCE */
.contact-wrapper {
  display: grid !important;
  grid-template-columns: 400px 1fr !important;
  gap: 3rem !important;
  align-items: start !important;
}

/* MOBILNÍ - POD SEBOU */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none; /* Skryto, dokud JS neřekne jinak */
  animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent__content p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent__content a {
  color: #ff8c42;
  text-decoration: underline;
}

.cookie-consent__content a:hover {
  color: #ffa726;
}

.cookie-consent__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* REKONSTRUKCE PROCES - MOBILNÍ */
.proces-krok-simple {
  flex-direction: column;
  text-align: center;
}

.krok-icon-simple {
  font-size: 2rem;
}

.cookie-consent__buttons .btn--primary {
  background-color: #ff8c42;
  color: #fff;
}

.cookie-consent__buttons .btn--primary:hover {
  background-color: #e67a32;
}

.cookie-consent__buttons .btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-consent__buttons .btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


/* ===== JAK PROBÍHÁ REKONSTRUKCE - ZJEDNODUŠENÉ ===== */
.rekonstrukce-proces-box {
  background: transparent;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  border-left: 4px solid #e67e22;
}

.rekonstrukce-proces-box h3 {
  color: #e67e22;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 700;
}

.proces-intro {
  text-align: left;
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
}

.proces-kroky-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.proces-krok-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.proces-krok-simple:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.15);
}

.krok-icon-simple {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.proces-krok-simple h4 {
  color: #2c3e50;
  font-size: 1rem;
  margin: 0 0 0.3rem 0;
  font-weight: 700;
}

.proces-krok-simple p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Mobilní zařízení */
@media (max-width: 768px) {
  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent__buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent__buttons .btn {
    flex: 1;
  }

  /* REKONSTRUKCE PROCES - MOBILNÍ */
  .proces-krok-simple {
    flex-direction: column;
    text-align: center;
  }
  
  .krok-icon-simple {
    font-size: 2rem;
  }
* INFORMAČNÍ BOX NA STRÁNCE SLUŽBY */
.info-box {
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe3d5 100%);
  border-left: 4px solid #e67e22;
  padding: 2.5rem;
  border-radius: 8px;
  margin: 3rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-box-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.info-box h3 {
  color: #e67e22;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.info-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section h4 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-section p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-box {
    padding: 1.5rem;
  }
  
  .info-section {
    padding: 1rem;
  }
}  
}
/* ==========================================
   DŮLEŽITÉ INFORMACE - INFO PANEL
   ========================================== */

.info-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top: 5px solid #e67e22;
}

.info-panel-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon-large {
  font-size: 2.5rem;
  color: #e67e22;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #e67e22;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
}

.info-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.info-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
}

.info-card p:last-of-type {
  margin-bottom: 0;
}

.info-card strong {
  color: #2c3e50;
  font-weight: 700;
}

.info-note {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border-left: 3px solid #ff9800;
  margin-top: 1.5rem !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e65100;
}

/* TABLET - 2 sloupce */
@media (max-width: 1100px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .info-panel {
    padding: 3rem 1.5rem;
  }
  
  .info-panel-title {
    font-size: 1.8rem;
  }
  
  .info-card {
    min-width: 250px;
  }
}

/* MOBIL - 1 sloupec */
@media (max-width: 640px) {
  .info-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-panel {
    padding: 2rem 1rem;
  }
  
  .info-panel-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .icon-large {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 2rem 1.5rem;
  }
  
  .info-card-icon {
    font-size: 2.5rem;
  }
  
  .info-card h3 {
    font-size: 1.2rem;
  }
}
/* ==========================================
   DŮLEŽITÉ INFORMACE - INFO PANEL
   ========================================== */

.info-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top: 5px solid #e67e22;
}

.info-panel-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon-large {
  font-size: 2.5rem;
  color: #e67e22;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #e67e22;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.2);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
}

.info-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.info-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
}

.info-card p:last-of-type {
  margin-bottom: 0;
}

.info-card strong {
  color: #2c3e50;
  font-weight: 700;
}

.info-note {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border-left: 3px solid #ff9800;
  margin-top: 1.5rem !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e65100;
}

/* TABLET - 2 sloupce */
@media (max-width: 1100px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .info-panel {
    padding: 3rem 1.5rem;
  }
  
  .info-panel-title {
    font-size: 1.8rem;
  }
  
  .info-card {
    min-width: 250px;
  }
}

/* MOBIL - 1 sloupec */
@media (max-width: 640px) {
  .info-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-panel {
    padding: 2rem 1rem;
  }
  
  .info-panel-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .icon-large {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 2rem 1.5rem;
  }
  
  .info-card-icon {
    font-size: 2.5rem;
  }
  
  .info-card h3 {
    font-size: 1.2rem;
  }
}