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

/* ================= GLOBAL ================= */
body {
  font-family: 'Montserrat', sans-serif;
  background: url("img/bg1.png") center top repeat;
  background-size: cover;
  color: #3a3a3a;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-top: 3px solid #d4af6d;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  padding: 20px 20px 0;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav a:hover {
  color: #d4af6d;
}

.nav.right {
  text-align: right;
}

.call {
  padding: 8px 18px;
  border: 1px solid #d4af6d;
  border-radius: 20px;
}

.logo {
  position: relative;
  top: -15px;
}

.logo img {
  height: 50px;
}

/* ================= USŁUGA ================= */
.service-hero {
  padding: 80px 20px;
  text-align: center;
}

.service-card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(212, 175, 109, 0.45);
}

.service-image img {
  width: 100%;
  border-radius: 30px;
  max-width: 640px;
  max-height: 640px;
}

.start-badge {
  position: absolute;
  top: 18%;
  left: 18%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(212,175,109,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* ================= TEKST ================= */
.service-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
}

.service-content span {
  color: #d4af6d;
}

.service-lead {
  margin: 20px 0 30px;
  color: #666;
}

.service-list {
  list-style: none;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.service-list li::before {
  content: "✓";
  color: #d4af6d;
}

/* ================= CENNIK ================= */
.pricing {
  padding: 80px 20px 120px;
  text-align: center;
}

.pricing h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.hours {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.hours button {
  border: 1px solid #d4af6d;
  background: transparent;
  padding: 10px 18px;
  border-radius: 20px;
}

.hours .active {
  background: #d4af6d;
  color: #fff;
}

.price-box {
  background: rgba(255,255,255,0.8);
  padding: 30px 50px;
  border-radius: 30px;
  display: inline-block;
}

.price-box strong {
  display: block;
  font-size: 32px;
  color: #d4af6d;
}

.btn-gold {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 30px;
  background: #d4af6d;
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}

/* ================= FOOTER ================= */
.site-footer {
    position: relative;
    padding: 28px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(248, 244, 235, 0.95));
    border-top: 1px solid rgba(212, 175, 109, 0.45);
}
/* DELIKATNA GÓRNA LINIA ZŁOTA */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgba(212, 175, 109, 0), rgba(212, 175, 109, 0.9), rgba(212, 175, 109, 0));
}
.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* LEWA STRONA */
.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #3a3a3a;
    white-space: nowrap;
}
/* PRAWA STRONA */
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-decoration: none;
    color: #444;
    transition: color .3s ease;
}
.footer-link:hover {
    color: #d4af6d;
}
.footer-link.muted {
    color: #777;
}
.footer-sep {
    color: rgba(212, 175, 109, 0.6);
    font-size: 12px;
}
/* MOBILE */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        justify-content: center;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .service-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .logo img {
    height: 90px;
  }

}

/* ================= OPIS USŁUGI ================= */

.service-description {
  margin-top: 60px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.service-title span {
  color: #d4af6d;
}

.service-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  max-width: 620px;
}

/* ================= PAKIETY ================= */

.packages-section {

}

.packages-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 36px;
  color: #2c2c2c;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.package-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,109,0.25);
  text-align: center;
  display: flex;
  flex-direction: column;

  height: 100%; /* KLUCZ */
  transition: 
    transform .4s ease,
    box-shadow .4s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.package-card.featured {
  background: rgba(212,175,109,0.15);
  border-color: rgba(212,175,109,0.45);
}

.package-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #d4af6d;
}

.package-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* ================= INFO + LINK ================= */

.packages-info {
  margin-top: 34px;
  font-size: 14px;
  color: #666;

}

.packages-link {
  display: inline-block;
  margin-top: 22px;

  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: 0.5px;

  color: #d4af6d;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,109,0.4);

  transition: 
    color .3s ease,
    border-color .3s ease;
}

