@import url("allAtractions.css");

/* WRAPPER */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  padding: 5rem 1rem;
}

/* CARD */
.pricing-card {
  background: white;
  color: #111;
  width: 100%;
  max-width: 600px;
  padding: 3rem 2.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
}

/* HEADINGS */
.pricing-card h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* PRICE */
.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.4rem;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
}

.unit {
  font-size: 1.1rem;
  color: #555;
}

/* TEXT */
.subtitle {
  margin-top: 0.6rem;
  font-size: 1.05rem;
  color: #444;
}

.note {
  font-size: 1rem;
  color: #333;
  margin: 1.8rem 0;
  line-height: 1.6;
}

.muted {
  color: #666;
  font-size: 0.95rem;
}

/* DIVIDER */
.pricing-card hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2rem 0;
}

/* HOURS */
.hours h2 {
  margin-bottom: 0.4rem;
}

.time-slots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.time-slots span {
  background: #f5f5f5;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-card {
    padding: 2.2rem 1.6rem;
  }

  .amount {
    font-size: 2.4rem;
  }
}

/* =========================
   NAVBAR – DESKTOP + MOBILE
========================= */

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

/* STRONY NAVA */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  gap: 0.7rem;
}

/* LOGO */
.profile-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

/* LINK OBOK LOGO (np. O MNIE) */
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 1.4rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  letter-spacing: 0.05em;
  margin-left: 1.2rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

/* POWRÓT */
.nav-back {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 1.4rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-back:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

/* BURGER */
.main-menu_icon {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 10;
}

.main-menu_icon span {
  height: 0.18rem;
  background: white;
  border-radius: 1rem;
  transition: 0.4s;
}

/* BURGER – ANIMACJA */
.main-menu_icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.main-menu_icon.open span:nth-child(2) {
  opacity: 0;
}

.main-menu_icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU ROZWIJANE */
.navbar-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-bottom-left-radius: 2vh;
  border-bottom-right-radius: 2vh;
}

.navbar-menu.open {
  max-height: 50vh;
}

/* LINKI W MENU */
.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.menu-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.menu-links a:hover {
  color: #ffcc00ab;
}

.menu-links hr {
  width: 80%;
  border: none;
  border-top: 1px solid #ffffff4d;
  margin: 0.5rem auto;
}

.menu-links .copyright {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #ccc;
  text-align: center;
}

.copyright span {
  color: #007BFF;
}

/* =========================
   NAVBAR – MOBILE
========================= */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .profile-img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-link,
  .nav-back {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
    margin-left: 0.3rem;
    background: rgba(0, 0, 0, 0.55);
  }

  .main-menu_icon {
    width: 1.5rem;
    height: 1.5rem;
    gap: 0.25rem;
  }

  .main-menu_icon span {
    height: 0.14rem;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.pricing-wrapper{
  font-family:'Inter',sans-serif;
  color:#fff;
  padding:140px 20px 120px;
  position:relative;
}



/* KONTENER */
.pricing-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* TYTUŁ */
.section-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:80px;
}

/* GRID – PC */
.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1fr; /* dwie kolumny */
  gap:60px;
}

/* KARTA */
.pricing-card{
  background:rgba(0, 0, 0, 0.24);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:60px 40px;
  transition:0.4s ease;
  opacity:0;
  transform:translateY(50px);
  position:relative;
  color: #ffffff !important;
}

.pricing-card.show{
  opacity:1;
  transform:translateY(0);
}

.pricing-card:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

.highlight{
  border:1px solid #ffcc00;
  box-shadow:0 0 35px rgba(255,204,0,0.25);
}

.badge{
  position:absolute;
  top:-15px;
  right:25px;
  background:#ffcc00;
  color:#000;
  padding:7px 16px;
  font-size:12px;
  border-radius:20px;
  font-weight:600;
}

/* TEKST */
.card-header h2{
  font-size:24px;
  margin-bottom:20px;
}

.price{
  margin-bottom:35px;
}

.amount{
  font-size:48px;
  font-weight:700;
}

.unit{
  font-size:16px;
  opacity:1;
  color: white;
}

.features{
  list-style:none;
  margin:35px 0 45px;
  text-align:left;
}

.features li{
  margin-bottom:16px;
  padding-left:20px;
  position:relative;
  opacity:0.85;
}

.features li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#ffcc00;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:16px 36px;
  border-radius:40px;
  text-decoration:none;
  background:#fff;
  color:#000;
  font-weight:600;
  transition:0.3s ease;
}

.btn:hover{
  transform:scale(1.06);
}

.gold{
  background:#ffcc00;
}

/* TABLET */
@media(max-width:992px){
  .pricing-grid{
    gap:40px;
  }
}

/* MOBILE – jedna kolumna */
@media(max-width:768px){
  .pricing-wrapper{
    padding:100px 20px 80px;
  }


  .pricing-grid{
    grid-template-columns:1fr; /* jedna kolumna */
  }

  .pricing-card{
    padding:45px 30px;
  }

  .amount{
    font-size:40px;
  }
}
.sectiono {
      text-shadow: 0px 5px 10px rgb(0, 0, 0);
    font-weight: 510 !important;
        margin-bottom:7.7vh;
        font-size: 4vh !important;
}