*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #d32f2f;
  --red-dark: #8b0000;
  --black: #0e0e0e;
  --off-black: #161616;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(211, 47, 47, 0.3);
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--red);
}
.nav-logo img {
    height: 3rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--red-dark);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 2.5rem 0rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(211, 47, 47, 0.08) 0%,
      transparent 50%
    ),
    var(--black);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(211, 47, 47, 0.04) 40px,
    rgba(211, 47, 47, 0.04) 41px
  );
}

.hero-kiwior {
  position: absolute;
  right: -0.02em;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.hero-kiwior img {
  height: 100%;
}

.hero-content {
  position: relative;
  max-width: 680px;
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(2px);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-badges {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.hero-badge-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* SECTIONS */
section {
  padding: 5rem 2.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

/* OFERTA */
#oferta {
  background: var(--off-black);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.06);
}

.offer-card {
  background: var(--off-black);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.offer-card:hover {
  background: #1c1c1c;
}

.offer-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  line-height: 1;
}

.offer-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.offer-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.offer-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.35s ease;
}
.offer-card:hover .offer-card-accent {
  width: 100%;
}

/* WARTOSCI */
#wartosci {
  background: var(--black);
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.values-list {
  list-style: none;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.values-list li:last-child {
  border-bottom: none;
}

.value-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.value-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.value-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.values-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.ring-graphic {
  position: relative;
  width: 260px;
  height: 260px;
}

.ring-circle {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(211, 47, 47, 0.3);
  border-radius: 50%;
}
.ring-circle:nth-child(2) {
  inset: 20px;
  border-color: rgba(211, 47, 47, 0.5);
}
.ring-circle:nth-child(3) {
  inset: 40px;
  border-color: rgba(211, 47, 47, 0.7);
  background: rgba(211, 47, 47, 0.06);
}

.ring-inner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--red);
}
.ring-small {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* GRAFIK */
#grafik {
  background: var(--off-black);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.05);
}

.schedule-day {
  background: var(--off-black);
  padding: 1.8rem 1.5rem;
}

.day-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 1rem;
}

.day-slot {
  margin-bottom: 0.6rem;
}
.slot-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.slot-group {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* KONTAKT */
#kontakt {
  background: var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info {
  list-style: none;
}
.contact-info li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.info-value a {
  color: var(--white);
  text-decoration: none;
}
.info-value a:hover {
  color: var(--red);
}

.map-wrapper {
  position: relative;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--red);
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.map-overlay:hover {
  background: rgba(14, 14, 14, 0.97);
}

.map-pin {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
  position: relative;
}
.map-pin::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: #161616;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-address {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.map-city {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}
.map-hint {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* CTA */
.cta-strip {
  background: var(--red);
  padding: 4rem 2.5rem;
  text-align: center;
}
.cta-strip h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
}

/* FOOTER */
footer {
  background: #080808;
  padding: 2rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-logo span {
  color: var(--red);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 3.5rem 1.2rem;
  }
  .hero {
    padding: 6rem 1.2rem 3rem;
  }
  .values-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-visual {
    height: auto;
    padding: 2rem 0;
  }
  .hero-badges {
    gap: 1.5rem;
  }
  .cta-strip {
    padding: 3rem 1.2rem;
  }
  footer {
    padding: 1.5rem 1.2rem;
    flex-direction: column;
    text-align: center;
  }
}
