body {
  margin: 0;
  padding: 0;
  background-color: #0a111d;
  color: #e0dede;
  line-height: 1.6;
 
}

header {
  text-align: center;
  padding: 2rem 1rem;
}

.main-h1 {
  font-size: clamp(1.4rem, 5.2vw + 0.2rem, 2.6rem);
  line-height: 1.15;
  font-weight: bold;
  margin-bottom: 1.1rem;
  color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Overpass', sans-serif;
  font-weight: 700;
}

@media (max-width: 380px){
  .main-h1{
    font-size: clamp(1.25rem, 6vw + 0.1rem, 2rem);
  }
}
article h1,
aside h1,
nav h1,
section h1 {
  font-size: clamp(1.4rem, 5.2vw + 0.2rem, 2.6rem);
  line-height: 1.15;
  font-weight: bold;
  margin-bottom: 1.1rem;
  color: #ffffff;
}

@media (max-width: 380px) {
  article h1,
  aside h1,
  nav h1,
  section h1 {
    font-size: clamp(1.25rem, 6vw + 0.1rem, 2rem);
  }
}

img {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
}

section {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;

}

h2,
.content-block h2,
.offer-wrapper h2,
.offer-text h2
 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: bold;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.offer-text h2 {
  margin-top: 0;   /* odstraní posun nadpisu dolů */
  margin-bottom: 1rem; /* trochu menší mezera pod nadpisem */
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

h3 {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
 
  margin-bottom: 1rem;
}

/* Horní pruh */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* nebo flex-end, podle testu */
  background-color: #0b0a1d;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid #222;
}

.logo {
  position: relative;
  /* kvůli bublině */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  /* mezera mezi logo-top a zprávou, nepovinné */

}

.logo a:focus,
.logo a:focus-visible,
.logo a:focus img,
.logo-icon:focus {
  outline: none !important;
  box-shadow: none !important;
}





/* Navigace */
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 3vw, 4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  padding: 0.3rem 0;
}

.main-nav a {
  position: relative;
  font-size: clamp(0.6rem, 1vw, 1.2rem);
  font-weight: bold;
  padding: 0.6rem 0;  /* jen vertikální padding */
  margin: 0 1rem;     /* mezery mezi odkazy */
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* tloušťka podtržení */
  background: linear-gradient(90deg, #780F66, #02d0b4); /* fialová -> tyrkys */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  color: #f7f9f9;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: scaleX(1);
}


.centered-nav {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
}

/* Navigační menu – na mobilu úplně zmizí */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .centered-nav {
    position: static;
    transform: none;
    margin: 1rem auto;
    text-align: center;
  }
}

/* Footer */
.footer-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  color: #d3d3d3;
  padding: 1rem 2rem 2rem 2rem;
  /* top | right | bottom | left */
  text-align: left;
}
.footer-grid
 {
  background-color: transparent;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 240px;
  max-width: 360px;
  font-size: 14px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-column h3 {
  color: #d3d3d3;
  margin-bottom: 12px;
  border-bottom: 2px solid #097774;
  display: inline-block;
  font-size: 20px;
    position: relative;
  padding-bottom: 3px; /* menší odstup pod textem */
}


.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* jemnější linka */
  background: linear-gradient(90deg, #b350a5 40%, #3ddad8 60%);
  border-radius: 2px; /* lehce zakulacené hrany */
}

.footer-logo {
  margin-top: 15px;
  max-width: 110px;
}

.footer-bottom {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #3c2c4c;
  color: #d3d3d3;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  border-top: 1px solid #625f5f;
}


html {
  scroll-behavior: smooth;
}

.hero {
  background-image: url('homepage3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* místo center */
  text-align: left;
  color: #f7f6f8;
  padding: 5rem 2rem 5rem 8%;  /* top, right, bottom, left */
  max-width: 100%;
  min-height: 50vh; /* nebo i 70vh pro moderní dojem */
}

 


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 126, 105, 0.12);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;       /* text bude nad zelenou vrstvou */
  max-width: 800px;
  margin: 0;
  padding-left: 5%;
  text-align: left;
  color: #fff;      /* čistá bílá */
}


.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 3rem;

}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0.95;

}

.hero-tagline {
  font-size: 1rem;
  padding-bottom: 2rem;
}

