body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    transition: background-color 0s;
    background-color: #111;
    color: #fff;


}

#bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
h2{
    color: black;
}
p{
    color: black;
}

#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, #00aaff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 2s ease-in-out;
    margin-top: -50px;
    
}



h3 {
    font-size: 3rem;
    background: linear-gradient(90deg, #00aaff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 2s ease-in-out;
    margin-top: -50px;
    
}

.buttons button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: 0.3s;
font-weight: bold; 

    
}
.buttons button:hover {
    background-color: #0056b3;
}
.special-btn {
background: linear-gradient(45deg, #007BFF, #FF00FF);
color: white;
border: none;
font-weight: bold; 

}

.special-btn:hover {
background: linear-gradient(45deg, #FF00FF, #007BFF); /* Opačný přechod */
filter: brightness(0.8); /* Ztmavení */
}

.login-btn{
background-color: #545454;
color: white;
font-weight: bold;

    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 10%;
}
.login-btn:hover{
background: #222;
filter: brightness(0.8);
}


#header {
    position: fixed;
    top: -70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 1px 0;
    transition: top 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
}

/* Skrytí mobilních prvků na desktopu */
#mobile-menu-toggle,
#mobile-menu {
    display: none;
}

/* Styl hamburger tlačítka */
@media (max-width: 768px) {
    #header {
        display: none;
    }

    #mobile-menu-toggle {
        position: fixed;
        top: 15px;
        right: 15px;
        font-size: 2rem;
        color: white;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px;
        border-radius: 5px;
        z-index: 1100;
        display: block;
        cursor: pointer;
    }

    #mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        padding: 20px;
        z-index: 1100;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    #mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    #close-mobile-menu {
        font-size: 2rem;
        cursor: pointer;
    }

    .mobile-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-buttons button {
        padding: 12px;
        font-size: 1.2rem;
        border: none;
        border-radius: 5px;
        background-color: #333;
        color: white;
    }

    .mobile-menu-buttons .special-btn {
        background-color: #555;
    }

    .mobile-menu-buttons .login-btn {
        background-color: #007BFF;
    }
}


.content {
    padding-top: 5px;
}

.Popis{
    height: 200vh;

}
.Mezera{
    height: 10vh;
}

#about {
    background: transparent;
    color: black;
    padding: 100px 20px;
   
}

#about video {
    width: 60%;
    max-width: 1000px;
    border-radius: 10px;
}


.scroll-indicator {
    position: absolute;
bottom: 130px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 80px;
border: 2px solid white; /* Bílý kruh */
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: white; /* Barva šipky */
cursor: pointer;
animation: bounce 1.5s infinite;
background: transparent;

}
.contact-form {
background: white;
padding: 40px;
max-width: 70%;
width: 100%;
margin: 50px auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
text-align: left;
font-family: Arial, sans-serif;
color: #333; /* Text bude dobře vidět */
}

.contact-form h2 {
text-align: center;
margin-bottom: 25px;
font-size: 24px;
color: #222; /* Zvýraznění nadpisu */
}

.contact-form label {
display: block;
font-weight: bold;
margin: 15px 0 5px;
font-size: 18px;
color: #444; /* Lepší kontrast */
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-top: 5px;
border: 2px solid #ccc;
border-radius: 5px;
font-size: 16px;
background: #f9f9f9;
color: #333;
}

.contact-form button {
margin-top: 20px;
padding: 15px;
width: 100%;
background: #007BFF;
color: white;
font-size: 18px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.contact-form button:hover {
background: #0056b3;
}

.content {
display: flex;
align-items: center;
justify-content: center;
gap: 200px;
max-width: 1200px;
margin: 40px auto;
}

.content img {
width: 40%;
max-width: 500px;
border-radius: 10px;
}

.content .text {
width: 50%;
text-align: center;
}

.content h2 {
font-size: 24px;
font-weight: bold;
color:black ;
}

.content p {
font-size: 18px;
font-weight: normal;
color: #555;
}
.divider {
width: 90%;
justify-content: center;
height: 1px;
background-color: #ccc;
margin: 40px auto;
border: none;
margin-bottom: 75px;
}


/* Otočení sekce */
.content reverse {
flex-direction: row-reverse;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1; /* Obrázek bude pod obsahem */
}


.custom-video-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 15px;
    width: 90%;
    margin: 0 auto;
    color: #111;
    text-align: start;
    font-size: 1.2em;
    
}

.custom-left {
    flex: 1;
    padding: 20px;
   
}

.custom-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-right video {
    height: 65Svh;
    width: auto;
    object-fit: cover;
    
    max-width: 1100px;
    border-radius: 10px;
}

.custom-timeline {
    display: flex;
    position: relative;
}

.custom-line {
    position: absolute;
    width: 5px;
    background-color: #333;
    left: 10px;
    top: 0;
    bottom: 0;
}

.custom-buttons {
    flex-direction: column;
    gap: 30px;
    margin-left: 40px;
    display: grid;
    grid-template-columns: 1fr;
}

