:target {
  scroll-margin-top: 30px;
}
html, body {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: #0d051a;
  color: #fff;
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a112b;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  gap: 40px;

}

.nav-left, .nav-right {
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-left a:hover,.nav-right a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-logo img {
  max-height: 65px;

}
@media (max-width: 767px) {
  .navbar {
    display: none;
  }
  }
.btn.gradient {
  background: linear-gradient(45deg, #ff00d4, #ff9100);
  color: white;
}

/* === HERO SEKCJA === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-logo {
  max-width: 400px;
  width: 80%;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.hero-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s;
}

.hero-buttons .btn.transparent {
  background-color: transparent;
  border: 2px solid #00f0ff;
  color: white;
  box-shadow: 0 0 8px #00f0ff, 0 0 16px #00f0ff, 0 0 24px #00f0ff;
  text-shadow: none;
}

.hero-buttons .btn.transparent:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #00f0ff;
}

/* === UPGRADE SEKCJA === */
.upgrade-section {
  background: linear-gradient(to right, #0d051a, #110820);
  color: white;
  text-align: center;
  padding: 60px 20px;
  overflow: visible;
}

.upgrade-section h2 {
  font-family: 'Impact', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.upgrade-box {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #00f0ff;
  border-radius: 10px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.upgrade-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00f0ff;
}

.upgrade-box .icon {
  font-size: 36px;
  color: #00f0ff;
  margin-bottom: 15px;
}

.upgrade-box h3 {
  font-family: 'Impact', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.upgrade-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
}
.map-section {
  background-image: url('../img/bckgrnd.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20px;
  color: white;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  backdrop-filter: blur(10px);
}

.map-box {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 600px;
  border: 3px solid #ff00d4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 30px #ff00d4;
}

.map-info {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: left;
}

.map-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.map-info p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.map-info .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(45deg, #ff00d4, #ff9100);
  color: white;
  transition: transform 0.2s;
}

.map-info .btn:hover {
  transform: scale(1.05);
}



footer {
  background-color: #0d051a;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #999;
}

@media screen and (max-width: 767px) {
  .map-section {
    background-attachment: scroll !important;
  }
}
/* === MOBILE NAVBAR === */
.mobile-navbar {
  display: none;
}

@media (max-width: 767px) {
  .navbar {
    display: none;
  }

  .mobile-navbar {
    display: block;
    background-color: #1a112b;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 50px;
  }

  .burger {
    font-size: 30px;
    cursor: pointer;
    color: white;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    animation: slideDown 0.5s ease forwards;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 12px;
    margin: 5px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }

  .mobile-menu a:nth-child(1) { background-color: #00e0ff; }
  .mobile-menu a:nth-child(2) { background-color: #ff00d4; }
  .mobile-menu a:nth-child(3) { background-color: #ff9100; }
  .mobile-menu a:nth-child(4) {
    background: linear-gradient(45deg, #ff00d4, #ff9100);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
.sub-upgrade-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.sub-upgrade-section {
  display: flex;
  overflow-x: auto;                   /* Scroll poziomy */
  gap: 30px;
  margin-top: 30px;
  padding: 15px;
  scroll-snap-type: x mandatory;
  padding-left: calc(50% - 138px);
  padding-right: calc(50% - 138px);
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  align-items: center;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;


}

.sub-upgrade-section::-webkit-scrollbar {
  height: 10px;
}
.sub-upgrade-section::-webkit-scrollbar-thumb {
  background-color: #00f0ff;
  border-radius: 5px;
}
.sub-upgrade-section {
  overflow-x: auto;
}

/* DOMYŚLNIE (desktop): brak ghostów po bokach */
.sub-upgrade-section::before,
.sub-upgrade-section::after {
  content: none;
}

/* MOBILE: dołóż „luz” po bokach, żeby 1/ostatni kafel mógł być na środku */
@media (max-width: 767px) {
  .sub-upgrade-section {
    /* zostaje overflow-x:auto, scroll-snap już masz */
  }
  .sub-upgrade-section::before,
  .sub-upgrade-section::after {
    content: "";
    flex: 0 0 50%;  /* rezerwuje pół widoku z lewej/prawej */
  }
  .sub-upgrade-box {
    scroll-snap-align: center; /* każdy kafel centruje się przy zatrzymaniu */
  }
}

.sub-upgrade-box {
  min-width: 275px;
  max-width: 276px;
  height: 220px; /* zwiększona wysokość żeby tekst miał miejsce */
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #ff00d4;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔹 rozdziela górę i dół */
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
}

.sub-icon {
  font-size: 36px;
  color: #00f0ff;
  margin-bottom: 10px;
}

.sub-text {
  font-family: 'Impact', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.sub-desc {
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
  text-align: center;
  flex: 1; /* 🔹 zajmuje resztę miejsca pomiędzy nagłówkiem a ceną */
}

.sub-price {
  font-size: 15px;
  color: #ccc;

}


.sub-upgrade-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #ff00d4;
}


/* Animacje */
.slide-in {
  animation: slideIn 0.3s forwards;
}
.slide-out {
  animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.hidden {
  display: none !important;
}
.seo-text {
        /* ciemne tło spójne z resztą */
  color: #f0f0f0;            /* jasny tekst dla czytelności */
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;        /* spójne z kafelkami */
  border-top: 2px solid #00f0ff30; /* delikatna linia separacyjna */
}

.seo-text h1 {
  font-weight: 700;
  color: #00f0ff;            /* akcent kolorystyczny */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Impact', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.seo-text p {
  margin-bottom: 18px;
  font-weight: 300;
}

.seo-text strong {
  color: #ff00d4;            /* wyróżnienie ważnych fraz (SEO słowa kluczowe) */
  font-weight: 600;
}

.seo-footer {
  font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}
.upgrade-hint {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}
.sub-upgrade-info {
  display: none;           /* domyślnie ukryta */
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: #aaa;
}

.sub-upgrade-info {

  display: none;            /* domyślnie ukryty */
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #aaa;
}

.sub-upgrade-info:has(+ .sub-upgrade-wrapper .sub-upgrade-section:not(.hidden)) {
  display: block;
}


/* ===== iOS strzałki — małe kółka, na dole po bokach ===== */

.sub-upgrade-wrapper {
  position: relative;
}

/* domyślnie ukryte */
.sub-nav-btn { display: none; }

/* TYLKO na iOS pokaż przyciski */
.is-ios .sub-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: -17px;
  width: auto;
  height: auto;

  background: transparent; /* brak kółka */
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

.is-ios .sub-nav-btn img {
  width: 32px;  /* dopasuj rozmiar PNG */
  height: 32px;
  object-fit: contain;
}

.is-ios .sub-nav-btn.left  { left: 2px; }
.is-ios .sub-nav-btn.right { right: 2px; }

/* fade’y całkowicie wyłączone */
.sub-edge-fade,
.is-ios .sub-edge-fade {
  display: none !important;
}
.is-ios .sub-upgrade-section {
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}
.is-ios .sub-upgrade-section::-webkit-scrollbar {
  display: none;               /* Safari/Chrome na iOS */
}


