/* ----------------------------------------
   CeramicGlass — Base
   ---------------------------------------- */

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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(255, 255, 255, 0.15);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }


/* ----------------------------------------
   Navigation — floating pill
   ---------------------------------------- */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1100px;
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.nav-logo {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  padding: 6px 12px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: default;
}

.nav-link.disabled {
  color: #444;
  cursor: default;
}

a.nav-link {
  cursor: pointer;
}

a.nav-link:hover,
a.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}


/* ----------------------------------------
   Hero (blank)
   ---------------------------------------- */

.hero {
  min-height: 100vh;
}


/* ----------------------------------------
   Podmínky page
   ---------------------------------------- */

.podminky {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.podminky-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.back-link {
  display: inline-block;
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.back-link:hover {
  color: #fff;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 16px;
  color: #888;
  margin-bottom: 32px;
}

/* Anchor nav */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  margin-bottom: 56px;
}

.anchor-nav a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}
.anchor-nav a:hover {
  color: #fff;
}

.anchor-dot {
  color: #444;
  user-select: none;
}

/* Legal sections */
.legal-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ccc;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-section h3:first-of-type {
  margin-top: 0;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #999;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 8px 0 16px 0;
  padding-left: 20px;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.8;
  color: #999;
  margin-bottom: 4px;
}

.legal-section li strong {
  color: #ccc;
}

.legal-section a {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #555;
  transition: text-decoration-color 0.2s;
}
.legal-section a:hover {
  text-decoration-color: #fff;
}

/* Info grid (provozovatel) */
.info-grid {
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #111;
}

.info-row + .info-row {
  border-top: 1px solid #1a1a1a;
}

.info-label {
  font-size: 14px;
  color: #555;
  flex-shrink: 0;
}

.info-value {
  font-size: 14px;
  color: #888;
  text-align: right;
}

.note {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.note a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.podminky-footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid #222;
}

.podminky-footer p {
  font-size: 13px;
  color: #444;
}


/* ----------------------------------------
   Mobile
   ---------------------------------------- */

@media (max-width: 900px) {
  .nav {
    border-radius: 20px;
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 16px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 15px;
    padding: 10px 12px;
    width: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .podminky {
    padding-top: 80px;
  }

  .page-title {
    font-size: 28px;
  }

  .anchor-nav {
    gap: 4px;
    padding: 12px 16px;
  }

  .anchor-nav a {
    font-size: 13px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .info-value {
    text-align: left;
  }
}