.hero-title,
.hero-subtitle,
.hero-tagline {
  text-align: left;
  margin-left: 5%;   /* trošku odsazení od kraje */
  font-family: 'Orbitron', sans-serif;
  color: #fff;              /* sjednotíme barvu */
  text-shadow: 0 0 10px rgba(0,0,0,0.3); /* jemný stín pro čitelnost */
}


.content-block {

  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem; 
  color: #e0dede;
  text-align: left;
  scroll-margin-top: 80px;
  /* výška top-baru, uprav dle potřeby */
}


.content-block p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.custom-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 80%;
  margin: 2rem auto;
}



.offer-wrapper {
  display: flex;
  align-items: center;       /* vycentruje text i obrázek */
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-text {
  flex: 1;
  min-width: 280px;
  color: #e0dede;
  padding: 0;
  margin: 0;
}

.offer-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.offer-image img {
  width: 100%;
  height: auto;
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(78, 42, 132, 0.5);
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(211, 143, 201, 0.6);
}


.intro-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2.5rem;
}

.intro-text {
  flex: 2;
  min-width: 300px;
  color: #e0dede;
}

.logo a {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;


}

.logo-icon {
  height: 60px;
  /* finální velikost loga */
  width: auto;
  display: block;
  position: relative;
  top: 4px;
  /* nebo 3px, 4px – podle potřeby */
  opacity: 0.9;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding:20px;
  
  
}

.logo-icon:hover {
  transform: none;
}

.logo-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
}

#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1c;
  color: #ccc;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  z-index: 9999;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  font-family: inherit;
  display: none;
}

#cookie-banner .lang {
  margin-bottom: 0.6rem;
}

#cookie-banner button {
  background-color: #097774;
  color: white;
  border: none;
  padding: 0.4em 1.1em;
  font-size: 0.85rem;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
  margin: 0;
}

#cookie-banner button:hover {
  background-color: #4cf8de;
}

html {
  scroll-behavior: smooth;
}

:focus {
  outline: 2px dashed rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 8px;
}

a:focus img,
img:focus {
  outline: 2px dashed rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 8px;
}


body.mouse-mode .lang-btn:focus,
body.mouse-mode a:focus,
body.mouse-mode button:focus,
body.mouse-mode .zoomable-img:focus {
  outline: none;
}



/* Výchozí outline jen pro klávesnici */
:focus-visible {
  outline: 2px dashed #c499e3;
  outline-offset: 4px;
  border-radius: 8px;
}

/* Skryj outline při ovládání myší */
body.mouse-mode :focus {
  outline: none !important;
}



@media (min-width: 769px) and (max-width: 1130px) {
  .content-block {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}


/* Zmenšíme texty v .hero na menších obrazovkách*/
@media (max-width: 768px) {
  .hero-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-tagline {
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    text-align: center;
  }
}


@media (max-width: 768px) {

  .hero,
  .intro-wrapper,
  .intro-section,
  .content-block,
  .offer-image {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* === MOBILNÍ ZAROVNÁNÍ A ROZTAŽENÍ NA CELOU ŠÍŘKU === */
@media (max-width: 768px) {

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  section,
  .content-block,
  .hero,
  .intro-wrapper,
  .intro-section,
  .offer-wrapper
  {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;

  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}


/* Zarovnání loga vlevo ve footeru na mobilu */
@media (max-width: 768px) {
  .footer-logo {
    display: block;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    max-width: 150px;
    height: auto;
  }
}


/* butonky jazykove mutace */
#langBtn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Hover efekt s gradientem */
#langBtn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  background: linear-gradient(to right, #a8658a, #02d0b4);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 0.4rem 0.6rem;
  border-radius: 15px;
}
#langMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background-color: #1c1c2d;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  list-style: none;
  z-index: 1000;
}

#langMenu li {
  padding: 8px 16px;
}

#langMenu li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

#langMenu li:hover {
  background-color: #2f2f44;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .offer-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .offer-text,
  .offer-image {
    width: 100%;
  }

  .offer-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* pro male mobily */
@media (max-width: 400px) {
  .top-bar {
    padding: 1rem 1rem;
  }
}

/* === DESKTOP (výchozí styl) === */
.language-selector {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  align-items: center;
  max-height: 40px;

  padding-right: 2%;

}


/* === TABLETY A MOBILY do 768px === */
@media (max-width: 768px) {
  .top-bar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    ;
    justify-content: space-between;
    padding: 1rem;
  }


  .logo {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
  }

  .language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    white-space: nowrap;
    margin-left: auto;
  }

  #langBtn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
  }
}

