/**
* Template Name: DevFolio
* Template URL: https://bootstrapmade.com/devfolio-bootstrap-portfolio-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #060606; /* Background color for the entire website, including individual sections */
  --default-color: #4e4e4e; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a090f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #13cdae; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #13cdae; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #13cdae;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #24cdb0;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}




/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color:#060606;
  transition: all 0.5s;
  z-index: 997;
  /* Odstraněno width: 100vw */
  position: relative;
  left: 0;
  right: 0;
  margin: 0;
  padding: 20px 0;
  box-sizing: border-box;
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #13cdae;
}



/* Mobile logo size */
@media (max-width: 1199px) {
  .header .logo h1 {
    font-size: 22px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Středové logo */
.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* Vycentruje logo horizontálně */
  display: flex;
  justify-content: center;
}

.header .logo-center img {
  max-width: 60px; /* Nastavte maximální šířku obrázku */
  height: auto; /* Udržuje poměr stran */
}



.header .container-fluid {
  padding-left: 20px; /* Výchozí padding pro mobil */
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1600px) {
  .header .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Tabletové rozlišení (768px a více) */
@media (min-width: 768px) {
  .header .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Notebooky (992px a více) */
@media (min-width: 992px) {
  .header .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Široké obrazovky (1200px a více) */
@media (min-width: 1200px) {
  .header .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* Skrýt text Adam Koryčánek na mobilu */
@media (max-width: 768px) {
  .sitename {
    display: none;
  }
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #13cdae;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #13cdae;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 9999;
  }

  .mobile-nav-toggle:hover {
    color: #ffffff;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 0;
    margin: 0;
    background-color: #060606;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    list-style: none; /* Odstranění teček */
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: 0.3s;
    z-index: 9998;
    text-align: center;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: block;
    text-align: center;
    transition: 0.3s;
    text-decoration: none; /* Odstranění podtržení */
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #13cdae;
    background-color: rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-active .navmenu ul {
    display: block;
    animation: fadeInDown 0.4s ease forwards;
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    transform: rotate(90deg);
  }
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: #ffffff;
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
  width: 100%;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 20px 0 40px;
  margin-top: -60px;
  width: 100%;
  max-width: none; /* Odstranění omezení šířky */
}

.footer-content .container {
  max-width: 100%; /* Plná šířka */
  padding: 0 20px; /* Menší boční odsazení */
  margin: 0 auto;
}

.footer-bg-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 245px;
  font-weight: 700;
  color: rgba(19, 205, 174, 0.25);
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  bottom: -300px;
  top: auto;
  transition: bottom 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer.active .footer-bg-logo {
  bottom: -110px;
}

.footer-columns {
  display: grid;
  grid-template-areas:
    "contact social"
    "copyright copyright"
    "design design";
  gap: 20px;
}

/* VŠECHNY SLOUPCE - ZAROVNÁNÍ NA STŘED */
.footer-grid,
.footer-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid {
  grid-area: contact;
}

.footer-item:nth-child(2) {
  grid-area: social;
}

.footer-item:nth-child(3) {
  grid-area: copyright;
}

.footer-item:nth-child(4) {
  grid-area: design;
}

/* NADPISY - TYRKYSOVÁ #13cdae */
.footer h4 {
  color: #13cdae !important;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

/* VŠECHNY TEXTY - ŠEDÁ #a0a0a0 A ZAROVNÁNÍ NA STŘED */
.footer p {
  color: #a0a0a0 !important;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

/* ODKAZY - ŠEDÁ #a0a0a0 S EFEKTEM ZVEDNUTÍ */
.footer-link {
  color: #a0a0a0 !important; /* Šedá barva místo bílé */
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  transform: translateY(0);
}

.footer-link:hover {
  color: #13cdae !important;
  transform: translateY(-3px); /* Efekt zvednutí */
}

/* SOCIÁLNÍ IKONKA - ŠEDÁ #a0a0a0 S EFEKTEM ZVEDNUTÍ */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #a0a0a0 !important; /* Šedá barva */
  color: #a0a0a0 !important; /* Šedá barva */
  font-size: 20px;
  transition: all 0.3s ease;
  margin-top: 5px;
  transform: translateY(0);
}

.social-icon:hover {
  color: #13cdae !important;
  border-color: #13cdae !important;
  background-color: rgba(19, 205, 174, 0.1);
  transform: translateY(-3px) scale(1.05); /* Efekt zvednutí a zvětšení */
}

/* Desktop verze */
@media (min-width: 768px) {
  .footer {
    padding: 80px 0 0;
  }

  .footer-content {
    padding: 20px 0 60px;
    margin-top: -95px;
  }

  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .footer-grid,
  .footer-item {
    flex: 1;
    min-width: 0;
    padding: 0 15px;
    margin-bottom: 0;
    text-align: center;
    align-items: center;
  }
}

/* Tablety */
@media (max-width: 992px) {
  .footer-bg-logo {
    font-size: 180px;
    bottom: -150px;
  }

  .footer.active .footer-bg-logo {
    bottom: -70px;
  }
}

/* Mobilní verze */
@media (max-width: 767px) {
  .footer-bg-logo {
    font-size: 120px;
    bottom: -100px;
  }

  .footer.active .footer-bg-logo {
    bottom: -40px;
  }

  .footer-columns {
    display: grid;
    grid-template-areas:
      "contact social"
      "copyright copyright"
      "design design";
    gap: 30px 20px;
  }
}

/* Extra malé obrazovky */
@media (max-width: 576px) {
  .footer-bg-logo {
    font-size: 100px;
    bottom: -80px;
  }

  .footer.active .footer-bg-logo {
    bottom: -30px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000000; /* černé pozadí */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

/* Logo uvnitř preloaderu */
#preloader img {
  width: 200px;
  height: auto;
  animation: preloader-rotate 2s linear infinite;
  transition: transform 1s ease, opacity 0.8s ease;
}

/* Po načtení stránky přidáme třídu .preloader-hidden */
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader.preloader-hidden img {
  transform: scale(0);
  opacity: 0;
}

/* Rotace loga */
@keyframes preloader-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #13cdae;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 92px);
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;      /* zabírá celou výšku viewportu */
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 36px;
  font-weight: 600;
}

.hero p span {
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #181818;
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid #181818;
  min-height: 85vh; /* ⬅️ výška téměř celého okna */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 600px; /* ⬅️ omezení šířky */
  margin-left: auto;
  margin-right: auto;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: #13cdae;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 40px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 20px 0 25px 0;
  font-size: 36px;
  color: #13cdae;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
}

.services .service-item ul {
  margin-top: 20px;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}

@media (max-width: 991px) {
  .services .service-item {
    padding: 60px 30px;
    min-height: unset;
  }

  .services .service-item h3 {
    font-size: 28px;
  }

  .services .service-item p,
  .services .service-item ul {
    font-size: 16px;
    line-height: 1.6;
  }

  .services .service-item .icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

/* Animace pro služby */
.services .col-lg-6:first-child {
  transform: translateX(-300px);
  opacity: 0;
  transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services .col-lg-6:last-child {
  transform: translateX(300px);
  opacity: 0;
  transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services .col-lg-6.show {
  transform: translateX(0);
  opacity: 1;
}

/*--------------------------------------------------------------
# Tlačítka v sekci služeb - OPRAVENÁ VERZE
--------------------------------------------------------------*/
.service-btn-container {
  margin-top: auto;
  padding-top: 30px;
  text-align: center;
}

.btn-service {
  display: inline-block;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 600;
  color: white !important; /* Důležité pro přepsání možných děděných stylů */
  background: linear-gradient(135deg, #13cdae, #10b89c); /* Přidán gradient pro lepší vizuál */
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-out; /* Zjednodušený transition */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer; /* Ukazatel myši */
}

.btn-service:hover {
  background: linear-gradient(135deg, #10b89c, #0e9e85); /* Ztmavený gradient */
  transform: translateY(-5px) !important; /* Výraznější pozdvižení */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-service:active {
  transform: translateY(-3px); /* Efekt při kliknutí */
}

/* Důležité: Přepsání transformací z animací */
.services .col-lg-6.show .btn-service,
.services .col-lg-6.show .btn-service:hover {
  transform: translateY(0) !important;
}

.services .col-lg-6.show .btn-service:hover {
  transform: translateY(-5px) !important;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background-color: transparent;
  position: relative;
}

.about .section-title h2 {
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.about .section-title h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 15px auto 0;
}


.about .about-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.about .about-content.show {
  opacity: 1;
  transform: translateY(0);
}

.about .about-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.5em;
}

/* Responsivní úpravy */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about .section-title h2 {
    font-size: 30px;
  }
  
  .about .section-subtitle {
    font-size: 16px;
  }
  
  .about .about-content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .service-item {
  background-color: #181818;
  padding: 40px 30px;
  border-radius: 8px;
  height: 100%;
  transition: none;
  border: none !important;
  box-shadow: none !important;
}

/* Zrušení efektů na hlavních boxech */
.contact .service-item:hover {
  background-color: #181818 !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.contact-form {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  font-size: 20px;
  color: #13cdae;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-size: 18px;
  background-color: #302d2d;
  color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #13cdae;
  border-width: 2px;
  transition: border-width 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #13cdae;
  border-width: 2px;
  box-shadow: 0 0 0 0.3rem rgba(19, 205, 174, 0.25);
  outline: none;
  transition: all 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.7;
}

.btn-submit {
  display: block;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #13cdae;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 40px;
  width: fit-content;
  min-width: 200px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn-submit:hover {
  background-color: #10b89c;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-submit:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #0ea58c;
}

.btn-submit.sending {
  animation: pulse 0.5s ease;
  cursor: pointer; /* Zachová původní kurzor */
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Pravé boxy s kontakty */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-group h4 {
  color: #13cdae;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  background-color: #302d2d;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #13cdae;
  background-color: rgba(19, 205, 174, 0.05);
}

.contact-method i {
  font-size: 24px;
  color: #13cdae;
  transition: all 0.3s ease;
}

.contact-method:hover i {
  animation: bounce 0.5s ease;
  color: #13cdae !important;
}

.contact-method .contact-link {
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-link:hover {
  color: #13cdae;
  font-weight: 700;
}

/* Alert Notification */
.global-alert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #13cdae;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
  display: flex;
  align-items: center;
}

.global-alert.hide {
  animation: slideOut 0.5s ease-in;
}

.alert-content {
  display: flex;
  align-items: center;
}

.alert-content svg {
  margin-right: 10px;
}

@keyframes slideIn {
  from { bottom: -50px; opacity: 0; }
  to { bottom: 20px; opacity: 1; }
}

@keyframes slideOut {
  from { bottom: 20px; opacity: 1; }
  to { bottom: -50px; opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .contact .service-item {
    padding: 30px 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
  }
  
  .global-alert {
    width: 90%;
    text-align: center;
    padding: 12px 15px;
  }
  
  .btn-submit {
    min-width: 180px;
    padding: 10px 20px;
    font-size: 18px;
  }
}

/* Animace pro služby */
.contact .col-lg-6:first-child {
  transform: translateX(-300px);
  opacity: 0;
  transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact .col-lg-6:last-child {
  transform: translateX(300px);
  opacity: 0;
  transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact .col-lg-6.show {
  transform: translateX(0);
  opacity: 1;
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.zeleny-text {
  color: #13cdae;
}

/*--------------------------------------------------------------
# Tlačítko "co nabízíme" na hlavní stránce
--------------------------------------------------------------*/

.btn-nabidka {
  display: inline-block;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #13cdae;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-nabidka:hover {
  background-color: #10b89c; /* mírně ztmavená varianta */
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white; /* Ujistíme se, že zůstává bílý */
  text-decoration: none;
}


/* Nastavení vyskakovacího okénka */
.modal-content {
  font-size: 20px;
  line-height: 1.7;
  background-color: #181818;        /* barva pozadí celého okna */
  color: #ffffff;                    /* barva základního textu */
  border-radius: 12px;
  padding: 0;
  border: none;
}

.modal-header {
  background-color: #181818;       /* velmi světlý tyrkys */
  color: #13cdae;                    /* barva nadpisu */
  border-bottom: 1px solid #13cdae40;
  padding: 20px 30px;
}

.modal-title {
  font-size: 28px;
  font-weight: 1000;
  color: #13cdae;
  text-align: center;
  width: 100%;
}

.modal-body {
  padding: 30px;
  background-color: #181818;         /* jemně šedé pozadí pro kontrast */
  color: #ffffff;
}

.mb-3 label.form-label {
  font-size: 20px;
  font-weight: 600;
  color: #13cdae;
}

.modal-body .form-control::placeholder {
  font-size: 18px;
  color: #ffffff;         /* bílý placeholder */
  opacity: 0.7;           /* volitelné: aby byl lehce průhledný */
}

.modal-body p {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.modal-body p,
.modal-body label {
  color: #ffffff;
}

.modal-body .form-label {
  font-size: 16px;
  color: #ffffff;
}

.modal-body .form-control {
  font-size: 18px;
  background-color: #302d2d;
  color: #ffffff;
}

#modal-text {
  white-space: pre-line;
  color: #ffffff;
}


/* Vlastní velikost vyskakovacího okna */
.modal-custom-size {
  max-width: 700px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  min-height: 100vh; /* výška celé obrazovky */
}

.modal-custom-size .modal-content {
  margin: auto;
  padding: 40px;
  width: 100%;
}

/* Styl pro inputy a textarea */
.modal-content input.form-control,
.modal-content textarea.form-control {
  transition: border 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Efekt při přejetí myší - výraznější */
.modal-content input.form-control:hover,
.modal-content textarea.form-control:hover {
  border-color: #13cdae;
  border-width: 2px; /* nebo 3px pro ještě silnější obrys */
  transition: border-width 0.2s ease; /* hladký přechod */
}

/* Efekt při kliknutí (focus) - také zesílený */
.modal-content input.form-control:focus,
.modal-content textarea.form-control:focus {
  border-color: #13cdae;
  border-width: 2px; /* nebo 3px */
  box-shadow: 0 0 0 0.3rem rgba(19, 205, 174, 0.25); /* upraveno na vaši zelenou barvu */
  outline: none;
  transition: all 0.2s ease; /* hladký přechod všech vlastností */
}

/* Styly pro tlačítko ve vyskakovacim okenku (stejné jako .btn-nabidka, ale s jiným názvem třídy) */
.btn-odeslat {
  /* Zachovejte všechny původní styly */
  display: block;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #13cdae;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 40px;

  /* Upravte šířku */
  width: fit-content;       /* Zruší plnou šířku (původní `width: 100%`) */
  max-width: 200px;  /* Minimální šířka, aby text nezůstal moc úzký */
  margin-left: auto;        /* Automatické okraje */
  margin-right: auto;    
}

/* Efekt při najetí myší */
.btn-odeslat:hover {
  background-color: #10b89c;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Efekt při stisknutí */
.btn-odeslat:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: #0ea58c;
}

/* Animace po odeslání */
.btn-odeslat.sending {
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Styly pro tlačítko zavření modálního okna  */
#kontaktModal .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1);
  width: 1.5em;
  height: 1.5em;
}

/* Efekt při najetí myší - mírné ztmavnutí */
#kontaktModal .btn-close:hover {
  opacity: 1;
  filter: brightness(0.8);
  transform: scale(1.05);
}

/* Efekt při aktivním stisknutí */
#kontaktModal .btn-close:active {
  filter: brightness(0.7);
  transform: scale(0.95);
}


/* Lišta po odeslání */
.global-alert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #13cdae;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
}

.global-alert.hide {
  animation: slideOut 0.5s ease-in;
}

@keyframes slideIn {
  from { bottom: -50px; opacity: 0; }
  to { bottom: 20px; opacity: 1; }
}

@keyframes slideOut {
  from { bottom: 20px; opacity: 1; }
  to { bottom: -50px; opacity: 0; }
}

/* Styly pro služby - hover efekty */
.service-item {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 25px;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #13cdae; /* Tirkysová barva */
  background-color: rgba(19, 205, 174, 0.05); /* Jemné podsvícení */
}

.service-item .icon {
  transition: all 0.3s ease;
}

.service-item:hover .icon {
  color: #13cdae; /* Tirkysová barva pro ikonu */
}

/* Animace ikon při hoveru */
.service-item:hover .icon i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Opraví zmizení bílých symbolů v ikonách */
.service-item .icon i {
  color: white !important; /* Vynutí bílou barvu symbolu */
  transition: color 0.3s ease;
}

.service-item:hover .icon i {
  color: white !important; /* Zůstane bílý i při hoveru */
  opacity: 1 !important;
}

/* Instagram ikona - finální řešení */
.social-icon i.bi-instagram {  /* Cílíme přímo na ikonu uvnitř */
  color: white !important; /* Absolutní bílá */
  transition: color 0.3s ease !important;
}

.social-icon:hover i.bi-instagram {
  color: #13cdae !important; /* Zelená pouze při hoveru */
}


/* Vzhled potvrzovací lišty */
.alert {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    border-left: none;
    opacity: 0;
}

.alert[style*="display: block"] {
    opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* GDPR souhlas */
.gdpr-notice {
  margin-top: 30px;
}

.gdpr-notice-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gdpr-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #13cdae;
  color: #181818;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}

.gdpr-text {
  color: #b2b2b2;
  font-size: 14px;
}

.gdpr-link {
  color: #13cdae;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.gdpr-link:hover {
  color: #0fa58c;
  transform: translateY(-2px);
  text-decoration: none;
}


/* 🔻 Spolupráce lišta – finální verze s Raleway fontem, tmavým pozadím a #13cdae */
.collab-bar {
  background: #060606; /* nová tmavá barva pozadí */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative; /* pod hero sekcí */
  width: 100%;
  height: 96px;
  z-index: 10;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;  /* plynulý přechod */
}

.collab-bar.visible {
  opacity: 1;        /* po scrollu viditelná */
  transform: translateY(0);
}

/* Kontejner drží loga uprostřed */
.collab-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text vlevo, menší, s Raleway fontem */
.collab-text {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--heading-font); /* používá Raleway */
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem; /* o něco menší než dřív */
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Loga – vystředěná skupina */
.collab-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 100%;
}

/* Loga – velká (56 px) */
.collab-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transition: all 0.25s ease;
}

.collab-logo img {
  width: 65px;
  height: 65px;
  min-width: 65px;
  min-height: 65px;
  max-width: 65px;
  max-height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  display: block;
  opacity: 0.9;
  transition: all 0.25s ease;
}

/* Hover efekt s #13cdae */
.collab-logo:hover img {
  transform: scale(1.15);
  border-color: #13cdae; /* nová zelená barva */
  box-shadow: 0 4px 8px rgba(19, 205, 174, 0.3);
  opacity: 1;
}

/* Tooltip */
.collab-logo::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.collab-logo:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

/* 🔹 Responzivita – loga výrazně menší než text */
@media (max-width: 768px) {
  .collab-bar {
    height: 50px; /* nižší lišta */
  }

  .collab-text {
    font-size: 1rem; /* text zachován */
    left: 16px;
  }

  .collab-logos {
    gap: 8px; /* menší mezery */
  }

  .collab-logo img {
    width: 14px;  /* výrazně menší loga */
    height: 14px;
  }
}

@media (max-width: 480px) {
  .collab-bar {
    height: 50px; /* ještě nižší lišta */
  }

  .collab-text {
    font-size: 0.9rem; /* text menší než na větších mobilech */
    left: 12px;
  }

  .collab-logo img {
    width: 10px; /* opravdu malé loga */
    height: 10px;
  }

  .collab-logos {
    gap: 6px; /* menší mezery mezi logy */
  }
}