.custom-timeline-item {
    display: flex;
    align-items: center;
    position: relative;
}



.custom-buttons button {
    padding: 18px 45px;
    font-size: 1em;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.custom-buttons button.active {
    background-color: lightgray; /* Světle šedá */
    color: black;
}


.custom-buttons button:hover {
    background-color: #555;
}

.bottom-button {
    background: linear-gradient(45deg, blue, #FF00FF);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 100px;
    cursor: pointer;

}

@media (max-width: 768px) {
    .custom-video-section {
        flex-direction: column;
        padding: 20px 10px;
        background-color: #f0f0f0;
    }

    .custom-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .custom-right video {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .custom-left {
        width: 100%;
        padding: 0;
    }

    .custom-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 0 auto;
        max-width: 100%;
    }

    .custom-timeline {
        flex-direction: column;
        position: relative;
        margin: 0 auto;
    }

    .custom-line,
    .custom-dot {
        display: none;
    }

    .custom-buttons button {
        padding: 12px 10px;
        font-size: 1em;
        width: 100%;
    }

    .bottom-button {
        grid-column: 1 / -1;
        margin-top: 25px;
        justify-self: center;
        width: 100%;
        max-width: 250px;
    }
}





/* === SLIDER SEKCE (custom2-carousel) === */
.custom2-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background-color: #f8f8f8; /* bílé pozadí */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.custom2-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 400%;
}

.custom2-slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom2-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.custom2-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom2-left img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Textová část */
.custom2-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.custom2-right h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.custom2-right ul {
    list-style: none;
    padding: 0;
}

.custom2-right li {
    font-size: 1.1rem;
    margin: 8px 0;
    color: #333;
}

/* Šipky */
.custom2-arrow {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom2-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.custom2-arrow.left { left: 20px; }
.custom2-arrow.right { right: 20px; }


/* === TIMELINE SEKCE (costum15-timeline-section) === */
.costum15-timeline-section {
  background: #ffffff;
  padding: 4rem 2rem;
  color: #222;
  text-align: center;
  border-top: 1px solid #ddd;
}

.costum15-timeline-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111;
}

.costum15-timeline-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.costum15-timeline-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
  border-radius: 2px;
}

.costum15-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.costum15-timeline-item:hover {
  transform: translateY(-4px);
}

.costum15-label-top,
.costum15-label-bottom {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  max-width: 140px;
  color: #333;
}

.costum15-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fafafa;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.costum15-circle img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.costum15-timeline-item.active .costum15-circle {
  border-color: #007bff;
  background: #e8f0ff;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.3);
}

.costum15-timeline-item.active .costum15-circle img {
  opacity: 1;
}

.costum15-timeline-item:hover .costum15-circle {
  transform: scale(1.08);
  border-color: #007bff;
}






.custom3-carousel {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}
.custom3-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.custom3-slide {
    min-width: 100%;
    display: none;
}
.custom3-prev, .custom3-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.custom3-prev { left: 0; }
.custom3-next { right: 0; }

.footer-container {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    margin-top: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-heading {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.custom4-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 10px;
    max-width: 90%;
    margin: auto;
}

.custom4-form-wrapper {
    display: flex;
    width: 100%;
    max-width: auto ;
    gap: 200px;
}

.custom4-form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.custom4-form-left label {
    color: white;
    margin-top: 10px;
}

.custom4-form-left input, .custom4-form-left textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
}

.custom4-form-left textarea {
    height: 100px;
}

.custom4-form-left button {
    margin-top: 15px;
    padding: 10px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom4-form-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom4-form-right img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-right: 50px;
}

@media (max-width: 768px) {
    .custom4-form-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .custom4-form-right {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-column {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
.contact-form {
max-width: 90%;
padding: 30px;
}
}



@keyframes bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(10px); }
}

.custom5-section {
  display: flex;
  gap: 70px; /* větší mezera mezi rámečky */
  padding-left: 70px; /* mezera od kraje stránky */
  padding-right: 70px; /* mezera od kraje stránky */
  box-sizing: border-box;
}

.custom5-box {
  position: relative;
  flex: 1;
  height: 70vh; /* skoro celá výška stránky */
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom5-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.custom5-content {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: white;
  max-width: 80%;
}

.custom5-content h2 {
  margin: 0 0 30px;
  font-size: 3em;
  color: white;
}

.custom5-content p {
  margin: 0 0 25px;
  font-size: 2em;
  line-height: 1.4em;
  color: white;
}

.custom5-content button {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  transition: background 0.3s ease;
}

.custom5-content button:hover {
  background: rgba(255,255,255,0.3);
}

.custom5-image,
.custom5-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.custom5-video {
  opacity: 0;
}

/* Přehrání videa při najetí */
.custom5-box:hover .custom5-video {
  opacity: 1;
  animation: playVideo 0.01s forwards;
}

.custom5-box:hover .custom5-image {
  opacity: 0;
}

/* Přes JavaScript ovládáme přehrání videa */
.custom5-box:hover video {
  animation: none;
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .custom5-section {
    flex-direction: column;
  }

  .custom5-box {
    height: 60vh;
  }
}




.custom6-section {
  width: 100%;
  padding: 30px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.custom6-video-container {
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 20 / 9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.custom6-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Vyplní celý rámeček, ořízne okraje videa */
  display: block;
}

.custom6-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom6-button {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  transition: background 0.3s ease;
  z-index: 3;
}

.custom6-button:hover {
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .custom6-button {
    font-size: 16px;
    padding: 12px 24px;
  }

  .custom6-video-container {
    border-radius: 14px;
  }
}



.costum7-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 5vw;
  background-color: #f8f8f8;
  flex-wrap: wrap;
  gap: 40px;
}

.costum7-item {
  flex: 1 1 30%;
  text-align: center;
}

.costum7-item img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: invert(0); /* outline obrázky černě */
}

