@charset "UTF-8";
@import "../vendor/@fortawesome/fontawesome-free/css/all.min-DZawqem.css";
:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-mono-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-mono-500-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/playfair-display-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/syne-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif-display-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-serif-display-italic-latin.woff2") format("woff2");
}
:root {
  --h: 64px;
  --nav-accent: #F5A623;
  --radius: 12px;
  --nav-bg: rgba(12, 10, 9, 0.85);
  --nav-border: rgba(255, 255, 255, 0.06);
  --nav-text: #FAFAF9;
  --dropdown-bg: #1C1917;
  --dropdown-item-hover: #292524;
  --brand-name-color: #FAFAF9;
  --nav-item-color: #A8A29E;
  --biz-trigger-color: #A8A29E;
  --biz-trigger-hover: #FAFAF9;
}

/* ── Navbar ── */
.main-navbar {
  height: var(--h);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
}
.page-home .main-navbar, .page-hero-image .main-navbar {
  background: rgba(12, 10, 9, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--h);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ── */
.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 38px;
  height: 38px;
}
.logo svg {
  width: 100%;
  height: 100%;
}

.nav-logo--dark {
  display: none;
}

.page-landing .nav-logo--light {
  display: none;
}

.page-landing .nav-logo--dark {
  display: block;
}

/* Stats page keeps the light (white text) logo */
.page-stats .nav-logo--light {
  display: block;
}

.page-stats .nav-logo--dark {
  display: none;
}

.brand-name {
  color: var(--brand-name-color);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* ── Nav left / right ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Menu items ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-item {
  text-decoration: none;
  color: var(--nav-item-color);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-link-item i {
  font-size: 13px;
  opacity: 0.7;
}
.nav-link-item:hover {
  color: var(--nav-text);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link-item.active {
  color: #F5A623;
  background: rgba(245, 166, 35, 0.08);
}

/* ── Map pill (kept for backward compat but restyled) ── */
.nav-pill-map {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.08);
  color: #F5A623;
  padding: 4px 14px 4px 4px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 166, 35, 0.15);
}

.pill-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #E8850A, #F5A623);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.nav-pill-map:hover {
  transform: translateY(-1px);
  background: rgba(245, 166, 35, 0.14);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.15);
}

/* ── Business trigger ── */
.business-group {
  position: relative;
  display: inline-block;
}

.business-trigger {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--biz-trigger-color);
  padding: 7px 14px;
  border-radius: 10px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  letter-spacing: -0.01em;
}
.business-trigger .desktop-only-icon {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.business-trigger:hover {
  color: var(--biz-trigger-hover);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.business-trigger:hover .desktop-only-icon {
  opacity: 0.8;
}

/* ── Dropdown ── */
.business-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 270px;
  background: var(--dropdown-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 20px 50px -4px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  z-index: 3000;
}

.business-dropdown.show {
  display: flex !important;
  animation: bizDropIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bizDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Dropdown header */
.business-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06), rgba(245, 166, 35, 0.02));
}
.business-dropdown-header .biz-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E8850A, #F5A623);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.3);
}
.business-dropdown-header strong {
  display: block;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FAFAF9;
  line-height: 1.3;
}
.business-dropdown-header small {
  display: block;
  font-size: 12px;
  color: #78716C;
  line-height: 1.3;
  margin-top: 1px;
}

/* Dropdown links */
.business-dropdown-links {
  padding: 6px;
}

.business-dropdown-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: #A8A29E;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.business-dropdown-links a .biz-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #78716C;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.business-dropdown-links a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #FAFAF9;
}
.business-dropdown-links a:hover .biz-link-icon {
  background: rgba(245, 166, 35, 0.12);
  color: #F5A623;
}

