@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --bg-primary: #fcfbf9;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #090d16;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --accent-slate: #1e293b;
  --accent-dark: #020617;
  --accent-light: #f1f5f9;
  --accent-ice: #0284c7;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
}

.pachinkopl-header, .polandcharm-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-topbar {
  background: var(--accent-dark);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 6px 0;
  letter-spacing: 0.05em;
}

.header-main {
  padding: 16px 0;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
  transition: color 0.25s ease;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #0284c7;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0284c7;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-content {
  width: 320px;
  max-width: 88vw;
  height: 100%;
  background: #ffffff;
  padding: 36px 28px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.section-editorial {
  position: relative;
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-editorial {
    padding: 55px 0;
  }
  html, body{ max-width: 100%; overflow-x: hidden; }
}

.hero-editorial {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.hero-overlay-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 4px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-tag-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f8fafc;
}

.card-luxury {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.card-bg-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.btn-primary-hotel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #020617;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #020617;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-hotel:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.3);
}

.btn-outline-hotel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: #020617;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-hotel:hover {
  background: #020617;
  color: #ffffff;
  border-color: #020617;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #020617;
  border-color: #ffffff;
}

.floating-reservation-bar {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  margin-top: -50px;
  position: relative;
  z-index: 30;
}

.img-frame {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-frame:hover img {
  transform: scale(1.04);
}

.architectural-timeline-item {
  position: relative;
  padding-left: 36px;
  border-left: 1px solid #cbd5e1;
}

.architectural-timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: #0284c7;
  border-radius: 50%;
}

.faq-accordion-item {
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: border-color 0.25s ease;
}

.faq-accordion-item:hover {
  border-color: #94a3b8;
}

.faq-accordion-header {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-accordion-body {
  padding: 0 24px 22px 24px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.interactive-map-wrapper {
  position: relative;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 480px;
}

.interactive-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.form-input-luxury {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  font-size: 0.92rem;
  color: #0f172a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-input-luxury:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-input-luxury.has-error {
  border-color: #e11d48;
}

.form-error-msg {
  color: #e11d48;
  font-size: 0.78rem;
  margin-top: 4px;
}

.form-loader-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}

.toast-notification.active {
  transform: translateY(0);
}

.footer-main {
  background: #090d16;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  padding: 80px 0 30px 0;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-heading {
  color: #f8fafc;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 22px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  border-radius: 50%;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-2px);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
