/* ================================
   COLOR SYSTEM – GREY / BLACK / GOLD
   ================================ */
:root {
  --rich-black: #0b0b0c;
  --matte-charcoal: #1e1f22;
  --urban-concrete: #2c2e33;
  --silver-steel: #d1d3d4;
  --pure-white: #ffffff;
  --royal-gold: #c9a227;
  --soft-gold: #e2c06d;

  --radius-lg: 24px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* ================================
   RESET / BASE
   ================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(201,162,39,0.12) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(226,192,109,0.12) 0, transparent 55%),
    linear-gradient(180deg, #f7f2ea 0%, #f3ebe0 40%, #f6f0e5 100%);
  color: var(--urban-concrete);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* wszystkie sekcje = karty na tle */
.section {
  padding: 2.4rem 0;
}

/* HERO nie jest kartą, dlatego nad pierwszą kartą taki sam odstęp */
.section:first-of-type {
  padding-top: 2.4rem;
}

/* KARTA – białe pudełko w środku sekcji */
.section .container {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f9f4e8);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* typy sekcji – tylko kolor tekstu / drobne różnice, bez tła na całą szerokość */
.section-light,
.section-white,
.section-gallery,
.section-faq {
  color: var(--urban-concrete);
}

/* ciemna karta – sekcja DEMO OPTIONS */
.section-dark {
  color: var(--pure-white);
}

.section-dark .container {
  background: #111116;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}

/* jasne nagłówki w ciemnym bloku */
.section-dark .section-heading,
.section-dark .container > h2,
.section-dark .section-text > h2 {
  color: var(--pure-white);
}

/* galeria i FAQ – trochę mniej paddingu */
.section-gallery .container,
.section-faq .container {
  padding: 2.4rem 2.1rem 2.7rem;
}

/* Nagłówki sekcji */

.section-heading,
.section .container > h2,
.section-text > h2 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
  color: var(--rich-black);
}

/* ================================
   HEADER / NAV
   ================================ */

.site-header {
  background: #e0e2e6;
  padding: 0.75rem 0 1.2rem;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* nav shell (pill) */
.nav-shell {
  background: var(--pure-white);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* nav content */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.4rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--urban-concrete);
  white-space: nowrap;
}

.logo span {
  color: var(--royal-gold);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--urban-concrete);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--royal-gold);
}

.nav-cta {
  text-decoration: none;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: var(--royal-gold);
  color: var(--rich-black);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  background: var(--soft-gold);
}

/* contact card on the right */

.contact-card {
  align-self: flex-end;
  background: var(--pure-white);
  border-radius: 20px;
  padding: 0.8rem 1.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--urban-concrete);
}

.contact-card-links {
  font-size: 0.85rem;
}

.contact-card-links a {
  text-decoration: none;
  color: var(--matte-charcoal);
  font-weight: 500;
}

.contact-card-links a:hover {
  color: var(--royal-gold);
}

.contact-card .divider {
  color: #a0a4aa;
  margin: 0 0.2rem;
}

/* ================================
   HERO
   ================================ */

.hero {
  position: relative;
  background-image: linear-gradient(
      90deg,
      rgba(11, 11, 12, 0.94) 0%,
      rgba(11, 11, 12, 0.86) 45%,
      rgba(11, 11, 12, 0.4) 100%
    ),
    url("kitchen.png");
  background-size: cover;
  background-position: center;
  color: var(--pure-white);
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
}

.hero-content {
  max-width: 520px;
  padding: 3rem 0;
}

.hero h1 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  color: #e4e5ea;
}

.hero-benefits {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  font-size: 0.95rem;
  color: #f5f5f7;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.hero-benefits li::before {
  content: "•";
  color: var(--soft-gold);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.hero-seo {
  font-size: 0.85rem;
  color: #c4c5cc;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-gold), var(--soft-gold));
  color: var(--rich-black);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border-color: rgba(11, 11, 12, 0.3);
  color: var(--urban-concrete);
}

.btn-outline:hover {
  background: rgba(11, 11, 12, 0.03);
}

/* jaśniejsze obramowanie w hero */
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--pure-white);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--pure-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Text link */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--royal-gold);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.6rem;
}

.text-link:hover {
  color: var(--soft-gold);
}

/* ================================
   GENERIC COMPONENTS
   ================================ */

.section-text p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.two-column {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0.4rem;
}

.icon-list li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.96rem;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--royal-gold);
}

/* Steps list */

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.steps-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--soft-gold), var(--royal-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--rich-black);
  flex-shrink: 0;
}

.steps-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.steps-list p {
  margin: 0;
  font-size: 0.95rem;
}

.compliance-line {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: #7a6b44;
}