/* ── Theme button ── */
.theme-btn {
  background: transparent;
  border: 1px solid var(--nav-border);
  color: var(--nav-text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

.mobile-only-icon {
  display: none;
}

/* ── Mobile ── */
@media (max-width: 575px) {
  .nav-container {
    padding: 8px 16px;
    justify-content: space-between;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-left {
    gap: 12px;
  }
  .nav-menu {
    gap: 2px;
  }
  .nav-link-item {
    padding: 6px 8px;
    font-size: 13px;
  }
  .nav-link-item span {
    display: none;
  }
  .nav-pill-map span {
    display: none;
  }
  .nav-pill-map {
    padding: 0px !important;
    justify-content: center;
  }
  .business-text,
  .desktop-only-icon {
    display: none;
  }
  .mobile-only-icon {
    display: inline-block;
    font-size: 1rem;
  }
  .business-trigger {
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.06);
    border-color: rgba(245, 166, 35, 0.12);
  }
  .business-dropdown {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    width: auto;
  }
}
.alert {
  border: none;
  border-left: 4px solid; /* Dodaje stylowy pasek z boku */
}

.alert-success {
  border-left-color: #198754;
}

.alert-danger {
  border-left-color: #dc3545;
}

.alert-info {
  border-left-color: #0dcaf0;
}

/* Opcjonalnie: auto-ukrywanie po 5 sekundach */
.alert {
  animation: fadeOut 0.5s forwards;
  animation-delay: 5s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.toast {
  backdrop-filter: blur(8px);
  background-opacity: 0.9;
  border-radius: 12px;
  min-width: 300px;
  pointer-events: auto;
  opacity: 1 !important;
}

.toast-container {
  margin-top: 1rem;
  z-index: 9999 !important;
  pointer-events: none;
  max-width: 400px;
}

.custom-toast {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Kolorystyka i ikony */
.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Success */
.toast-success .icon-wrapper {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.toast-success {
  border-left: 5px solid #28a745 !important;
}

/* Error */
.toast-error .icon-wrapper {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.toast-error {
  border-left: 5px solid #dc3545 !important;
}

/* Info */
.toast-info .icon-wrapper {
  background-color: rgba(13, 110, 253, 0.1);
  color: #2563eb;
}

.toast-info {
  border-left: 5px solid #2563eb !important;
}

/* Tekst */
.message-wrapper strong {
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Animacja paska postępu */
.progress-success::after {
  background-color: #28a745;
}

.progress-error::after {
  background-color: #dc3545;
}

.progress-info::after {
  background-color: #2563eb;
}

.toast-progress {
  height: 3px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  left: 0;
}

.toast-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  /* Czas animacji MUSI być taki sam jak delay w JS (5s) */
  animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.footer {
  background-color: #09090B;
  padding: 56px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 576px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .footer__brand {
    grid-column: 1/-1;
    max-width: 480px;
  }
}
.footer__brand .brand__logo {
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #FAFAFA;
}
.footer__brand .brand__logo .brand-name {
  color: #ffffff;
}
.footer__brand .brand__description {
  color: #A1A1AA;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem;
}
.footer__socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #A1A1AA;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer__socials .social-icon:hover {
  background-color: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.2);
  color: #F5A623;
  transform: translateY(-2px);
}
.footer__section h4 {
  color: #FAFAFA;
  margin-bottom: 1.2rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__section ul li {
  margin-bottom: 0.75rem;
}
.footer__section ul li a {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer__section ul li a:hover {
  color: #F5A623;
}
.footer__bottom {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom .bottom__copyright {
  color: #78716C;
  font-size: 0.82rem;
}
.footer__bottom .bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.footer__bottom .bottom__links a {
  color: #78716C;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom .bottom__links a:hover {
  color: #A1A1AA;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #A8A29E;
  font-size: 0.78rem;
  font-weight: 500;
}
.trust-badge i {
  color: #F5A623;
  font-size: 0.72rem;
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card);
  border-top: 1px solid var(--border-inactive);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.consent-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.8125rem;
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}
.consent-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.consent-banner__text a:hover {
  opacity: 0.8;
}
.consent-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.consent-banner__btn {
  padding: 0.375rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s ease;
  line-height: 1.5;
}
.consent-banner__btn:hover {
  opacity: 0.82;
}
.consent-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}
.consent-banner__btn--deny {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-inactive);
}
@media (max-width: 480px) {
  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .consent-banner__actions {
    align-self: flex-end;
  }
}

html, body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

@supports (-webkit-touch-callout: none) {
  input, select, textarea {
    font-size: max(16px, 1em) !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg) !important;
  color: var(--text);
  margin: 0;
  transition: background 0.3s ease;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/*# sourceMappingURL=app.output.css.map */
