/* RESET — identyczny wygląd w każdej przeglądarce */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* KONTEJNERY */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-logo {
  height: 60px;
  width: auto;
  display: block;
}

/* TOP ACTION ICONS — zmniejszone */
.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-actions .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.top-actions .icon {
  width: 20px;
  height: 20px;
  fill: #333;
}

/* HAMBURGER */
#nav-toggle {
  display: none;
}

.hamburger-label {
  display: none;
  cursor: pointer;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  width: 28px;
  height: 3px;
  background: #333;
  display: block;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
}

.hamburger-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 100%;
  height: 3px;
  background: inherit;
}

.hamburger-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 100%;
  height: 3px;
  background: inherit;
}

/* NAVIGATION */
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s;
}

/* MENU BUTTON COLORS — jak w oryginale */
.menu-btn.mint { color: #4CC9A7; }
.menu-btn.blue { color: #4C8BF5; }
.menu-btn.lav  { color: #A78BFA; }
.menu-btn.teal { color: #2CB9C8; }
.menu-btn.pink { color: #FF6FAE; }

.nav-list a:hover {
  opacity: 0.7;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background: #6CC4FF;
  color: #fff;
}

/* HERO */
.hero {
  padding: 60px 0;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 24px;
}

/* ANIMATORKA — obraz płaski, bez cienia */
.animatorka {
  display: flex;
  align-items: center;
  gap: 20px;
}

.anim-img img {
  width: 260px;
  height: auto;
  display: block;

  /* USUNIĘCIE WSZYSTKICH RÓŻNIC PRZEGLĄDARKOWYCH */
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  filter: none !important;
  background: transparent !important;

  /* SAFARI FIX */
  -webkit-box-shadow: none !important;
  -webkit-filter: none !important;
}

/* OFERTA */
.center-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-btn {
  display: block;
  padding: 24px;
  border-radius: 16px;
  background: #F7F7F7;
  text-decoration: none;
  color: #222;
  transition: background 0.2s;
}

.service-btn:hover {
  background: #eaeaea;
}

/* AKTUALNOŚCI */
.fb-wrap {
  display: flex;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #fafafa;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 12px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 6px;
}

.socials a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #333;
}

.credit {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* MOBILE — identyczny wygląd na iPhone/Android */
@media (max-width: 900px) {

  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }

  .nav-list {
    display: none;
  }

  .hamburger-label {
    display: block;
  }

  #nav-toggle:checked ~ .nav-wrap .nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
  }
}

/* DESKTOP — hamburger ukryty */
@media (min-width: 901px) {
  .hamburger-label {
    display: none !important;
  }

  .nav-list {
    display: flex !important;
  }
}