/* Cards grid */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.info-card {
  background: var(--pure-white);
  color: var(--urban-concrete);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  color: var(--rich-black);
}

/* dark variant used in demo section */

.info-card-dark {
  background: #1c1c20;
  color: #f3f3f4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.info-card-dark h3 {
  color: var(--soft-gold);
}

.branch-address {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #f1e6c8;
}

.center-cta {
  margin-top: 1.8rem;
  text-align: center;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  background: rgba(201,162,39,0.12);
}

.info-card-highlight {
  background: linear-gradient(135deg, #fff7e3, #ffe9b8);
  border: 1px solid rgba(201,162,39,0.4);
}

.info-card-highlight .card-icon {
  background: var(--pure-white);
}

.card-cta {
  display: inline-flex;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--rich-black);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--royal-gold);
}

.card-cta:hover {
  background: var(--soft-gold);
}

/* ================================
   GALLERY
   ================================ */

.section-gallery .section-heading {
  color: var(--rich-black);
}

.section-gallery .section-intro {
  font-size: 0.98rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.3rem;
}

/* kwadratowe kafelki */
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f3f4;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.65rem 0.9rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--urban-concrete);
  background: rgba(255, 255, 255, 0.95);
}

/* ================================
   DEMO OPTIONS + BOOKING
   ================================ */

.demo-options-grid {
  margin-bottom: 2rem;
}

.booking-panel {
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 32, 0.98),
    rgba(44, 46, 51, 0.98)
  );
  padding: 1.8rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.booking-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--pure-white);
}

.booking-text p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 450px;
  color: #e0e0e5;
}

/* GUZIKI OBOK SIEBIE */
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.booking-extra {
  margin: 0;
  font-size: 0.88rem;
  color: #dedfe8;
}

.booking-instagram {
  color: var(--soft-gold);
  text-decoration: none;
  font-weight: 500;
}

.booking-instagram:hover {
  color: var(--royal-gold);
}

/* ================================
   ABOUT
   ================================ */

/* GRID: tekst po lewej, zdjęcie po prawej – pełna szerokość karty */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.2rem;
}

/* Ograniczenie zdjęcia */
.about-photo img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--soft-gold);
  display: block;
  margin: 0 auto;
}

.about-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* złoty spotlight pod zdjęciem */
.about-photo::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 162, 39, 0.26) 0%,
      rgba(201, 162, 39, 0.12) 30%,
      rgba(201, 162, 39, 0.00) 60%
    );
  filter: blur(32px);
  opacity: 0.95;
  transform: translateY(8px);
}

.about-text h2 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--urban-concrete);
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--urban-concrete);
}

.about-meta {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.about-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ================================
   FAQ
   ================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
  counter-reset: faq;
}

.faq-item {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f9f4e8);
  border-radius: 18px;
  padding: 1.3rem 1.4rem 1.3rem 3.1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.faq-item:nth-child(even) {
  background: linear-gradient(135deg, #ffffff, #f3f2ff);
}

.faq-item::before {
  content: counter(faq, decimal-leading-zero);
  counter-increment: faq;
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(201,162,39,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rich-black);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--rich-black);
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(201,162,39,0.2) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(226,192,109,0.15) 0, transparent 55%),
    linear-gradient(180deg, #141418, #0b0b0c);
  color: #e1e1e3;
  padding: 2rem 0 2.4rem;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
}

.footer-main {
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.footer-details {
  margin: 0 0 0.4rem;
}

.footer-details a {
  color: var(--soft-gold);
  text-decoration: none;
}

.footer-details a:hover {
  color: var(--royal-gold);
}

.footer-legal {
  margin: 0 0 0.3rem;
}

.footer-copy {
  margin: 0;
  color: #b5b6b9;
}

/* cienka wizualna separacja między ostatnią kartą a footerem */
.footer-divider {
  width: 100%;
  height: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,162,39,0.45), rgba(0,0,0,0));
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */

#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--royal-gold);
  color: var(--rich-black);
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

#backToTop:hover {
  background: var(--soft-gold);
}

#backToTop.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
  }

  .nav-links {
    justify-content: center;
  }

  .nav-cta {
    margin-left: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 64vh;
    background-position: 60% center;
  }

  .hero-content {
    max-width: 100%;
  }

  .two-column {
    flex-direction: column;
  }

  .contact-card {
    align-self: stretch;
  }

  .main-nav {
    padding: 0.6rem 0.9rem;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .booking-panel {
    padding: 1.4rem 1.2rem;
  }

  .section .container {
    padding: 2.1rem 1.6rem;
    border-radius: 18px;
  }

  /* na mobile przyciski w booking pod sobą */
  .booking-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none; /* prosty mobilny wariant bez burgera */
  }

  .nav-cta {
    margin-left: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}
