/* Wolf Taxi / Transfer Zakopane — distinct colors, mobile-first */

:root {
  --color-bg: #0f1419;
  --color-surface: #1a222d;
  --color-surface-alt: #232d3a;
  --color-primary: #e8a54b;
  --color-primary-hover: #f0b85c;
  --color-accent: #4a9b8e;
  --color-text: #e8ecf0;
  --color-text-muted: #9ca8b6;
  --color-border: #2d3a4a;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --header-height: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Sticky header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* Header in hero (golden) style — first block only */
.site-header-hero {
  background: rgba(200, 155, 50, 0.98);
  border-bottom: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header-hero .header-inner {
  max-width: 1200px;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.logo-hero {
  color: #fff;
  font-size: 1.05rem;
}

.logo-hero:hover {
  color: #fff;
  opacity: 0.9;
}

.logo span {
  color: var(--color-primary);
  font-weight: 500;
}

.logo-hero span {
  color: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: var(--header-height);
}

.header-nav {
  display: none;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .header-nav a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .header-nav a:hover {
    color: #fff;
    opacity: 0.85;
  }
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.header-phone-hero {
  background: #fff;
  color: #2d2d2d;
}

.header-phone-hero:hover {
  background: #f5f5f5;
  color: #2d2d2d;
  transform: scale(1.02);
}

.header-phone:hover {
  background: var(--color-primary-hover);
  color: var(--color-bg);
  transform: scale(1.02);
}

.phone-icon {
  font-size: 1.1rem;
}

/* When scrolled past hero, header switches to dark (optional: add .site-header--scrolled via JS or keep golden) */

/* ----- Hero (default dark) ----- */
.hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-bg) 50%);
  padding: 3rem 1.25rem;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(74, 155, 142, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ----- Hero golden (first block — like reference) ----- */
.hero-golden {
  min-height: 0;
  padding: 0;
  background: #c89b32;
  background-image:
    linear-gradient(135deg, rgba(200, 155, 50, 0.94) 0%, rgba(175, 130, 35, 0.97) 50%, rgba(160, 115, 30, 0.95) 100%),
    radial-gradient(ellipse 120% 80% at 80% 20%, rgba(255, 230, 180, 0.2) 0%, transparent 50%);
  background-size: cover, cover;
  background-position: center, center;
  text-align: left;
}

.hero-overlay-golden {
  background: linear-gradient(90deg, rgba(200, 155, 50, 0.88) 0%, rgba(200, 155, 50, 0.6) 60%, transparent 100%);
  pointer-events: none;
}

.hero-golden .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  min-height: 65vh;
}

@media (min-width: 900px) {
  .hero-golden .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem 4rem;
    min-height: 75vh;
  }
}

.hero-golden .hero-content {
  max-width: 420px;
}

.hero-golden .hero-title,
.hero-golden .hero-tagline,
.hero-golden .hero-desc {
  color: #fff;
}

.hero-golden .hero-title {
  margin: 0 0 0.25rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-golden .hero-tagline {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  opacity: 0.95;
}

.hero-golden .hero-desc {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #2d2d2d;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: #f5f5f5;
  color: #2d2d2d;
  transform: scale(1.03);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

@media (min-width: 600px) {
  .hero-image {
    max-width: 100%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
}

.hero-tagline {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
}

.hero-desc {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- About intro ----- */
.about-intro {
  padding: 2.5rem 0;
  background: var(--color-surface);
}

.about-intro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-intro .lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 500;
}

.about-intro p:last-of-type {
  margin: 0;
  color: var(--color-text-muted);
}

/* ----- Gallery ----- */
.gallery {
  padding: 2.5rem 0;
  background: var(--color-bg);
}

.gallery h2 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  margin: 0;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.gallery-item figcaption strong {
  color: var(--color-primary);
}

@media (min-width: 600px) {
  .gallery-grid {
    gap: 1.5rem;
  }
}

/* ----- Routes ----- */
.routes {
  padding: 2.5rem 0;
  background: var(--color-surface);
}

.routes h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.routes-intro {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.route-card {
  padding: 1.25rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.route-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.route-card.highlight {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(232, 165, 75, 0.08) 0%, var(--color-surface-alt) 100%);
}

.route-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.route-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.route-card .price {
  display: inline-block;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

@media (min-width: 500px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1000px) {
  .routes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- Przejrzyste i konkurencyjne ceny — yellow block ----- */
.prices-block-wrap {
  padding: 2.5rem 1.25rem;
  background: var(--color-bg);
}

.prices-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: #e6b422;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
}

.prices-block-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.prices-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.prices-block-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

.prices-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.prices-block-list li strong {
  color: #fff;
  font-weight: 700;
}

@media (min-width: 500px) {
  .prices-block {
    padding: 2.25rem 2.25rem;
  }

  .prices-block-list li {
    font-size: 1rem;
  }
}

/* ----- Benefits ----- */
.benefits {
  padding: 2.5rem 0;
  background: var(--color-surface);
}

.benefits h2 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
}

.benefit-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- CTA ----- */
.cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #3d8277 100%);
  text-align: center;
}

.cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 600;
  color: #fff;
}

.cta-sub {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-phone {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.cta-phone:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: scale(1.03);
}

.cta-email {
  display: inline-block;
  padding: 0.75rem 1rem;
  color: #fff;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.cta-email:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ----- Footer ----- */
.site-footer {
  padding: 1.25rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ----- Utility: focus visible ----- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
