/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;600&family=Raleway:wght@400&display=swap');

/* =========================
   RESET / GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 95px;
  font-family: 'Poppins', sans-serif;
  background: #fff8f2;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: #3f49ac;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.carousel-btn:focus-visible {
  outline-color: #ffdd3f;
}

/* =========================
   HEADER
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 60px;
  background: #ff5c3c;
  color: white;

  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 90%;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffdd3f;
  border-radius: 2px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

/* =========================
   NAVIGATION
========================= */
nav {
  display: flex;
  gap: 50px;
}

nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

nav a:hover {
  color: #ffdd3f;
}

nav a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================
   HEADER RIGHT
========================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.phone,
.fb {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.fb {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1877f2;
  border-radius: 50%;
  color: #fff;
}

.fb svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.phone:hover,
.fb:hover {
  color: #fff;
}

.fb:hover {
  background: #0f63d2;
  transform: translateY(-1px);
}

/* =========================
   INTRO
========================= */
.intro {
  margin-top: 48px;
  text-align: center;
  padding: 28px 16px;
}

.intro h1 {
  font-size: 40px;
  color: #3f49ac;
  margin: 0;
}

.intro p {
  margin-top: 10px;
  font-size: 15px;
  color: #3f49ac;
  font-family: 'Raleway', sans-serif;
}

.intro-desc {
  max-width: 880px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.85;
}

/* =========================
   ATRAKCJE
========================= */
.attractions {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 60px;
}

.attraction {
  text-align: center;
}

.attraction h2 {
  margin-top: 20px;
  font-size: 28px;
  color: #3f49ac;
}

.attraction p {
  color: #3f49ac;
  font-family: 'Raleway', sans-serif;
}

.attraction p strong {
  color: #3f49ac;
  font-size: 18px;
}

/* =========================
   SLIDER
========================= */
.slider {
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slides img {
  width: 100%;
  max-width: 300px;
  height: 220px;
  margin-right: 20px;
  flex-shrink: 0;

  object-fit: cover;
  border-radius: 10px;
}
.track{
  display:flex;
  transition:transform 0.6s ease;
}

.track img{
  width:100%;
  height:280px;
  flex-shrink:0;
  object-fit:cover;
}
/* =========================
   PRODUCT CARD
========================= */
.product-card {
  display: flex;
  gap: 40px;

  background: #ffdfcb;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #ffd2b6;
  box-shadow: 0 10px 24px rgba(63, 73, 172, 0.14);

  align-items: center;
}

.product-slider {
  width: 50%;
  height: 280px;
  overflow: hidden;
  border-radius: 15px;
}

.product-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.product-content {
  width: 50%;
}

.product-content h2 {
  margin: 0;
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #3f49ac;
}

.desc {
  margin-top: 15px;
  font-family: 'Raleway', sans-serif;
  color: #3f49ac;
  line-height: 1.6;
}

.specs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #3f49ac;
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 60px;
  padding: 10px 16px;
  text-align: center;

  background: #8f2916;
  color: #fff;
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* =========================
   CAROUSEL (PRO)
========================= */

.carousel {
  position: relative;
  width: 50%;
  padding: 0 42px;
  border-radius: 15px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  gap: 15px; /* odstęp między zdjęciami */
  transition: transform 0.6s ease;
}

.carousel-slide {
  flex: 0 0 calc(50% - 8px); /* 2 zdjęcia obok siebie */
  height: 380px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffdfcb;
  border-radius: 12px;
}
/* BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.4);
  color: white;
  border: none;

  font-size: 28px;
  padding: 8px 14px;

  cursor: pointer;
  border-radius: 10px;

  transition: 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

@media (max-width: 992px) {
  body {
    padding-top: 150px;
  }

  header {
    height: auto;
    min-height: 150px;
    padding: 12px 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo img {
    height: 90px;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .intro {
    margin-top: 20px;
    padding: 30px 16px;
  }

  .intro h1 {
    font-size: 38px;
  }

  .attractions {
    padding: 20px 16px 30px;
    gap: 24px;
  }

  .product-card {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .carousel,
  .product-content {
    width: 100%;
  }

  .carousel {
    padding: 0 36px;
  }

  .carousel-slide {
    height: 300px;
  }

  .product-content h2 {
    font-size: 26px;
  }

  .desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .specs {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 130px;
  }

  header {
    min-height: 130px;
    padding: 10px 16px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "right right";
    gap: 8px 10px;
    align-items: center;
  }

  .logo {
    grid-area: logo;
  }

  .logo img {
    height: 72px;
  }

  .menu-toggle {
    grid-area: toggle;
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #ff5c3c;
    padding: 6px 0;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
  }

  header.menu-open nav {
    display: flex;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }

  .header-right {
    grid-area: right;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .phone {
    order: 2;
    font-size: 16px;
    color: #fff;
  }

  .fb {
    order: 1;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 124px;
  }

  .logo img {
    height: 64px;
  }

  .phone {
    gap: 6px;
    font-size: 15px;
    color: #fff;
  }

  .carousel {
    padding: 0 30px;
  }

  .carousel-slide {
    flex: 0 0 100%;
    height: 260px;
  }

  .carousel-btn {
    font-size: 22px;
    padding: 6px 10px;
  }

  .product-card {
    padding: 16px;
    border-radius: 16px;
  }

  .product-content h2 {
    font-size: 22px;
  }

  .footer {
    padding: 8px 12px;
  }

  .footer p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}