.costum7-item h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #222;
  margin-top: 50px;
}

.costum7-item p {
  font-size: 1em;
  color: #555;
  max-width: 80%;
  margin: 0 auto;
}


.costum8-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 5vw;
  gap: 30px;
  background-color: #ffffff;
}

.costum8-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 22%; /* Pro 4 vedle sebe s mezerou */
  min-width: 250px;
  max-width: 350px;
}

.costum8-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.costum8-item p {
  margin: 0;
  color: #333;
  font-size: 1em;
  line-height: 1.4;
}







.costum9-contact {
  padding: 60px 5vw;
  background: #f8f8f8;
  font-family: sans-serif;
}

.costum9-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.costum9-form {
  flex: 1 1 50%;
  padding: 40px;
  background: linear-gradient(135deg, #6e00ff, #bb00ff);
  color: white;
}

.costum9-form h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: white;
}

.costum9-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

::placeholder {
  color: white;
  opacity: 1; /* zajistí plnou viditelnost */
}

.costum9-form input,
.costum9-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 22px 5px;
  font-size: 1em;
  outline: none;
}

.costum9-form textarea {
  resize: vertical;
}

.costum9-form button {
  align-self: flex-start;
  background: #ff4a7c;
  border: none;
  color: white;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.costum9-form button:hover {
  background: #e0406f;
}

.costum9-info {
  flex: 1 1 50%;
  padding: 40px;
  background: #ffffff;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.costum9-info h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.costum9-info p {
  margin-bottom: 30px;
  color: #666;
  text-align: center;
}

.costum9-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.costum9-info li {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 400px;
}

.costum9-info li img {
  width: 28px;
  height: 28px;
  display: block;
}

.costum9-info li div {
  line-height: 1.5;
  color: #444;
}

.costum9-info li strong {
  display: block;
  color: #111;
  margin-bottom: 5px;
}


.costum11-about {
  padding: 80px 5vw;
  background: #fff;
  font-family: sans-serif;
}

.costum11-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.costum11-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.costum11-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.costum11-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.costum11-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.costum11-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}




.costum10-services {
  padding: 60px 5vw;
  background: #fafafa;
  font-family: sans-serif;
  text-align: center;
}

.costum10-title {
  font-size: 2em;
  margin-bottom: 40px;
}

.costum10-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.costum10-service {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.costum10-service:hover {
  transform: translateY(-5px);
}

.costum10-service img {
  width: 48px;
  height: 48px;
  margin-bottom: 70px;
}

.costum10-service h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.costum10-service p {
  color: #555;
  font-size: 0.95em;
}










.pattern-container {
  position: absolute;
  top: 100vh; /* až pod hero sekci */
  left: 0;
  width: 100%;
  height: 300vh; /* dostatečný rozsah pro celý zbytek stránky */
  pointer-events: none;
  z-index: -1;
}

.line-group {
  position: absolute;
  width: 80px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.25;
  transform: rotate(10deg);
}

.line-group::before,
.line-group::after {
  content: '';
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #ff66cc, #6699ff);
  border-radius: 1px;
  display: block;
}

.line-group::after {
  transform: translateY(15px);
}

.line-group::before {
  transform: translateY(0);
}

/* Extra čárky */
.line-group div {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #ff66cc, #6699ff);
  border-radius: 1px;
}



.costum23-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  background: transparent; /* můžeš změnit podle stylu sekce */
}

.costum23-button {
  background: linear-gradient(45deg, #007BFF, #FF00FF);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.costum23-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #FF00FF, #007BFF);
}




.costum25-social-center {
    background: white;
    padding: 40px 0;
    text-align: center;
}

.costum25-social-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* aby to bylo responsivní */
}

.costum25-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    background: #fafafa;
    color: #111;
    transition: 0.25s;
}

.costum25-social-item:hover {
    background: #f0f0f0;
    border-color: #bbb;
    transform: translateY(-3px);
}

.costum25-social-item img {
    width: 26px;       /* stejné pro všechny ikony */
    height: 26px;
    object-fit: contain;
}

.costum25-social-item span {
    font-size: 16px;
    font-weight: 600;
}

