/* =============================================== */
/* INDEX.CSS — styl strony głównej (czysty)        */
/* =============================================== */

/* === Zmienne kolorów (zachowane dla sekcji) === */
:root {
 
  --gold: #d4af37;
  --gold-strong: #f5d87a;
  --light: #ffffff;
  --text: #ffffff;
  --bg: #ffffff;
  --dark: #0a4f46;
  --white: #ffffff;
}


p {
  font-family: "IBM Plex Sans", sans-serif;

}
/* możesz zostawić swoje rozmiary / wagi: */

p {
  font-weight: 200;
  font-size: 1.2rem;
}
/* --- SEKCJE OGÓLNE --- */


/* --- HERO --- */


#hero {
  background-color: #FDFDFD;
}
#hero {
  background-image: url("../Media/ksztalty.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  height: 100vh;
  padding-left: 8vw;
  padding-top: 60px;  /* odsunięcie tekstu od fixed headera */
}

#hero h1, h2, h3 {
  font-family: "IBM Plex Sans", sans-serif;

}

#hero h1 {
   margin-top: 1em;
  font-weight: 500;
  font-size: 8rem;
  font-style: italic;
  margin-bottom: -0.2em;
  margin-left: -100px;
}

#hero h1 span { color: #ca268b;}
#hero h1 span { font-family: "Cardo", sans-serif;
font-style: normal;
font-weight: 600;

}

#hero h2 {
  font-weight: 200;
  font-size: 3rem;
  margin-left: -95px;
  margin-bottom: 0.5em;
}

 
#hero p {
  margin-left: -94px;
   margin-bottom: 0.5em;
   color: #5c5c5c;
}
.hero-cta .btn-black {
   margin: 24px 0 0 -95px;  /* góra | prawo | dół | lewo */
}


/* --- SEKCJA OPINIE / KARUZELA --- */
.press-strip {
  width: 100%;
  background-color: #fdfdfd;
  padding: 30px 0;
}

.press-strip-viewport {
  max-width: 100%;   /* szerokość całej wąskiej „ściany” */
  margin: 0 auto;
  overflow: hidden;    /* ukrywa to, co wychodzi poza obszar */
}

.press-strip-track {
  display: flex;
  align-items: stretch;
  transform: translateX(0);
}

/* 6 kart widocznych naraz ⇒ każda ~1/6 szerokości okna */
.press-card {
  flex: 0 0 calc(100% / 5);
  box-sizing: border-box;
  padding: 0 26px;      /* odstęp wewnątrz karty */
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
}

.press-quote-mark {
  display: block;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}

.press-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.press-quote-source {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* Na mobile możesz pokazać mniej kart – np. 2 na raz */
@media (max-width: 900px) {
  .press-card {
    flex: 0 0 50%;
    padding: 0 12px;
  }
}




/* --- SEKCJA PRODUKT --- */
#produkt {
  background-image: url("../Media/3242.png");
  background-repeat: no-repeat;

  background-position: left center; /* osadź po lewej */
background-size: auto 100%;    /* tylko lewa część (szerokość ~40% ekranu) */

  height: 100vh;
  background-color: #fff;           /* reszta tła normalna */
}




/* ===== RESULTS SECTION ===== */
.results-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden; /* opcjonalnie, jeśli nie chcesz żeby coś wychodziło */
}



.results-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;        /* odstęp góra/dół już wewnątrz, nie w sekcji */
}


.results-header {
  max-width: 760px;
}

.results-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.results-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 14px;
}

/* Tabs */
.results-tabs {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 26px;
}

.results-tab {
  background: none;
  border: none;
  padding: 0 0 8px 0;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  border-bottom: 2px solid transparent;
}

.results-tab.active {
  border-bottom-color: #b47a2c; /* złoty akcent */
  color: #b47a2c;
}

/* Grid */
.results-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.results-grid.active {
  display: grid;
}

/* Card */
.result-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 6px;
}

.result-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* ===== Before/After ===== */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2; /* podobny kadr jak na screenie */
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
  font-size: 18px;
  color: #111;
}

.ba-arrow {
  line-height: 1;
  user-select: none;
}

.ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
}

.ba-label-left { left: 10px; }
.ba-label-right { right: 10px; }

