/* ======================================================
   ELIZABETH v1.0 — STYLE.CSS
   Luksus Spokoju
====================================================== */

:root {
  --gold: #f1cf78;
  --gold-soft: #d8b46f;
  --cream: #fff1d0;
  --cream-soft: #f7ead7;
  --dark: #130609;
  --dark-deep: #090305;
  --wine: #3b0d17;
}

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 4, 7, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(241, 207, 120, 0.28);
}

.logo {
  color: var(--gold);
  text-decoration: none;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
}

/* GLOBAL */

.section {
  position: relative;
  min-height: 100vh;
  padding: 120px 7% 70px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 6, 9, 0.82), rgba(19, 6, 9, 0.34), rgba(19, 6, 9, 0.72)),
    radial-gradient(circle at center, rgba(241, 207, 120, 0.14), transparent 45%);
}

.box {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px;
  border-radius: 32px;
  background: rgba(17, 8, 12, 0.52);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 60px 140px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(241, 207, 120, 0.10);
}

.label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(54px, 8vw, 110px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 22px;
}

h3 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 23px;
}

p {
  font-size: 20px;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #c99a35, #fff1a8, #d4af37);
  color: #160608;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(241, 207, 120, 0.28);
}

/* ROZDZIAŁ I — HERO */

.hero {
  background-image:
    linear-gradient(90deg, rgba(19, 6, 9, 0.90) 0%, rgba(19, 6, 9, 0.56) 42%, rgba(19, 6, 9, 0.10) 100%),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* ROZDZIAŁ II — ELIZABETH */

.welcome-scene {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 30px;
  background:
    radial-gradient(circle at center, rgba(216, 180, 111, 0.12), transparent 48%),
    linear-gradient(to bottom, #111, #1b1113);
}

.welcome-container {
  max-width: 900px;
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.welcome-container.show {
  opacity: 1;
  transform: translateY(0);
}

.welcome-small {
  letter-spacing: 8px;
  color: var(--gold-soft);
  font-size: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.welcome-title {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.welcome-subtitle {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1.3;
}

/* ROZDZIAŁ III — SAGA */

.saga-section {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
  background: #0f1013;
  color: #f7efe4;
}

.saga-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 16, 19, 0.88), rgba(15, 16, 19, 0.52), rgba(15, 16, 19, 0.88)),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www-hero.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
  transform: scale(1.03);
}

.saga-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 56px 42px;
  border: 1px solid rgba(218, 190, 130, 0.38);
  background: rgba(20, 18, 17, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.saga-label {
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.saga-content h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 28px;
  font-family: Georgia, serif;
  font-weight: 400;
}

.saga-text {
  font-size: 18px;
  line-height: 1.8;
  color: #eadfce;
  margin-bottom: 22px;
}

.saga-memory {
  margin-top: 30px;
  font-size: clamp(21px, 2.4vw, 28px) !important;
  color: #f2c66f !important;
  font-family: Georgia, serif;
}

.saga-btn {
  margin-top: 20px;
  padding: 15px 34px;
  border: 1px solid var(--gold-soft);
  background: transparent;
  color: #f7efe4;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saga-btn:hover {
  background: var(--gold-soft);
  color: #161616;
}

.saga-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.7s ease;
  margin-top: 0;
}

.saga-more.active {
  max-height: 300px;
  opacity: 1;
  margin-top: 34px;
}

.saga-more p {
  font-size: 19px;
  line-height: 1.8;
  color: #f3e8d4;
}

/* ROZDZIAŁ IV — BYŁO MI TAM DOBRZE */

.ls-chapter-three {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(8, 4, 4, 0.38), rgba(8, 4, 4, 0.78)),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www.bylo-mi-tu-dobrze-.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--cream-soft);
}

.ls-chapter-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(226, 176, 91, 0.18), transparent 45%),
    linear-gradient(to bottom, rgba(5, 2, 2, 0.08), rgba(5, 2, 2, 0.55));
  pointer-events: none;
}

.ls-chapter-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.ls-chapter-three.show .ls-chapter-inner {
  opacity: 1;
  transform: translateY(0);
}

.ls-chapter-label {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}

.ls-chapter-inner h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  margin: 0;
  color: #fff2d7;
}

.ls-chapter-line {
  width: 90px;
  height: 1px;
  margin: 42px auto;
  background: rgba(216, 180, 111, 0.75);
}

