/* Koloseum Bilety — szablon Wanderlust */

body {
  font-family: "DM Sans", system-ui, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

.travel-card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
}

.travel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

#mobile-menu {
  transition: all 0.3s ease-in-out;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer:not(.hidden) {
  max-height: 1000px;
}

button:focus,
a:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

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

.prose-block {
  border-left: 4px solid #f97316;
}

/* —— Site header —— */
.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

.site-logo-link {
  border-radius: 0.5rem;
  transition: opacity 0.2s ease;
}

.site-logo-link:hover {
  opacity: 0.92;
}

.site-nav-link {
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1280px) {
  .site-nav-link {
    font-size: 0.875rem;
    padding: 0.4rem 0.85rem;
  }
}

.site-nav-link:hover {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.08);
}

/* Header CTA — keep distinct from body buttons */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 55%, #c2410c 100%);
  box-shadow: 0 2px 12px rgba(234, 88, 12, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.48);
  color: #fff;
}

.nav-cta.w-full {
  width: 100%;
  box-sizing: border-box;
}

/* „Więcej” dropdown */
.site-nav-details {
  position: relative;
  margin: 0 0.15rem;
}

.site-nav-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
  border: 1px solid rgba(209, 213, 219, 0.95);
  background: rgba(249, 250, 251, 0.9);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-nav-summary::-webkit-details-marker {
  display: none;
}

.site-nav-summary::after {
  content: " ▾";
  font-size: 0.65em;
  opacity: 0.75;
}

.site-nav-details[open] .site-nav-summary {
  border-color: rgba(249, 115, 22, 0.45);
  color: #c2410c;
  background: rgba(255, 247, 237, 0.95);
}

.site-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 18rem;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 20px 50px -16px rgba(15, 23, 42, 0.2);
  z-index: 60;
}

.site-nav-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.site-nav-panel-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 0.5rem;
}

.site-nav-panel a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.25rem;
  transition: color 0.15s ease;
}

.site-nav-panel a:hover {
  color: #ea580c;
}

.mobile-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid rgba(243, 244, 246, 0.9);
  transition: color 0.15s ease;
}

.mobile-nav-link:hover {
  color: #ea580c;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link--end {
  border-bottom: none;
  padding-top: 0.25rem;
}

/* Body / hero buttons (not .nav-cta) */
.btn-body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.3;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
}

.btn-body-primary {
  color: #fff;
  background: linear-gradient(145deg, #fb923c 0%, #f97316 40%, #ea580c 100%);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-body-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-body-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-body-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
  color: #fff;
}

.btn-body-soft {
  color: #1f2937;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.btn-body-soft:hover {
  border-color: rgba(251, 146, 60, 0.55);
  color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}

/* Editorial internal links — readable, not “SEO button” spam */
.link-editorial {
  color: #b45309;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(180, 83, 9, 0.35);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.link-editorial:hover {
  color: #c2410c;
  text-decoration-color: rgba(194, 65, 12, 0.75);
}

/* —— Inner pages: hero (editorial, no overlap card) —— */
.inner-hero {
  background: linear-gradient(180deg, #f3f4f6 0%, #fafafa 45%, #ffffff 100%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.inner-hero__wrap {
  padding-top: 0.25rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .inner-hero__wrap {
    padding-bottom: 2.75rem;
  }
}

.inner-hero__crumb {
  font-size: 0.8125rem;
  color: #6b7280;
  padding: 0.65rem 0 1rem;
  line-height: 1.5;
}

.inner-hero__fig {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 18px 36px -16px rgba(15, 23, 42, 0.18);
}

.inner-hero__img {
  display: block;
  width: 100%;
  height: clamp(11rem, 32vw, 22rem);
  object-fit: cover;
  object-position: center 42%;
}

@media (min-width: 768px) {
  .inner-hero__img {
    height: clamp(13rem, 28vw, 24rem);
  }
}

.inner-hero__lead {
  max-width: 40rem;
  padding-top: 1.5rem;
  margin: 0;
}

@media (min-width: 768px) {
  .inner-hero__lead {
    padding-top: 1.85rem;
  }
}

.inner-hero__kicker {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a3412;
}

.inner-hero__h1 {
  margin: 0.6rem 0 0;
  padding: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #111827;
}

.inner-hero__lead::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 1.15rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #c2410c, #fb923c);
}
