@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

:root {
  --bg-main: #fcf7f4;
  --bg-soft: #fffdfb;
  --bg-accent: #f6e7ec;
  --text-main: #221b1f;
  --text-soft: #6a5b62;
  --black: #111111;
  --gold: #c29a4b;
  --gold-soft: rgba(194, 154, 75, 0.18);
  --pink: #d65c8a;
  --pink-soft: #f3b6ca;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.9);
  --border-gold: rgba(194, 154, 75, 0.18);
  --border-pink: rgba(214, 92, 138, 0.28);
  --shadow-soft: 0 12px 40px rgba(34, 27, 31, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-soft) 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.hero {
  min-height: auto;
  padding: 18px 20px 80px;
  position: relative;
  overflow: hidden;
}

/* ===== TŁO HERO / SLIDESHOW ===== */

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(252, 247, 244, 0.72);
}

.navbar,
.hero-content {
  position: relative;
  z-index: 2;
}

/* ===== NAVBAR ===== */

.navbar {
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-area {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-booksy {
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(214, 92, 138, 0.28);
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  color: var(--text-main);
  cursor: pointer;
}

/* ===== HERO ===== */

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
}

.subtitle {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 18px;
  border: 1px solid rgba(214, 92, 138, 0.28);
  border-radius: 999px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.58);
}

.hero-title {
  font-family: 'Parisienne', cursive;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--black);
  font-weight: 400;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  color: var(--text-soft);
  text-align: center;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 760px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 92, 138, 0.08);
  border: 1px solid rgba(214, 92, 138, 0.22);
  color: var(--text-main);
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ===== SEKCJE ===== */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 20px;
}

.section-header {
  margin-bottom: 30px;
}

.section-label {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-text {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-soft);
}

h2 {
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1.2;
}

h3 {
  color: var(--black);
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== KARTY ===== */

.card,
.contact-card,
.price-list {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(214, 92, 138, 0.10);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 14px 40px rgba(34, 27, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.contact-card:hover,
.price-list:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(34, 27, 31, 0.08);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.accent-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(214, 160, 177, 0.10) 0%, rgba(194, 154, 75, 0.08) 100%);
  border: 1px solid var(--border-pink);
}

/* ===== TAGI I LISTY ===== */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(214, 92, 138, 0.10);
  border: 1px solid rgba(214, 92, 138, 0.35);
  color: var(--text-main);
  font-size: 0.92rem;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ===== KONTAKT ===== */

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-card a {
  color: var(--text-main);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--pink);
}

/* ===== CENNIK ===== */

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(185, 132, 151, 0.18);
}

.price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mini-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.15rem;
}

.section-note {
  margin-top: 16px;
  color: var(--text-soft);
}

.pricing-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.price-subtitle {
  margin-top: 24px;
  padding-top: 8px;
  border-top: 1px solid rgba(185, 132, 151, 0.18);
}

/* ===== O SALONIE ===== */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.about-image-box {
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(214, 92, 138, 0.14);
  box-shadow: 0 14px 40px rgba(34, 27, 31, 0.06);
  background: #fff;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== GALERIA ===== */

.gallery-masonry {
  column-count: 4;
  column-gap: 22px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(214, 92, 138, 0.14);
  box-shadow: 0 12px 34px rgba(34, 27, 31, 0.05);
  padding: 0;
  background: transparent;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== PRZYCISKI ===== */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #d8b66f 100%);
  color: #1a1418;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--pink);
}

/* ===== STOPKA ===== */

.footer {
  text-align: center;
  padding: 42px 20px 50px;
  color: #9a7b87;
  font-size: 0.95rem;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .gallery-masonry {
    column-count: 3;
  }

  .navbar {
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
  }

  .logo-img {
    width: 150px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .about-layout,
  .pricing-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 4.1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 40;
  }

  .brand-block {
    justify-content: flex-start;
  }

  .logo-img {
    width: 95px;
  }

  .nav-booksy {
    display: none;
  }

  .nav-area {
    justify-content: flex-end;
    position: relative;
    z-index: 30;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 240px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(214, 92, 138, 0.14);
    box-shadow: 0 12px 30px rgba(34, 27, 31, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    white-space: normal;
    z-index: 50;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(214, 92, 138, 0.14);
    text-align: left;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 20px 16px 70px;
  }

  .hero-content {
    padding-top: 10px;
    position: relative;
    z-index: 2;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-buttons .hero-secondary-btn {
    width: 100%;
    text-align: center;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 16px;
  }

  .gallery-item {
    margin-bottom: 16px;
    min-height: 200px;
  }

  .gallery-item.medium {
    min-height: 260px;
  }

  .gallery-item.tall {
    min-height: 340px;
  }

  .price-row {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    column-count: 1;
  }
}

/* ===== OPINIE ===== */

.reviews-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.reviews-slider::-webkit-scrollbar {
  height: 10px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: rgba(214, 92, 138, 0.08);
  border-radius: 999px;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: rgba(214, 92, 138, 0.28);
  border-radius: 999px;
}

.review-card {
  flex: 0 0 650px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 100%);
  border: 1px solid rgba(214, 92, 138, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(34, 27, 31, 0.06);
}
.review-img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 92, 138, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(34, 27, 31, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 94%;
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}