@import url('fonts.css');

/* Czcionki ładowane z fonts.css */

:root {
  --bg: #0a0a0a;
  --bg-alt: #1a1a1a;
  --primary: #c9a961;
  --primary-dark: #a88a4d;
  --accent: #d4c5a0;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --border-soft: #2a2a2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../img/tlo.png');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 3.8rem 0;
}

h1, h2, h3 {
  font-family: 'Cormorant', serif;
  color: var(--text);
  font-weight: 400;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  display: block;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
}

.logo-text {
  font-size: 0.95rem;
}

.main-nav ul {
  display: flex;
  gap: 1.7rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.3rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}


.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.6vw + 1.2rem, 2.8rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}


.pricing h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 2vw + 1rem, 2rem);
}

.pricing-intro {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pricing-intro h2 {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.8rem);
  margin-bottom: 1rem;
}

.pricing-intro p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: left;
}

.pricing-intro strong {
  color: var(--primary);
}

.pricing-highlight {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
}

.rate-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(201, 184, 150, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.2);
  max-width: 28rem;
  width: 100%;
}

.rate-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.rate-amount {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1rem 0;
  font-family: 'Cormorant', serif;
}

.rate-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.pricing-details {
  margin: 2.5rem 0 3rem;
}

.pricing-details h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.8rem);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.1rem;
  background: var(--bg-alt);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.price-table thead {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.15), rgba(201, 184, 150, 0.12));
}

.price-table th,
.price-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
}

.price-table th {
  font-weight: 600;
  text-align: left;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:nth-child(odd) {
  background: rgba(26, 26, 26, 0.5);
}

.price-table tbody tr:nth-child(even) {
  background: rgba(10, 10, 10, 0.5);
}

.price-table td:first-child {
  width: 35%;
  color: var(--accent);
}

.price-table td:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.services-section {
  margin: 2.5rem 0;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(201, 184, 150, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 4rem auto 0;
  max-width: 50rem;
  text-align: center;
}

.guarantee-box h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.guarantee-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.guarantee-box p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  padding: 2rem 0 1.5rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(201, 184, 150, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0a0a0a;
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.3);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.btn.outline {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--text);
}

.btn.outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}

.pricing-note {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 40rem;
  margin-top: 0.5rem;
}


.site-footer {
  background: #000000;
  color: #f5f5f5;
  padding: 2.4rem 0 1.6rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: flex-start;
}

.footer-contact h3,
.footer-social h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-weight: 300;
}

.footer-contact p,
.footer-social a {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
}

.footer-social ul {
  list-style: none;
}

.footer-social li + li {
  margin-top: 0.25rem;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.5);
  align-self: flex-end;
}

.footer-copy .footer-author {
  font-size: 0.75rem;
  margin-left: 0.75rem;
  color: rgba(245, 245, 245, 0.6);
}


@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .rate-card {
    padding: 2rem 1.5rem;
  }

  .rate-amount {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.3rem;
  }

  .price-table td:first-child {
    width: 40%;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.7rem 0;
  }

  .main-nav {
    position: absolute;
    inset: 62px 0 auto;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.8rem 1.5rem 1.2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .pricing-intro {
    font-size: 0.95rem;
  }

  .rate-card {
    padding: 1.8rem 1.2rem;
  }

  .rate-amount {
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .price-table td {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
  }

  .price-table td:first-child {
    width: auto;
    display: block;
    padding-bottom: 0.4rem;
  }

  .price-table td:last-child {
    display: block;
    padding-top: 0;
  }

  .guarantee-box {
    padding: 1.8rem 1.2rem;
  }

  .guarantee-box h3 {
    font-size: 1.3rem;
  }

  .guarantee-box p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-box {
    padding: 2rem 1.2rem;
  }

  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}