.ls-chapter-inner p {
  max-width: 660px;
  margin: 0 auto 24px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
  color: var(--cream-soft);
}

.ls-chapter-final {
  margin-top: 42px !important;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px) !important;
  line-height: 1.15 !important;
  color: #f2c66f !important;
}

/* ROZDZIAŁ V — KOMPAS */

.compass-section {
  min-height: 680px;
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(216, 180, 111, 0.18), transparent 40%),
    linear-gradient(to bottom, #111, #090305);
  color: #f7efe4;
  text-align: center;
  overflow: hidden;
}

.compass-wrap {
  max-width: 760px;
}

.compass-symbol {
  width: 170px;
  height: 170px;
  margin: 0 auto 34px;
  border: 1px solid rgba(216, 180, 111, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 82px;
  color: var(--gold-soft);
  box-shadow: 0 0 50px rgba(216, 180, 111, 0.28);
  animation: compassSlow 18s linear infinite;
}

.compass-label {
  color: var(--gold-soft);
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.compass-wrap h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  margin: 0;
}

.compass-wrap h3 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--gold-soft);
  margin: 12px 0 28px;
}

.compass-text {
  font-size: 18px;
  line-height: 1.8;
  color: #eadfce;
  max-width: 620px;
  margin: 0 auto;
}

@keyframes compassSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ROZDZIAŁ VI — LICZNIK */

.counter-section {
  padding: 120px 20px;
  background: #111;
  color: white;
}

.counter-box {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: center;
}

.counter h2 {
  font-size: 72px;
  color: var(--gold-soft);
  margin-bottom: 15px;
}

.counter p {
  font-size: 20px;
  letter-spacing: 1px;
  color: #ddd;
}

.counter-step {
  width: 100%;
  margin-top: 20px;
}

/* ROZDZIAŁ VII — CYTAT */

.quote-section {
  min-height: 520px;
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4eadc;
  color: #16120f;
  text-align: center;
}

.quote-box {
  max-width: 820px;
  padding: 58px 42px;
  border-top: 1px solid rgba(120, 82, 38, 0.35);
  border-bottom: 1px solid rgba(120, 82, 38, 0.35);
}

.quote-label {
  color: #9b6b2f;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.daily-quote {
  font-family: Georgia, serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.25;
  font-weight: 400;
  color: #16120f;
}

/* ROZDZIAŁ VIII — DZIENNIK */

.diary-section {
  min-height: 720px;
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(18, 15, 13, 0.86), rgba(18, 15, 13, 0.9)),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www-hero.png");
  background-size: cover;
  background-position: center;
  color: #f7efe4;
}

.diary-content {
  max-width: 760px;
  text-align: center;
}

.diary-label {
  color: var(--gold-soft);
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.diary-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 42px;
}

