/* ================================================
   whereweekendsstart.com – główny arkusz stylów
   ================================================ */

/* reset – żeby wszędzie wyglądało tak samo */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at top right, #11141c, #050508 60%);
  color: #f2ede4;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---- typografia ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { font-size: 1.05rem; color: #c4bcae; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- zmienne kolorów (bez CSS custom properties bo nie chcemy) ---- */

/* ---- HEADER ---- */
.site-hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; }

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10, 10, 15, 0.65);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hdr-logo-wrap { display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease; }
.hdr-logo-wrap:hover { transform: scale(1.02); }
.hdr-logo-img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; box-shadow: 0 2px 10px rgba(212,175,95,0.2); }
.hdr-logo-txt { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #ffdf6b; letter-spacing: 0.04em; text-shadow: 0 2px 15px rgba(255,223,107,0.3); }
.hdr-logo-txt span { color: #f2ede4; text-shadow: none; }

.hdr-nav-list { display: flex; align-items: center; gap: 36px; list-style: none; }
.hdr-nav-list li a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: #c4bcae; position: relative;
}
.hdr-nav-list li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #ffdf6b; transition: width 0.3s ease;
}
.hdr-nav-list li a:hover { color: #ffdf6b; }
.hdr-nav-list li a:hover::after { width: 100%; }

.hdr-cta-btn {
  display: inline-block; padding: 12px 28px; border: 1.5px solid #ffdf6b; border-radius: 30px;
  color: #ffdf6b; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(255,223,107,0.1);
  cursor: pointer;
}
.hdr-cta-btn:hover { background: #ffdf6b; color: #0a0a0f; box-shadow: 0 0 25px rgba(255,223,107,0.4); transform: translateY(-2px); }

/* burger */
.burger-btn {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 10000;
}
.burger-btn span { display: block; width: 28px; height: 2px; background: #f2ede4; transition: all 0.3s ease; border-radius: 2px; }
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: #ffdf6b; }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: #ffdf6b; }

/* mobile menu overlay */
.mob-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.95); z-index: 9998; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease; backdrop-filter: blur(15px);
}
.mob-menu-overlay.visible { opacity: 1; pointer-events: all; }
.mob-menu-overlay a {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #f2ede4;
  transition: all 0.3s ease; transform: translateY(20px); opacity: 0;
}
.mob-menu-overlay.visible a { transform: translateY(0); opacity: 1; }
.mob-menu-overlay.visible a:nth-child(2) { transition-delay: 0.1s; }
.mob-menu-overlay.visible a:nth-child(3) { transition-delay: 0.15s; }
.mob-menu-overlay.visible a:nth-child(4) { transition-delay: 0.2s; }
.mob-menu-overlay.visible a:nth-child(5) { transition-delay: 0.25s; }
.mob-menu-overlay.visible a:nth-child(6) { transition-delay: 0.3s; }
.mob-menu-overlay.visible a:nth-child(7) { transition-delay: 0.35s; }
.mob-menu-overlay.visible a:nth-child(8) { transition-delay: 0.4s; }

.mob-menu-overlay a:hover { color: #ffdf6b; transform: scale(1.05); }
.mob-close-btn {
  position: absolute; top: 24px; right: 36px; background: none; border: none;
  color: #f2ede4; font-size: 2.5rem; cursor: pointer; transition: transform 0.3s ease;
}
.mob-close-btn:hover { transform: rotate(90deg); color: #ffdf6b; }

/* ---- FOOTER ---- */
.site-ftr { background: linear-gradient(180deg, #050508 0%, #030305 100%); border-top: 1px solid rgba(255,223,107,0.1); padding: 80px 48px 32px; }

.ftr-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 64px; }

.ftr-brand-col .ftr-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #ffdf6b; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(255,223,107,0.2); }
.ftr-brand-col p { font-size: 0.95rem; color: #8c8378; line-height: 1.7; max-width: 320px; }

.ftr-col h5 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #ffdf6b; margin-bottom: 24px; }
.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ftr-col ul li a { font-size: 0.95rem; color: #8c8378; transition: all 0.3s ease; display: inline-block; }
.ftr-col ul li a:hover { color: #f2ede4; transform: translateX(5px); }

.ftr-contact-col p { font-size: 0.95rem; color: #8c8378; margin-bottom: 10px; }
.ftr-contact-col a { color: #c4bcae; transition: color 0.3s ease; border-bottom: 1px solid transparent; }
.ftr-contact-col a:hover { color: #ffdf6b; border-bottom-color: #ffdf6b; }

.ftr-bottom { border-top: 1px solid rgba(255,223,107,0.08); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ftr-bottom p { font-size: 0.85rem; color: #5a544e; }

/* ---- util klasy ---- */
.sec-pad { padding: 120px 48px; }
.sec-pad-sm { padding: 80px 48px; }
.container-max { max-width: 1320px; margin: 0 auto; }
.gold-accent { color: #ffdf6b; text-shadow: 0 0 20px rgba(255,223,107,0.3); }
.txt-muted { color: #8c8378; }

/* złota linia ozdobna */
.deco-line { width: 72px; height: 3px; background: linear-gradient(90deg, #ffdf6b, transparent); margin-bottom: 28px; border-radius: 2px; }
.deco-line-center { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, #ffdf6b, transparent); width: 120px; }

/* ---- BTN styles ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; padding: 16px 42px; 
  background: linear-gradient(135deg, #ffdf6b 0%, #d4af5f 100%); color: #050508;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 4px;
  box-shadow: 0 8px 25px rgba(255,223,107,0.25);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,223,107,0.4); }
.btn-primary:hover::after { left: 150%; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 40px; 
  border: 1px solid rgba(255,223,107,0.5); border-radius: 4px;
  color: #ffdf6b; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all 0.3s ease;
  background: rgba(255,223,107,0.03); backdrop-filter: blur(5px);
}
.btn-outline:hover { background: rgba(255,223,107,0.1); border-color: #ffdf6b; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,223,107,0.15); }

/* ---- dekoracyjna ramka zdjęcia ---- */
.photo-frame-deco {
  position: relative; padding: 10px; border-radius: 8px;
}
.photo-frame-deco::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 1px solid rgba(255,223,107,0.3); border-radius: 8px; pointer-events: none;
  transform: translate(15px, 15px); transition: transform 0.4s ease;
}
.photo-frame-deco:hover::before { transform: translate(8px, 8px); border-color: rgba(255,223,107,0.6); }
.photo-frame-deco img { position: relative; z-index: 1; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

/* ---- linia sekcji ozdobna pionowa ---- */
.v-deco-line {
  width: 1px; background: linear-gradient(180deg, rgba(255,223,107,0), rgba(255,223,107,0.4), rgba(255,223,107,0));
  position: absolute; height: 150%; top: -25%; left: 50%;
}

/* ---- tag etykieta ---- */
.sec-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #ffdf6b; border: 1px solid rgba(255,223,107,0.3);
  padding: 6px 16px; margin-bottom: 24px; border-radius: 30px;
  background: rgba(255,223,107,0.05); backdrop-filter: blur(5px);
}

/* ---- liczby statystyki ---- */
.stat-big { font-family: 'Playfair Display', serif; font-size: clamp(3rem,6vw,5.5rem); color: #ffdf6b; line-height: 1; text-shadow: 0 0 30px rgba(255,223,107,0.2); }

/* ---- separator ---- */
.sec-sep { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,223,107,0.15), transparent); }

/* ============ KARTY ============ */
.card-block { 
  background: rgba(15, 15, 22, 0.6); 
  border: 1px solid rgba(255,223,107,0.08); 
  padding: 40px; 
  border-radius: 12px; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.card-block::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #ffdf6b, #d4af5f); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.card-block:hover { transform: translateY(-10px); border-color: rgba(255,223,107,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,223,107,0.05); }
.card-block:hover::before { transform: scaleX(1); }

/* ============ RESPONSYWNOŚĆ ============ */
@media (max-width: 1024px) {
  .hdr-inner { padding: 16px 28px; }
  .sec-pad { padding: 90px 28px; }
  .sec-pad-sm { padding: 60px 28px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hdr-nav-list { display: none; }
  .hdr-cta-btn { display: none; }
  .burger-btn { display: flex; }
  .sec-pad { padding: 70px 20px; }
  .sec-pad-sm { padding: 50px 20px; }
  .site-ftr { padding: 64px 20px 32px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 40px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============ UTILITIES & SECTION STYLES ============ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.p-5 { padding: 3rem; }
.max-w-text { max-width: 700px; }
.rounded { border-radius: 12px; }

.bg-alt {
  background: linear-gradient(to right, rgba(15, 15, 22, 0.4), rgba(5, 5, 8, 0.6));
  border-top: 1px solid rgba(255,223,107,0.05);
  border-bottom: 1px solid rgba(255,223,107,0.05);
}
.bg-darker { background: rgba(5, 5, 8, 0.8); border: 1px solid rgba(255,223,107,0.08); }

.secondary-heading { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; color: #f2ede4; margin-bottom: 15px; }
.main-paragraph { font-size: 1.05rem; color: #c4bcae; line-height: 1.6; }

.wws-sec-cta { position: relative; }
.wws-cta-container {
  background: linear-gradient(135deg, rgba(20,20,28,0.95), rgba(10,10,15,0.98));
  border: 1px solid rgba(255,223,107,0.2);
  padding: 80px 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 30px rgba(255,223,107,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.wws-cta-container::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,223,107,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}

.wws-target-sec, .wws-faq-short, .wws-lux-sec { position: relative; }
.wws-target-sec::after, .wws-lux-sec::after {
  content: ''; position: absolute; bottom: 0; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,223,107,0.1), transparent);
}