/* Responsywność */
@media (max-width: 1100px) {
  .results-grid.active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .results-section { padding: 70px 0; }
  .results-grid.active {
    grid-template-columns: 1fr;
  }
}


/* ===== SEKCJA PROOF ===== */


.proof-section {
  height: 100vh;
  background: #fff;
}

.proof-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* lewa minimalnie szersza jak na screenie */
}

/* LEWA */
.proof-left {
  padding: 12vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-title {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 8vh;
  font-style: italic;
  font-size: 4rem;
}
.proof-title .proof-highlight {
  color: #ca268b;                /* inny kolor */
  font-family: "Cardo", serif;   /* inna czcionka */
  font-weight: 600; 
  font-style: normal;             /* ewentualnie trochę grubiej */
}

.proof-subtitle {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 5vh;
  font-style: normal;
  font-size: 2rem;
  margin-left: 5px;
}
/* lista */
.proof-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d9d9d9;
}

.proof-item {
  border-bottom: 1px solid #d9d9d9;
}

.proof-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 400;
  color: #111;
}

.proof-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

/* odpowiedź (na start ukryta) */
.proof-answer {
  padding: 0 0 14px 0;
}

.proof-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* CTA */
.proof-cta {
  align-self: flex-start;
  margin-top: 6vh;
  padding: 12px 18px;
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  font-style: normal; 
  font-weight: 400;
}

/* PRAWA */
.proof-right {
  position: relative;
  overflow: hidden;
}

.proof-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* wypełnia prawa część */
  object-position: center;
    transform: scale(1.4);        /* lekki zoom */
  transform-origin: center;      /* powiększanie od środka */
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .proof-wrap {
    grid-template-columns: 1fr;
  }

  .proof-right {
    order: -1;
    height: 45vh;
  }

  .proof-left {
    padding: 6vh 6vw;
  }
}

/* ===== SEKCJA GUASHAINUSE / CTA IMAGE ===== */
.guashainuse-section {
  height: 100vh;
  position: relative;

  background-image: url("../Media/Model2.jpg");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #FDFDFD;
}


/* kontener treści */
.guashainuse-content {
  position: absolute;
  left: 8vw;
  top: 30vh;
  max-width: 520px;
  color: #111;
}

/* tytuł – jak H1 w hero, tylko trochę mniejszy */
.guashainuse-title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 8rem;      /* możesz podbić do 6rem, jeśli chcesz bardziej hero */
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 0.2em 0;
}

/* „Sha” – ten sam styl co span w hero */
.guashainuse-title span {
  color: #ca268b;
  font-family: "Cardo", serif;
  font-weight: 600;
  font-style: normal;
}

/* tekst – jak paragrafy w hero */
.guashainuse-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5c5c5c;
  margin: 0 0 1.5em 0;
}

/* przycisk – korzysta z .btn-black, tu tylko odstęp */
.guashainuse-content .btn-black {
  margin-top: 0.5em;
}

/* responsywność */
@media (max-width: 700px) {
  .guashainuse-content {
    left: 8vw;
    right: 8vw;
    top: auto;
    bottom: 10vh;
    max-width: none;
  }
  .guashainuse-title {
    font-size: 3rem;
  }
}




/* ===== FAQ SECTION ===== */
.faq-section {
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-wrap {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 50px;
}

/* Lista */
.faq-list {
  border-top: 1px solid #d9d9d9;
}

.faq-item {
  border-bottom: 1px solid #d9d9d9;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;

  font-size: 1rem;
  font-weight: 400;
  color: #111;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

/* Odpowiedź */
.faq-a {
  padding: 0 0 18px 0;
}

.faq-a p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  max-width: 760px;
}

/* Responsywność */
@media (max-width: 700px) {
  .faq-title {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
  .faq-q {
    font-size: 0.95rem;
    padding: 18px 0;
  }
}




/* --- SCROLL DOWN ARROW --- */
.scroll-down-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}

.scroll-down-arrow svg {
  width: 40px;
  height: 40px;
  stroke: #000;
  animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .scroll-down-arrow {
    bottom: 20px;
  }
  .scroll-down-arrow svg {
    width: 30px;
    height: 30px;
  }
}
