:root {
  --ink: #141218;
  --denim: #1e3a5f;
  --indigo: #294b7a;
  --rust: #cf4a33;
  --sand: #f2efe9;
  --paper: #fcfbf7;
  --shadow: rgba(10, 8, 16, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(207, 74, 51, 0.12), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(30, 58, 95, 0.18), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f0e8 100%);
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  padding: 4.5rem clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
}

.hero__media {
  background:
    linear-gradient(140deg, rgba(20, 18, 24, 0.8), rgba(20, 18, 24, 0.2)),
    url("assets/hero-1.jpg") right center/cover no-repeat;
  border-radius: 28px;
  min-height: 320px;
  box-shadow: 0 24px 48px rgba(10, 8, 16, 0.18);
}

.hero__content {
  align-self: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  color: var(--denim);
  margin-bottom: 0.75rem;
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__note {
  font-weight: 600;
  color: var(--rust);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--denim);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.28);
}

.btn--ghost {
  border: 1px solid rgba(20, 18, 24, 0.2);
  color: var(--ink);
  background: var(--paper);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(10, 8, 16, 0.2);
}

.section {
  padding: 4rem clamp(1.5rem, 6vw, 6rem);
}

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

.section--about .section__grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  align-items: start;
}

.section h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--denim);
}

.section p {
  line-height: 1.6;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.chips span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
}

.mini-gallery {
  margin-top: 2rem;
}

.mini-gallery h3 {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--denim);
  margin-bottom: 1rem;
}

.mini-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.75rem;
}

.mini-gallery__grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(10, 8, 16, 0.18);
}

.mini-gallery__featured {
  grid-column: span 2;
  height: 210px;
}

.card {
  background: var(--paper);
  padding: 1.5rem 1.75rem;
  border-radius: 24px;
  box-shadow: 0 20px 36px var(--shadow);
}

.hours {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.muted {
  color: rgba(20, 18, 24, 0.65);
}

.section--gallery {
  background: var(--sand);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(10, 8, 16, 0.2);
  background: #fff;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__item--wide {
  grid-column: span 2;
  min-height: 260px;
}

.section--map .link {
  color: var(--denim);
  font-weight: 600;
  text-decoration: none;
}

.section--map .link:hover {
  text-decoration: underline;
}

.contact {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(20, 18, 24, 0.6);
  margin-bottom: 0.35rem;
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 18px 34px rgba(10, 8, 16, 0.18);
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 2rem clamp(1.5rem, 6vw, 6rem) 3rem;
  text-align: center;
  font-weight: 500;
  background: #fff;
  border-top: 1px solid rgba(20, 18, 24, 0.08);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .section--about .section__grid {
    grid-template-columns: 1fr;
  }

  .mini-gallery__grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .mini-gallery__featured {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .mini-gallery__grid {
    grid-template-columns: 1fr;
  }

  .mini-gallery__featured {
    grid-column: span 1;
    height: 190px;
  }
}
/* Tryb pełnoekranowy */
.fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.fullscreen-overlay img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* Efekt kliknięcia */
img {
  cursor: zoom-in;
}
.img-tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.img-tooltip {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  font-weight: 500;
}

.img-tooltip-wrapper:hover .img-tooltip {
  opacity: 0.9;
}
<style>
.fb-button-ambitious {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1877f2, #0f3b9a);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 28px;
  border-radius: 60px; /* mocno zaokrąglony */
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s, background 0.4s;
}

.fb-button-ambitious:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #145dbf, #0a2a70);
}

.fb-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  padding: 12px; /* większa ikona */
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.fb-icon-large svg {
  width: 32px; /* duża ikona */
  height: 32px;
  fill: #1877f2;
}

.fb-button-ambitious:hover .fb-icon-large {
  transform: rotate(20deg) scale(1.2); /* animacja obracania i powiększenia */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.fb-text {
  display: inline-block;
}

/* Animowany gradient tła (lekki efekt premium) */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.fb-button-ambitious {
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

/* Responsywność */
@media (max-width: 768px) {
  .fb-button-ambitious {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 20px;
  }

  .fb-icon-large {
    padding: 10px;
  }

  .fb-icon-large svg {
    width: 28px;
    height: 28px;
  }
}
</style>

<style>
.fb-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1877F2;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.1s;
}

.fb-button:hover {
  background-color: #145dbf;
  transform: translateY(-1px);
}

.fb-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.fb-text {
  display: inline-block;
}
</style>