/* ===========================
   FONT
   =========================== */

@font-face {
  font-family: 'Satoshi-Regular';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff'),
       url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   RESET + GLOBAL
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi-Regular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #0d0d0d;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi-Regular', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

h1 { font-size: 64px; line-height: 1.1; }
h2 { font-size: 48px; line-height: 1.2; }
h3 { font-size: 32px; line-height: 1.3; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; opacity: 0.8; }

p {
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
}

/* ===========================
   LINKS
   =========================== */

a {
  color: #c9a86a;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: #e6c98a;
}

/* ===========================
   BUTTONS
   =========================== */

.btn,
.btn-orange,
.btn-blue,
.login {
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn {
  background-color: rgb(244, 128, 0);
  color: #0d0d0d;
}

.btn:hover {
  background-color: rgb(255, 145, 20);
}

.btn-blue {
  background-color: rgb(0, 137, 225);
  color: #ffffff;
}

.btn-blue:hover {
  background-color: rgb(20, 155, 240);
}

.btn-orange {
  background-color: rgb(244, 128, 0);
  color: #0d0d0d;
}

.btn-orange:hover {
  background-color: rgb(255, 145, 20);
}

.login {
  background-color: rgb(0, 137, 225);
  color: #ffffff;
}

.login:hover {
  background-color: rgb(20, 155, 240);
}


.legal.section p {
    margin-bottom: 22px;
}

.legal.section h3 {
    margin-top: 48px;
    margin-bottom: 18px;
}

.legal.section h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal.section ul {
    margin-bottom: 28px;
}

.legal.section li {
    margin-bottom: 10px;
}

.form-success {
    display: none !important;
}

.error-box {
    background: #ffebe8;
    border: 1px solid #dd3c10;
    color: #a40000;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
}

.filter-reset {
  margin-top: 24px;   /* odstęp od ostatniego filtra */
  text-align: left;   /* wyrównanie do lewej */
}

.no-results {
  margin-top: 32px;
  font-size: 18px;
  color: #ccc;       /* jasnoszary, pasujący do dark theme */
  text-align: center;
}

