/* ================= FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --blue-main: #011add;
  --text-main: #ffffff;
  --text-soft: #cfd8ff;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  color: var(--text-main);
  background:
    radial-gradient(circle at center,
      #142b88 0%,
      #061634 55%,
      #02040a 100%);
}

/* ================= LOGO SLOT ================= */
.logo-slot {
  position: absolute;
  top: 45px;
  left: 28%;
  transform: translateX(-40%);

  width: 400px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  z-index: 5;
}
.logo-slot img {
  width: 360px;
  max-width: 75%;
  height: auto;
  object-fit: contain;

  /* jemné zvýraznění bílého loga */
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.logo-slot:hover {
  background: rgba(255,255,255,0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* ================= TOP BAR ================= */
.top-bar {
  width: 100%;
  height: 120px;
  background: linear-gradient(to right,#061634,#011add,#061634);
  position: relative;
  z-index: 1;
}

/* ================= HERO ================= */
.hero {
  max-width: 1440px;
  margin: auto;
  padding: 160px 40px 120px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.hero-text h1 {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.02em;

  color: #ffffff;
  text-shadow:
    0 4px 18px rgba(0,0,0,0.45),
    0 0 20px rgba(1,26,221,0.35);
}

.hero-text h1 span {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: #e9edff;
  margin-top: 18px;
  display: block;
}
.hero-text {
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(1,26,221,0.18),
    transparent 70%
  );
  z-index: -1;
}

/* ================= MENU – SPOJENÉ ================= */
.hero-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-menu a {
  padding: 18px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: 0.3s ease;
}

.hero-menu a:last-child {
  border-bottom: none;
}

.hero-menu a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  width: 36px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #fff;
  margin: 7px 0;
  display: block;
}


/* ================= SECTIONS ================= */
.section {
  max-width: 1440px;
  margin: auto;
  padding: 80px 40px;
}

.section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-main);
  margin-bottom: 46px;
}

/* skrýt „Služby“ nad boxy */
#sluzby > h2 {
  display: none;
}

/* ================= GLASS DIVIDERS ================= */
.section-divider {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right,transparent,rgba(255,255,255,0.25),transparent);
  opacity: 0.6;
}

.divider-vertical {
  width: 1px;
  background: linear-gradient(to bottom,transparent,rgba(255,255,255,0.25),transparent);
}

/* ================= TEXT ================= */
.text-block {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-soft);
}

.text-block p {
  margin-bottom: 28px;
}

/* ================= BOXY – SPOJENÉ ================= */
.boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.box {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  padding: 50px 34px;
  min-height: 320px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.box:first-child { border-radius: 22px 0 0 22px; }
.box:last-child  { border-radius: 0 22px 22px 0; }

.box:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.22);
}

.icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.box h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.box-text {
  opacity: 1;
}
.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.box:hover .icon {
  transform: scale(1.12);

  background: rgba(255,255,255,0.22);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.6),
    0 0 30px rgba(255,255,255,0.45),
    0 12px 40px rgba(0,0,0,0.45);
}

/* ================= NADPISY BOXŮ ================= */
.box h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 12px auto 0;

  border-radius: 6px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(1,26,221,0.85),
    transparent
  );

  box-shadow:
    0 0 12px rgba(1,26,221,0.65);
}
.box h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 700;

  color: #ffffff;                 /* ⬅ ČITELNOST */
  letter-spacing: 0.3px;

  text-shadow:
    0 1px 2px rgba(0,0,0,0.45);
}

/* ================= GLASS ROZDĚLOVAČE ================= */
.section-divider {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
}

/* ================= SLUŽBY DETAIL – VEDLE SEBE ================= */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 40px;
  align-items: start;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.service-header h2 {
  font-size: 38px;
  margin: 0;
}

.service-icon {
  font-size: 42px;
}

/* ================= GALERIE ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery .img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.35s ease;
}

.gallery .img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* ================= PARTNEŘI ================= */
.partners {
  padding: 60px 40px;
  background: rgba(1,26,221,0.18);
}

.partners-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
}

.partners-inner img {
  max-height: 48px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.partners-inner img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ================= KONTAKT ================= */
.contact {
  background: rgba(1,26,221,0.35);
  backdrop-filter: blur(16px);
}

.contact-inner {
  max-width: 1440px;
  margin: auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1.2fr 40px 2fr 40px 1.4fr;
  gap: 40px;
}

/* MAPA VĚTŠÍ */
.map {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  border: none;
}

/* FORMULÁŘ – MODERNÍ */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  margin-bottom: 16px;
}

.contact-form button {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg,#011add,#2b4bff);
  border: none;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

/* ================= COOKIE ================= */
#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(1,26,221,0.9);
  padding: 16px 24px;
  border-radius: 16px;
  display: none;
  z-index: 9999;
}

.glass-icon {
  border-radius: 50%;
}
.glass-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.18),
    0 10px 30px rgba(0,0,0,0.35);
}

.glass-icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.35));
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .boxes { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .divider-vertical { display: none; }
}

@media (max-width: 900px) {
  .logo-slot { display: none; }
  .hero-wrap { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}