/* ═══════════════════════════════════════════
   BASKONIA Z POLKĄ — Shared Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --cream: #F5F0E8;
  --dark: #1A1612;
  --warm: #8B6B47;
  --accent: #C4412F;
  --muted: #9E9082;
  --light-warm: #E8DDD0;
  --green: #2D4A2F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--light-warm);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,22,18,.08); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--dark); cursor: pointer;
}
.logo-mark {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--cream);
  letter-spacing: -1px;
  overflow: hidden;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: .5px; line-height: 1.2;
}
.logo-text span {
  display: block; font-size: 11px;
  font-family: 'Jost', sans-serif; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active-link { color: var(--accent); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; color: var(--dark);
  user-select: none; transition: color .2s;
}
.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle { color: var(--accent); }
.dropdown-toggle svg { width: 10px; transition: transform .2s; }
.dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 0px); right: 0;
  background: var(--dark);
  min-width: 240px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s ease;
  border-bottom: 2px solid var(--accent);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a {
  display: block; padding: 12px 24px;
  color: var(--cream) !important;
  font-size: 11px !important; letter-spacing: 2px !important;
  text-decoration: none; transition: background .15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.06); color: var(--accent) !important; }

.btn-contact {
  background: var(--accent);
  color: var(--cream) !important;
  padding: 10px 24px !important;
  letter-spacing: 2px;
  transition: background .2s !important;
}
.btn-contact:hover { background: #a33527 !important; color: var(--cream) !important; }

/* ── SHARED SECTION STYLES ── */
.section { padding: 100px 8vw; }
.section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300; line-height: 1.1; margin-bottom: 60px;
}

/* ── TOUR DETAIL ── */
.tour-hero {
  min-height: 75vh;
  display: flex; align-items: flex-end;
  padding: 0 8vw 80px; padding-top: 72px;
  position: relative; overflow: hidden;
}
.th-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.th-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.th-content { position: relative; z-index: 2; max-width: 700px; }
.th-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.th-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; color: var(--cream); line-height: .95; margin-bottom: 24px;
}
.th-subtitle { font-size: 16px; color: rgba(245,240,232,.65); line-height: 1.7; max-width: 500px; }
.th-decor-num {
  position: absolute; right: 6vw; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 20vw, 300px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.05);
  pointer-events: none; line-height: 1;
}

.tour-body { padding: 80px 8vw; }
.tour-two-col {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start;
}
.tour-desc { font-size: 16px; line-height: 1.9; color: #3a3330; margin-bottom: 40px; }
.tour-desc p { margin-bottom: 20px; }
.tour-desc strong { font-weight: 500; color: var(--dark); }

.tour-highlights { margin-bottom: 48px; }
.th-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.th-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--light-warm);
}
.th-item-icon { color: var(--accent); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.th-item-text { font-size: 14px; line-height: 1.6; color: #3a3330; }
.th-item-text strong {
  display: block; font-weight: 500; color: var(--dark);
  margin-bottom: 2px; font-size: 13px; letter-spacing: .5px;
}

.info-box {
  background: var(--dark); padding: 40px;
  position: sticky; top: 96px;
}
.ib-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--cream); margin-bottom: 24px;
}
.ib-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ib-row:last-of-type { border-bottom: none; }
.ib-key { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,.4); }
.ib-val { font-size: 14px; color: var(--cream); font-weight: 400; }
.ib-cta {
  display: block; text-align: center;
  background: var(--accent); color: var(--cream);
  padding: 16px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; margin-top: 28px; cursor: pointer;
  border: none; width: 100%; transition: background .2s;
  font-family: 'Jost', sans-serif;
}
.ib-cta:hover { background: #a33527; }

/* ── SHARED BUTTONS ── */
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: var(--cream);
  text-decoration: none; padding: 16px 32px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: all .25s; cursor: pointer; border: none;
  font-family: 'Jost', sans-serif;
}
.hero-cta:hover { background: var(--cream); color: var(--dark); }
.hero-cta span { font-size: 18px; }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(245,240,232,.3);
  color: var(--cream); text-decoration: none;
  padding: 14px 32px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: all .25s; cursor: pointer; background: transparent;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 8vw 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-brand {}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 12px;
}
.footer-tagline { font-size: 12px; color: rgba(245,240,232,.35); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,.4); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(245,240,232,.55);
  text-decoration: none; margin-bottom: 10px; transition: color .2s; cursor: pointer;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px; display: flex; justify-content: space-between;
}
.footer-copy { font-size: 11px; color: rgba(245,240,232,.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tour-two-col { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .th-decor-num { display: none; }
}