/* === MALE MOBILY do 380px === */

@media (max-width: 380px) {
  .top-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    margin-left: 0 !important;
    /* přepíše auto z větších media */
    background: none;
  }

  #langBtn {
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
    transform: translateY(-2.3px);
  }
}

#langBtn img {
  vertical-align: middle;
  height: 1em;
}

@media (max-width: 1130px) and (min-width: 769px) {
 .top-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center; /* vertikální zarovnání na střed */
    padding: 1rem;
  }

  .main-nav {
    display: flex;
    align-items: center; /* zajistí srovnání s butonem */
    gap: 1rem;
    font-size: 0.9rem;
  }

  .main-nav a {
    padding: 0.2rem 0.4rem;
  }

  .main-nav li {
    margin: 0 0.5rem;
  }

    .language-selector {
    display: flex;
    align-items: center; /* jazykový buton na střed */
    justify-content: flex-end;
    margin-top: 0; 
    width: auto;
  }

  #langBtn {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
    position: relative;
    top: -1px; /* jemné doladění, můžeš upravit na -2px nebo 0 */
  }

  
}


@media (max-width: 768px) {

  h2,
  .content-block h2,
  .features-container h2,
  .offer-wrapper h2,
  .offer-text h2 {
    font-size: 1.2rem;
  }
}




/* Střední obrazovky – zmenšení písma */
@media (max-width: 1024px) {
  #langBtn {
    font-size: 14px;
  }
}

@media (max-width: 850px) {
  #langBtn {
    font-size: 13px;
  }
}

/* Mobil: zachovat vedle sebe */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0.8rem 1rem;
  }

  #langBtn {
    font-size: 12px;
    padding: 0.3rem 0.5rem;
  }
}

/* Grid s technologiemi */
.tech-grid {
  flex: 1 1 50%;
  justify-items: start;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
  margin: 4rem auto 0 auto;
  max-width: 1200px;
  /* stejné zarovnání jako text */
  position: relative;
  overflow: visible !important;
}
/* ≤1024px: 4 sloupce */
@media (max-width: 1024px){
  .tech-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* ≤768px: 2 sloupce (telefony a malé tablety na výšku) */
@media (max-width: 768px){
  .tech-grid{ grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 360px){
  .tech-item img{ width: 36px; }
}

.tech-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
  max-width: 70px;
  width: clamp(40px, 8vw, 70px);
  height: auto;
  filter: grayscale(20%);
  border-radius: 12px;
  display:block;
}



.tech-item img.jump {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
  transform: translateY(-8px) scale(1.1);
}


.tech-item img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.tech-item img[alt="Oracle PL/SQL"] {
  transform: scale(1.5);
}
.tech-name {
   font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: #e2e2e2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tech-name:hover {
  color: #86808f; /* nebo jiná barva, např. tyrkysová */
  transform: scale(1.05);
}

.tech-item::after{
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);              /* víc místa nad ikonou */
  transform: translate(-50%, 4px);        /* start trochu níž (pro animaci) */

  background: rgba(16,18,22,.82);         /* fallback barva */
  color: #fff;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  white-space: nowrap;

  /* hezčí sklo (když prohlížeč umí) */
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);

  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;
}


/* šipka + jemný stín */
.tech-item::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(159, 166, 179, 0.82);
  filter: drop-shadow(0 2px 2px rgba(183, 175, 175, 0.25));
  opacity: 0;
  transition: opacity .18s ease;
  z-index: 9999;
}

/* zobrazení */
.tech-item:hover::after,
.tech-item:focus-within::after{
  opacity: 1;
  transform: translate(-50%, 0);
}
.tech-item:hover::before,
.tech-item:focus-within::before{
  opacity: 1;
}

/* přístupnost/komfort: vypni animace, když je uživatel nechce */
@media (prefers-reduced-motion: reduce){
  .tech-item::after, .tech-item::before{ transition: none; }
}


