@charset "utf-8";
/* CSS Document */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
	font-family: "Jost", serif;
    -webkit-font-smoothing: subpixel-antialiased;
	font-size: 1rem;
	color: #fff;
}
a, button, i {
	color: inherit;
}
i {
	display: inline-flex;
}
body {
	min-height: 100vh;
	height: 100%;
	background-color: #0E0D0A;
}
/* Standardowe rozmiary czcionek i wysokości linii */
.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.text-base {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}

.text-5xl, .hero-heading {
    font-size: 3rem; /* 48px */
    line-height: 3.25rem; /* 56px */
}

.text-6xl {
    font-size: 3.75rem; /* 60px */
    line-height: 4.25rem; /* 68px */
}

.text-7xl {
    font-size: 4.5rem; /* 72px */
    line-height: 5rem; /* 80px */
}

.text-8xl {
    font-size: 6rem; /* 96px */
    line-height: 6.5rem; /* 104px */
}

.text-9xl {
    font-size: 8rem; /* 128px */
    line-height: 8.5rem; /* 136px */
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-btn.accept {
  background: #4CAF50;
  color: white;
}

.cookie-btn.reject {
  background: #f44336;
  color: white;
}