/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #2d3142;
  background: #fffaf3;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: 'Baloo 2', system-ui, sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

:root {
  --coral: #ff7e5f;
  --coral-dark: #ef6043;
  --turq: #4ec0c8;
  --mint: #8edcae;
  --sun: #ffd166;
  --pink: #ff9eb5;
  --lilac: #c8a8e9;
  --ink: #2d3142;
  --cream: #fffaf3;
  --cream-2: #fff2e0;
  --paws: #e9f6f7;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(255,126,95,.6);
}
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.btn--full { width: 100%; margin-top: 12px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255, 250, 243, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.nav__brand .paw { font-size: 28px; }
.nav__brand-text strong { display: block; font-family: 'Baloo 2'; font-size: 1.15rem; color: var(--coral); }
.nav__brand-text small  { font-size: .78rem; color: #6c6f7a; }

.nav__menu { display: flex; align-items: center; gap: 22px; }
.nav__menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
}
.nav__menu a:not(.nav__phone)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; background: var(--coral); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s;
}
.nav__menu a:not(.nav__phone):hover::after { transform: scaleX(1); }
.nav__phone {
  background: var(--coral);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
}
.nav__phone:hover { background: var(--coral-dark); }

.nav__toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd6c0 50%, #d4f1f1 100%);
  padding: 80px 0 140px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('assets/grafiki/lapki-tlo.jpg') center/cover no-repeat;
  opacity: .35;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255,209,102,.3), transparent 50%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--coral);
  margin-bottom: 18px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.15);
}
.hero h1 { color: var(--ink); }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--coral) 0%, var(--turq) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__lead {
  font-size: 1.15rem;
  color: #4a4e5c;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Baloo 2';
  font-size: 2.2rem;
  color: var(--coral);
  line-height: 1;
}
.hero__stats span { font-size: .85rem; color: #6c6f7a; max-width: 130px; }

.hero__cat {
  position: relative;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
.hero__cat img { max-width: 320px; margin: 0 auto; filter: drop-shadow(0 20px 25px rgba(0,0,0,.15)); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.float { animation: float 5s ease-in-out infinite; }
.float--delay { animation-delay: 2s; }

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; height: 80px; fill: var(--cream); }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; position: relative; }
.section--cream { background: var(--cream-2); }
.section--paws {
  background: linear-gradient(180deg, var(--cream) 0%, #e9f6f7 100%);
  position: relative;
}
.section--paws::before {
  content: '🐾';
  position: absolute; top: 60px; left: 5%;
  font-size: 60px; opacity: .15; transform: rotate(-20deg);
}
.section--paws::after {
  content: '🐾';
  position: absolute; bottom: 60px; right: 5%;
  font-size: 80px; opacity: .15; transform: rotate(15deg);
}

.section__head { margin-bottom: 50px; }
.section__head.center { text-align: center; }
.section__head h2 { margin-bottom: 10px; }
.section__sub { font-size: 1.1rem; color: #5e6271; max-width: 640px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: 'Baloo 2';
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--coral);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ============ O NAS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.two-col__media {
  position: relative;
  height: 380px;
}
.two-col__media img {
  position: absolute;
  width: 230px;
}
.two-col__media img:first-child { top: 0; left: 0; }
.two-col__media img:last-child  { bottom: 0; right: 0; width: 200px; transform: scaleX(-1); }

.lead { font-size: 1.15rem; }
.sign { font-style: italic; color: #5e6271; margin-top: 24px; }
.brand-mark { color: var(--coral); font-weight: 700; font-style: normal; }

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 6px 18px -10px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.18); }
.feature__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}
.feature--pink   .feature__icon { background: #ffe1e8; }
.feature--mint   .feature__icon { background: #d6f4e3; }
.feature--yellow .feature__icon { background: #fff1c4; }
.feature--blue   .feature__icon { background: #d6efef; }
.feature--coral  .feature__icon { background: #ffe1d4; }
.feature--purple .feature__icon { background: #ece0f6; }

.feature p { color: #5e6271; margin: 0; font-size: .98rem; }

/* ============ ACTIVITIES ============ */
.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative; z-index: 1;
}
.activity {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.18);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.activity:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 0 18px 30px -12px rgba(0,0,0,.22); }
.activity__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.activity__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.activity__img--cat {
  display: flex; align-items: center; justify-content: center;
}
.activity__img--cat img {
  width: 70%; height: 70%; object-fit: contain;
  animation: float 5s ease-in-out infinite;
}
.activity__body { padding: 22px 24px 26px; }
.activity__body h3 { color: var(--ink); margin-bottom: 8px; }
.activity__body p  { color: #5e6271; margin: 0; font-size: .95rem; }

/* ============ TIMELINE ============ */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 95px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(180deg, var(--coral), var(--turq));
  border-radius: 2px;
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
}
.timeline li::before {
  content: '🐾';
  position: absolute;
  left: 82px;
  top: 18px;
  width: 28px; height: 28px;
  background: white;
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--coral);
}
.timeline .time {
  font-family: 'Baloo 2';
  font-weight: 600;
  color: var(--coral);
  font-size: .95rem;
  padding-top: 16px;
}
.timeline h4 {
  font-family: 'Baloo 2';
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.timeline p { margin: 0; color: #5e6271; font-size: .95rem; }

/* ============ EVENTS ============ */
.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event {
  background: white;
  padding: 26px;
  border-radius: 22px;
  border-top: 5px solid var(--coral);
  box-shadow: 0 6px 18px -10px rgba(0,0,0,.12);
  transition: transform .25s;
}
.event:nth-child(2n)   { border-top-color: var(--turq); }
.event:nth-child(3n)   { border-top-color: var(--sun); }
.event:nth-child(4n)   { border-top-color: var(--pink); }
.event:nth-child(5n)   { border-top-color: var(--mint); }
.event:hover { transform: translateY(-4px) rotate(.5deg); }
.event__date {
  display: inline-block;
  font-family: 'Baloo 2';
  font-weight: 600;
  font-size: .85rem;
  color: white;
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.event h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.event p { color: #5e6271; font-size: .92rem; margin: 0; }

/* ============ FB CTA ============ */
.fb-cta {
  background: linear-gradient(135deg, #1877f2 0%, #2960c4 100%);
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.fb-cta::before, .fb-cta::after {
  content: '🐾';
  position: absolute;
  font-size: 140px;
  opacity: .07;
}
.fb-cta::before { top: -20px; left: -20px; transform: rotate(-15deg); }
.fb-cta::after  { bottom: -40px; right: -20px; transform: rotate(20deg); }
.fb-cta__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.fb-cta__text h2 { color: white; margin-bottom: 14px; }
.fb-cta__text p  { color: rgba(255,255,255,.9); margin: 0; font-size: 1.1rem; }

.fb-cta__btn {
  display: flex; align-items: center; gap: 18px;
  background: white;
  color: #1877f2;
  padding: 22px 32px;
  border-radius: 22px;
  text-decoration: none;
  font-family: 'Baloo 2';
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
  transition: transform .2s;
  justify-self: end;
}
.fb-cta__btn:hover { transform: translateY(-4px) scale(1.02); }
.fb-cta__btn svg { width: 56px; height: 56px; flex-shrink: 0; }
.fb-cta__btn small { font-size: .85rem; font-weight: 600; color: #5e6271; }

/* ============ CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 14px 40px -20px rgba(0,0,0,.18);
}
.contact__row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}
.contact__row:last-of-type { border-bottom: none; }
.contact__icon {
  font-size: 26px;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2);
  border-radius: 14px;
  flex-shrink: 0;
}
.contact__info a { color: var(--coral); text-decoration: none; font-weight: 600; }
.contact__info a:hover { text-decoration: underline; }

.contact__map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.2);
}
.contact__map iframe { width: 100%; height: 100%; border: none; min-height: 420px; }
.contact__map-link {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Baloo 2';
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.3);
  white-space: nowrap;
}
.contact__map-link:hover { background: var(--coral); color: white; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 40px 0;
  font-size: .92rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer__paws { text-align: center; font-size: 1.6rem; letter-spacing: 4px; }
.footer__copy { text-align: right; color: rgba(255,255,255,.6); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px;
    background: var(--coral);
    border: none; border-radius: 12px; cursor: pointer;
  }
  .nav__toggle span { width: 20px; height: 2px; background: white; border-radius: 2px; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 6px;
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
    display: none;
  }
  .nav__menu.open { display: flex; }
  .nav__menu a { padding: 12px 16px; border-radius: 12px; }
  .nav__menu a:hover { background: var(--cream-2); }
  .nav__phone { text-align: center; }

  .hero { padding: 50px 0 100px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cat { display: none; }
  .hero__stats { gap: 18px; }
  .hero__stats strong { font-size: 1.6rem; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col__media { height: 220px; }
  .two-col__media img { width: 150px !important; }

  .features { grid-template-columns: 1fr 1fr; }
  .activities { grid-template-columns: 1fr 1fr; }
  .events { grid-template-columns: 1fr 1fr; }

  .fb-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .fb-cta__btn { justify-self: center; }

  .contact { grid-template-columns: 1fr; padding: 28px; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__copy { text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .features { grid-template-columns: 1fr; }
  .activities { grid-template-columns: 1fr; }
  .events { grid-template-columns: 1fr; }
  .timeline::before { left: 65px; }
  .timeline li { grid-template-columns: 80px 1fr; gap: 14px; }
  .timeline li::before { left: 52px; }
  .fb-cta__btn { font-size: 1.1rem; padding: 18px 22px; }
  .fb-cta__btn svg { width: 44px; height: 44px; }
  h1 { font-size: 2.2rem; }
}