.content-block + .content-block {
  margin-top: 5rem; /* rovnoměrná mezera mezi sekcemi */

}

@media (max-width: 768px) {
  .content-block {
    padding: 3rem 1.5rem;
  }

  .content-block + .content-block {
    margin-top: 3rem;
  }
}


body {
  font-family: 'Overpass', sans-serif;
}



.service-list {
  list-style: none;          /* odstranění odrážek */
  padding: 0;
  margin: 0;
}

.service-list li {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  
  line-height: 1.5;           /* trochu zmenšeno pro čistší text */
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-list li:hover {
  background: rgba(255, 255, 255, 0.05); /* jemně světlejší při hoveru */
  transform: translateY(-3px);
}



/* zvyraznene pismo v textu */
.highlight {
  color: #fafcfc;
  font-weight: bold;
  font-size: 1.5rem;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 stejné sloupce */
  gap: 2rem;                              /* mezery mezi boxy */
  max-width: 1100px;                      /* šířka sekce */
  margin: 3rem auto 0 auto;               /* centrování sekce */
  padding: 0 2rem;                        /* odsazení od okrajů */
}

.about-boxes .box {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-boxes .box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.about-boxes h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .about-boxes {
    grid-template-columns: 1fr; /* jeden sloupec */
  }
}

.hero-title, .hero-subtitle, .hero-tagline {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-subtitle {
  animation-delay: 0.5s;
}

.hero-tagline {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}



.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden; /* zabrání přesahování */
}


.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.offer-image:hover::after {
  opacity: 1;
}
.tech-item { position: relative; display: grid; place-items: center; }

/*************************jemný “glass” tooltip na tmavém pozadí */



/* ===== Privacy policy(dark theme, basic & neat) ===== */
:root{
  --bg: #0b0f14;
  --ink: #e7eaef;
  --muted: #a9b4c0;
  --card: rgba(239, 202, 202, 0.1);
  --stroke: rgba(255,255,255,.10);
  --accent: #02d0b4;            /* ← změň si dle značky */
}

#about{
 
  color: var(--ink);
  padding-block: clamp(30px, 7vw, 44px);
}

#about .privacy-wrapper{
  max-width: 1100px;
  margin: 0 auto 16px;
  padding-inline: 16px;
  text-align: center;
}
#about .privacy-h1{
  margin: 0;
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: 1.1;
  letter-spacing: .2px;
  margin-bottom: 36px;
  
}

/* cards */
#about .privacy-policy{
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 16px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
#about .privacy{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}

#about .privacy h2{
  margin: 0 0 8px;
  font-size: clamp(18px, 2.4vw, 24px);
  text-wrap: balance;
}
#about .privacy p{
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.65;
}


/* lists */
#about .privacy ul{ margin: 6px 0 8px; padding-left: 1.25em; }
#about .privacy li{ margin: .35em 0; }
#about .privacy li::marker{ color: var(--accent); }

/* vnořený box (práva uživatele apod.) */
#about .entry-privacy{
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(2,208,180,.10);
  border: 1px solid rgba(2,208,180,.25);
}

/* layout: 3 sloupce na desktopu */
@media (min-width: 980px){
  #about .privacy-policy{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}





#about .privacy-h1{
  margin: 0;
  font-size: clamp(28px, 4.6vw, 62px);
  line-height: 1.1;
  letter-spacing: .2px;
  margin-bottom: 36px;
 
  
}
#about a{
  color: #5da5f2;                      /* modrá */
  text-decoration: underline;
  text-underline-offset: .14em;
  text-decoration-thickness: .08em;
}
#about a:hover{ color:#8cc2ff; } 
#about a:visited{ color:#b8a6ff; }      /* volitelné */
#about a:focus-visible{
  outline:2px solid currentColor; outline-offset:3px; border-radius:4px;
}


.u-swoosh{ position:relative; display:inline-block; padding-bottom:.35em; }
.u-swoosh::after{
  content:""; position:absolute; left:0; right:0; bottom:.05em; height:.45em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2 12 Q 25 18 50 12 T 98 12' fill='none' stroke='%2327c18a' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
              no-repeat 0 100% / 100% 100%;
  pointer-events:none;}

@media (max-width:640px){
  #about .privacy{ padding:14px 14px 12px; }
  #about .privacy p{ line-height:1.55; }
}

