/* ——— Shared chrome styles (navbar + footer) ——— */

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

@font-face {
  font-family: "Glee Finder CZ";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local("Glee Finder CZ"),
    local("GleeFinderCZ"),
    url("/landing/fonts/GleeFinderCZ.woff2") format("woff2");
}

:root {
  --c-cream: #ede6c3;
  --c-orange: #f49c47;
  --c-yellow-btn: #ffef9e;
  --c-btn-text: #000000;
  --c-header-bg: rgba(12, 16, 20, 0.8);
  --c-footer-bg: #000000;
  --font-display: "Glee Finder CZ", system-ui, sans-serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --font-button: "Roboto", system-ui, sans-serif;
  --chrome-container: 1290px;
  --chrome-pad-x: clamp(20px, 4vw, 50px);
  --pad-x: clamp(20px, 4vw, 50px);
}

/* ——— Navbar ——— */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.25s ease;
}

.navbar.is-scrolled {
  background-color: var(--c-header-bg);
}

.navbar-inner {
  width: 100%;
  max-width: var(--chrome-container);
  height: 100%;
  padding: 0 var(--chrome-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-nav svg {
  display: block;
  width: auto;
  height: 56px;
}

.nav-links {
  display: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--c-cream);
  gap: 60px;
  align-items: center;
}

.nav-links a {
  color: var(--c-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--c-orange);
}

.nav-mobile-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 1000px) {
  .nav-links {
    display: flex;
  }

  .nav-mobile-toggle {
    display: contents;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: var(--c-yellow-btn);
  color: var(--c-btn-text);
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
  padding: 0 30px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  background: var(--c-cream);
  color: var(--c-btn-text);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn--sm {
  min-height: 34px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
}

.btn .icon-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn .icon-arrow path {
  stroke: currentColor;
}

.icon-arrow {
  width: 24px;
  height: 24px;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--c-footer-bg);
}

.site-footer__bar {
  max-width: var(--chrome-container);
  margin: 0 auto;
  padding: 25px var(--chrome-pad-x) 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 32px;
}

.site-footer__copy {
  margin: 0;
  grid-column: 1;
  justify-self: start;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-cream);
  text-align: left;
}

.site-footer__nav {
  grid-column: 2;
  justify-self: end;
}

.site-footer__icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 24px;
  row-gap: 8px;
}

.site-footer__icon-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__icon-list a:hover {
  color: var(--c-orange);
}

.site-footer__ico {
  display: inline-flex;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--c-orange);
}

.site-footer__ico svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer__link-text {
  text-decoration: none;
}

@media (max-width: 689.98px) {
  .site-footer__bar {
    grid-template-columns: 1fr;
  }

  .site-footer__copy,
  .site-footer__nav {
    grid-column: 1;
    justify-self: start;
  }

  .site-footer__icon-list {
    justify-content: flex-start;
    column-gap: 20px;
    row-gap: 12px;
  }
}
