/* Header/menu styling is provided by css/style.css; this file contains page-local layout rules only. */

.nekuro-banner {
  width: 100%;
  background: #000000; /* tylko dla testu */
}

.nekuro-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr; /* 66 / 33 */
  aspect-ratio: 3 / 1;
  max-height: 480px;
}

.left {
  background-image: url("/assets/img/kurinuki2.jpg");
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.right {
  background-image: url("/assets/img/nekuro_logo2.jpg");
  background-size: contain; /* LOGO ≠ PHOTO */
  background-repeat: no-repeat;
}

.about {
  width: 100%;
  padding: 4rem 0; /* DUŻY ODDECH */
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-header h2 {
  font-family: "NekuroHeader", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Staff headline (page-local): ensure 'Nasze opowieści' uses the Nekuro header font */
.staff-section .staff-content h2 {
  font-family: 'NekuroHeader', serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1.0fr;
  gap: 1rem;
  align-items: center;
}

.about-text {
  max-width: 450px;
}

.about-text span {
  line-height: 2.4;
  letter-spacing: 0.15em;
  text-align: justify;
  hyphens: auto;
  font-family: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.1rem;
}

.about-image {
  aspect-ratio: 4 / 5;
  max-height: 500px;
  background-image: url("/assets/img/plate4na5.jpg");
  background-size: cover;
  background-position: center;
  /* border: 2px solid #000; */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1.4fr;
  }

  .about-image {
    max-height: 560px;
  }
}

.section-break {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4rem 0; /* DUŻY ODDECH */
}

.charm {
  width: 120px;   /* zmień jak chcesz */
  height: 120px;
  background-image: url('/assets/img/charm3.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;  
}

/* Section title using Nekuro font */
.section-title {
  font-family: 'NekuroHeader', 'Plus Jakarta Sans', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.2em;
}

/* Black CTA button */
.btn-black {
  display: inline-block;
  background: #000;
  color: #cfcfc7; /* washed, pale neutral tone (less orangy) */
  padding: 12px 36px; /* increased horizontal padding for a longer button */
  min-width: 200px; /* ensure visually longer button */
  border-radius: 0; /* no rounded corners */
  text-decoration: none;
  font-weight: 700;
  font-family: 'NekuroHeader', 'Plus Jakarta Sans', serif;
  font-size: 0.8em; /* ~20% smaller */
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.btn-black:hover { opacity: 0.9; }

.home-products-cta { text-align: center; margin-top: 48px; }

/* Section-break2: centered transparent logo between content sections */
.section-break2 {
  width: 100%;
  padding: 36px 0;
  display: block;
}
.section-break2 .container { display:flex; flex-direction: column; justify-content:center; align-items:center; gap: 12px; }
.section-break2-img {
  max-width: 256px; /* reduced by ~20% */
  width: 100%;
  height: auto;
  opacity: 0.95;
  display: block;
}

.section-break2-contact { margin-top: 20px; }
.section-break2 .contact-text {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.section-break2 .contact-email {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-weight: 600;
  text-decoration: none; /* ensure no underline */
  color: inherit; /* keep neutral color */
}
.section-break2 .social-icons { display:flex; gap:12px; justify-content:center; margin-top:12px; }
.section-break2 .social-link { color: #000; display:inline-flex; align-items:center; justify-content:center; }
.section-break2 .social-link img { width:20px; height:20px; display:block; }

/* Ensure product modal close button is black on the new index page */
.product-modal-close { color: #000 !important; }