.diary-card {
  padding: 56px 48px;
  border: 1px solid rgba(216, 180, 111, 0.42);
  background: rgba(255, 248, 235, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.diary-date {
  color: var(--gold-soft);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.diary-entry {
  font-size: 23px;
  line-height: 1.75;
  color: #f3e8d4;
}

/* DRZWI DO PAMIĘTNIKA */

.journal-door {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 54px auto 0;
}

.journal-door-small {
  color: #d8b46f;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 32px;
}

.journal-btn {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  color: #130609;
  background: linear-gradient(135deg, #f6d88d, #d8b46f);
  transition: 0.35s;
  font-weight: bold;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.journal-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(216, 180, 111, 0.35);
}

/* ROZDZIAŁ IX — KONTAKT */

.kontakt {
  background-image:
    linear-gradient(90deg, rgba(19, 6, 9, 0.88), rgba(19, 6, 9, 0.52), rgba(19, 6, 9, 0.82)),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www.bylo-mi-tu-dobrze-.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(241, 207, 120, 0.35);
  background: rgba(255, 255, 255, 0.09);
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
}

textarea {
  min-height: 130px;
}

input::placeholder,
textarea::placeholder {
  color: #d9c8a7;
}

/* FOOTER */

footer {
  padding: 30px;
  text-align: center;
  background: #090305;
  color: #bba77d;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 850px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 7%;
    flex-direction: column;
    background: rgba(13, 4, 7, 0.96);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(241, 207, 120, 0.3);
  }

  .nav.active {
    display: flex;
  }

  .section {
    padding: 110px 6% 60px;
  }

  .box {
    padding: 32px;
  }

  p {
    font-size: 18px;
  }

  .saga-section {
    min-height: 680px;
    padding: 70px 18px;
  }

  .saga-content {
    padding: 38px 24px;
  }

  .saga-text {
    font-size: 16px;
  }

  .ls-chapter-three {
    min-height: 92vh;
    padding: 90px 20px;
  }

  .ls-chapter-label {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .ls-chapter-inner h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .ls-chapter-inner p {
    font-size: 17px;
    line-height: 1.65;
  }

  .compass-section {
    padding: 76px 18px;
    min-height: 600px;
  }

  .compass-symbol {
    width: 130px;
    height: 130px;
    font-size: 62px;
  }

  .counter-box {
    gap: 44px;
  }

  .counter h2 {
    font-size: 56px;
  }

  .diary-section {
    padding: 70px 18px;
  }

  .diary-card {
    padding: 40px 28px;
  }

  .diary-entry {
    font-size: 19px;
  }

  .journal-door {
    margin-top: 42px;
  }

  .journal-btn {
    width: 100%;
    max-width: 360px;
    padding: 17px 26px;
    font-size: 17px;
  }
}

/* ELIZABETH 5.0 — poprawka klikalności przycisków */
.section::before,
.ls-chapter-shade {
  pointer-events: none;
}
.btn,
.journal-btn,
.nav a,
.logo {
  position: relative;
  z-index: 20;
}
.diary-content,
.journal-door,
.box {
  position: relative;
  z-index: 10;
}


/* ELIZABETH 6.0 — podstrony, pamiętnik, kontakt */
.site-footer {
  padding: 30px;
  text-align: center;
  background: #090305;
  color: #bba77d;
}

.elizabeth-page {
  min-height: 100vh;
  padding: 140px 7% 80px;
  background:
    linear-gradient(90deg, rgba(19, 6, 9, 0.92), rgba(19, 6, 9, 0.76)),
    url("https://luksusspokoju.pl/wp-content/uploads/2026/06/www-hero.png");
  background-size: cover;
  background-position: center right;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.elizabeth-page-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px;
  border-radius: 30px;
  background: rgba(17, 8, 12, 0.72);
  border: 1px solid rgba(241, 207, 120, 0.28);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}

.elizabeth-page h1 {
  color: var(--gold);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin-bottom: 30px;
}

.page-label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 16px;
}

.page-content p,
.page-content li {
  font-size: 20px;
  line-height: 1.8;
}

.back-home {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(241,207,120,.38);
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.back-home.second {
  margin-left: 10px;
}

.diary-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.diary-list-card {
  padding: 30px;
  border: 1px solid rgba(216, 180, 111, 0.35);
  background: rgba(255, 248, 235, 0.07);
  border-radius: 22px;
}

.diary-list-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.diary-list-card a {
  text-decoration: none;
}

.journal-btn.small {
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 18px;
}

/* WPForms — widoczne opisy nad polami */
.wpforms-container .wpforms-field-label,
.wpforms-container label.wpforms-field-label {
  display: block !important;
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  margin-bottom: 8px !important;
}

.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select {
  border-radius: 14px !important;
  border: 1px solid rgba(241, 207, 120, 0.35) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  color: var(--cream) !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.wpforms-container button[type="submit"] {
  border-radius: 40px !important;
  background: linear-gradient(135deg, #c99a35, #fff1a8, #d4af37) !important;
  color: #160608 !important;
  font-weight: bold !important;
  border: none !important;
  padding: 15px 34px !important;
}

@media (max-width: 850px) {
  .elizabeth-page {
    padding: 120px 5% 60px;
  }
  .elizabeth-page-box {
    padding: 32px 24px;
  }
  .back-home.second {
    margin-left: 0;
  }
}

/* Elizabeth 6.0 — poprawka formularza i powrotów */
.wpforms-container .wpforms-field-label,
.wpforms-container label.wpforms-field-label,
.wpforms-container .wpforms-field-label-inline,
.wpforms-container .wpforms-label-hide {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  margin: 0 0 8px 0 !important;
  opacity: 1 !important;
}

.wpforms-container .wpforms-field {
  margin-bottom: 18px !important;
}

.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
  color: #d9c8a7 !important;
  opacity: 0.85 !important;
}