.packages-link:hover {
  color: #b8944f;
  border-color: #b8944f;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 26px;
  }

}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.package-btn {

  align-self: center;
	margin-top: auto; 
  display: inline-block;
  padding: 14px 42px;

  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;

  color: #fff;
  background: linear-gradient(
    135deg,
    #d4af6d,
    #c9a45a
  );

  border-radius: 30px;
  border: none;

  box-shadow:
    0 10px 30px rgba(212,175,109,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

/* HOVER – PREMIUM FEEL */
.package-btn:hover {


  background: linear-gradient(
    135deg,
    #e3c07d,
    #d4af6d
  );

  box-shadow:
    0 18px 45px rgba(212,175,109,0.55),
    0 0 28px rgba(212,175,109,0.35);
}

/* ACTIVE (klik) */
.package-btn:active {
  transform: translateY(0) scale(0.98);
}

.mobile-nav {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* MENU Mobile */
@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 84px;
    padding: 0 20px;
    position: relative;
  }

}@media (max-width: 768px) {

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    z-index: 10;
  }

  .logo img {
    height: 60px;
  }

}

@media (max-width: 768px) {

/* HAMBURGER */
.mobile-menu-toggle {
  position: absolute;
  right: 18px;
  top: 22px;

  width: 40px;
  height: 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

/* kreski */
.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background: #d4af6d;
  border-radius: 2px;
  transition: all .35s ease;

  /* ✨ gold glow */
  box-shadow: 0 0 10px rgba(212,175,109,0.45);
}

/* === ANIMACJA → X === */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

}

@media (max-width: 768px) {
	
	  .nav {
    display: none;
  }


  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100vh;
display: flex;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;

    padding: 40px;
    transition: right 0.45s ease;
    z-index: 9999;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    text-decoration: none;
    color: #2c2c2c;
    text-align: center;
  }

}


/* =========================
   PACKAGES – FOTOMAGNESY
========================= */

.packages-section {
  text-align: center;
}

.packages-grid {
  max-width: 1200px;
  margin: 60px auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.package-card {
  position: relative;
  padding: 46px 36px 120px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border-radius: 32px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(212,175,109,0.25);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* FEATURED (VIP) */
.package-card.featured {
  transform: scale(1.03);
  box-shadow:
    0 30px 80px rgba(212,175,109,0.25),
    inset 0 0 0 2px rgba(212,175,109,0.45);
}

/* TITLE */
.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #c9a45a;
  margin-bottom: 26px;
}

/* DETAILS */
.package-details {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.package-details li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}

.package-details .price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #2c2c2c;
  margin-top: 18px;
}

/* DESCRIPTION */
.package-desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: #555;
}

/* BUTTON – PRZYPIĘTY DO DOŁU */
.package-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 38px;
}

/* NOTE */
.packages-note {
  max-width: 720px;
  margin: 60px auto 30px;
  font-size: 14px;
  color: #666;
}

/* LINK */
.packages-link {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #c9a45a;
  text-decoration: none;
  transition: color .3s ease;
}

.packages-link:hover {
  color: #b8944f;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding-bottom: 110px;
  }
}


/* =========================
   W PAKIECIE – BLOK INFO
========================= */

.package-includes {
  max-width: 860px;
  margin: 120px auto 0;
  padding: 50px 56px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 36px;
  border: 1px solid rgba(212,175,109,0.35);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.6);

  text-align: center;
}

/* tytuł */
.includes-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 42px;

  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #c9a45a;
}

/* złote linie po bokach */
.includes-title span {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;

  background: linear-gradient(
    to right,
    rgba(212,175,109,0),
    rgba(212,175,109,0.9),
    rgba(212,175,109,0)
  );
}

.includes-title span:first-child {
  left: -100px;
}

.includes-title span:last-child {
  right: -100px;
}

/* lista */
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

/* element listy */
.includes-list li {
  position: relative;
  padding-left: 26px;

  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* złoty check */
.includes-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;

  color: #d4af6d;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .package-includes {
    padding: 40px 26px;
    margin-top: 90px;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .includes-title {
    font-size: 24px;
  }

}

