/* ================================================
   Pure Emotion – 1:1 Design Match
   Playfair Display + Lora | Gold palette | Dark/Cream contrast
   ================================================ */

:root {
  --gold-1: #8c6a1f;
  --gold-2: #d4b46a;
  --gold-3: #f5e7b2;
  --gold-4: #c49a2c;
  --gold-5: #7a5c16;
  --gold-gradient: linear-gradient(135deg, #ad8c3e 0%, #dfc278 25%, #f5e7b2 50%, #dfc278 75%, #ad8c3e 100%);
  --gold-shimmer: linear-gradient(90deg, #8c6a1f, #d4b46a, #f5e7b2, #c49a2c, #7a5c16);
  --dark: #1c1c1c;
  --dark-2: #2a2a2a;
  --text: #1c1c1c;
  --text-muted: #666;
  --white: #ffffff;
  --cream: #ebe4d8;
  --cream-2: #dfd8c8;
  --border: #d8cebc;
  --section-padding: clamp(80px, 10vw, 120px);
}

/* ================================================
   RESET & BASE
   ================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Gold gradient text */
.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold divider – 2px elegant line, identical to PE */
.gold-divider {
  width: 100px;
  height: 2px;
  margin: 1.25rem auto 2.5rem;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 50px);
}

.section {
  padding: var(--section-padding) 0;
}

.bg-dark {
  background-color: var(--dark);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-cream-2 {
  background-color: var(--cream-2);
}

.text-center {
  text-align: center;
}

.gold-divider {
  width: 100px;
  height: 2px;
  margin: 1.25rem auto 2.5rem;
  background: var(--gold-gradient);
  border-radius: 2px;
  display: block;
}

.section-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #444444;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ================================================
   HEADER
   ================================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.45s ease, box-shadow 0.45s ease;
}

.main-header.scrolled {
  background-color: var(--dark);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

/* Specific Logo handling for Scrolled state */
.main-header.scrolled .header-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.main-header.scrolled .nav-list > li > a {
  color: rgba(255, 255, 255, 0.85);
}

.main-header.scrolled .header-socials a {
  color: rgba(255, 255, 255, 0.7);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px) clamp(20px, 3vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  max-height: 120px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  margin-right: 20px;
}

.header-logo:hover {
  opacity: 1;
}

.header-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-list>li {
  margin-left: 18px;
}

.nav-list>li>a.nav-btn {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-list>li>a.nav-btn:hover,
.nav-list>li>a.nav-btn.active {
  color: var(--gold-2);
  border-color: var(--gold-2);
  background: rgba(212, 180, 106, 0.05);
}

.main-header.scrolled .nav-list>li>a.nav-btn {
  color: rgba(255, 255, 255, 0.85);
}

.main-header.scrolled .nav-list>li>a.nav-btn:hover,
.main-header.scrolled .nav-list>li>a.nav-btn.active {
  color: var(--gold-2);
  border-color: var(--gold-2);
  background: rgba(212, 180, 106, 0.1);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-socials {
  display: flex;
  gap: 12px;
}

.header-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.header-socials a:hover {
  color: var(--gold-2);
}

/* Termin button */
.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-family: 'Lora', serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
  background: linear-gradient(180deg, #dfc278 0%, #c6a75e 50%, #ad8c3e 100%);
  border: 1.5px solid #b8953a;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: all 0.15s ease;
}

.btn-calendar:hover {
  background: linear-gradient(180deg, #d4b86a 0%, #b8953a 50%, #9a7a28 100%);
  border-color: #a07830;
  color: var(--dark);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.menu-checkbox {
  display: none !important;
}

/* Mobile open */
.menu-checkbox:checked~.main-nav .nav-list {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 20px 30px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
}

.menu-checkbox:checked~.main-nav .nav-list>li {
  margin: 7px 0;
}

.menu-checkbox:checked~.main-nav .nav-list>li>a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.8rem;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  background-color: var(--dark);
  background-image: url('photobooth-demo.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.65) 70%,
      rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 140px 20px 80px;
}

.hero-magic-logo {
  max-width: 280px;
  max-height: 120px;
  margin: 0 auto 2.5rem;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.claim {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.2rem;
}

.hero-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}


.btn-large {
  padding: 16px 44px;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(180deg, #dfc278 0%, #c6a75e 50%, #ad8c3e 100%);
  border-color: #b8953a;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #d4b86a 0%, #b8953a 50%, #9a7a28 100%);
  border-color: #a07830;
  color: var(--dark);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: var(--dark);
}

.btn-whatsapp:hover {
  background-color: #1aac52;
  border-color: #1aac52;
  color: var(--dark);
}

.color-gold {
  color: var(--gold-4);
}

.mt-40 {
  margin-top: 2.5rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

/* ================================================
   GRIDS
   ================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 3rem;
}

/* ================================================
   CARDS
   ================================================ */
.card {
  padding: clamp(28px, 4vw, 44px);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

/* Applying rounding and shadow to gallery images for a consistent aesthetic */
.wsw-block-gallery-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(28, 28, 28, 0.08);
  transform: translateY(-3px);
}

.card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--gold-4);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--gold-4);
  margin-bottom: 0.6rem;
}

.content-image {
  width: 100%;
  border-radius: 4px;
  margin-top: 4rem;
  object-fit: cover;
  max-height: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-image:hover {
  transform: scale(1.01);
}

/* ================================================
   CHECKLISTS
   ================================================ */
.check-list-centered {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

.check-list-centered li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.6;
}

.check-list-centered li:last-child {
  border-bottom: none;
}

.check-list-centered i {
  color: var(--gold-4);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ================================================
   PRICES
   ================================================ */
.price-card {
  padding: 4rem 2rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: var(--gold-2);
}

.price-card h3 {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Lora', serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  color: var(--text);
  font-weight: 700;
  line-height: 1;
}

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

.included-box {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--cream);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 4px;
  text-align: left;
  border: 1px solid var(--border);
}

.included-box h3 {
  color: var(--gold-4);
  margin-bottom: 0.5rem;
}

.box-shadow {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.border-gold {
  border-color: var(--gold-2);
}

/* ================================================
   TIMELINE
   ================================================ */
.timeline {
  max-width: 580px;
  margin: 3rem auto 0;
  text-align: left;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: var(--white);
  border-left: 2px solid var(--gold-4);
  border-radius: 0 4px 4px 0;
  font-size: 1rem;
  transition: border-left-width 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  border-left-width: 4px;
  box-shadow: 0 4px 20px rgba(196, 154, 44, 0.1);
}

.step span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-4);
  line-height: 1;
  min-width: 32px;
}

/* ================================================
   FOOTER – dark like PE (wsw-theme-d = #1c1c1c)
   ================================================ */
.main-footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  line-height: 1.85;
}

.main-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.main-footer a:hover {
  color: var(--gold-2);
}

.footer-top {
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 5vw, 70px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-col {
  padding-right: 40px;
}

.footer-col+.footer-col {
  padding-right: 0;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  max-height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

.footer-col p {
  margin-bottom: 0.35rem;
}

.footer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bfa046;
  margin-bottom: 0;
}

.footer-divider {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 8px 0 18px;
  background: linear-gradient(90deg,
      rgba(212, 175, 55, 0.12) 0%,
      #d4af37 25%,
      #f5e6a8 50%,
      #d4af37 75%,
      rgba(212, 175, 55, 0.12) 100%);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 4px;
}

.footer-col ul li a {
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal a {
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
}

.footer-legal a:hover {
  color: var(--gold-2);
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  color: white;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Anchor offset for fixed header */
[id] {
  scroll-margin-top: 90px;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-2 .fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.grid-2 .fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.grid-2 .fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* ================================================
   RESPONSIVE – Tablet
   ================================================ */
@media (max-width: 960px) {
  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .header-socials {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .footer-col {
    padding-right: 0;
  }

  .footer-col+.footer-col {
    padding-left: 28px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    border-left: none !important;
    padding-left: 0;
  }

  .footer-col:nth-child(2) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
  }

  .footer-col:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
  }

  .footer-col:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================================================
   RESPONSIVE – Mobile
   ================================================ */
@media (max-width: 540px) {
  .header-logo {
    max-height: 80px;
  }

  .hero-content {
    padding: 100px 20px 40px;
  }

  .hero-magic-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-price,
  .hero-text {
    display: none;
  }

  .header-container {
    padding: 10px 15px;
  }

  .price {
    font-size: 3rem;
  }

  .btn-large {
    padding: 14px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col+.footer-col {
    padding-left: 0;
    border-left: none;
  }
}