:root {
  --red: #ef1d1d;
  --yellow: #ffd400;
  --black: #111111;
  --white: #ffffff;
  --soft: #f6f6f6;
  --line: rgba(0, 0, 0, 0.1);
  --muted: #626262;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 22px 54px rgba(0, 0, 0, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.94)),
    url("assets/poelman-outlet-banner.jpg") center top / cover fixed no-repeat;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.logo img {
  width: min(430px, 58vw);
  height: auto;
}

.header-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.phone-link {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.phone-link strong {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(255, 212, 0, 0.26);
}

.button-facebook {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(239, 29, 29, 0.26);
}

.button-facebook:hover {
  box-shadow: 0 18px 36px rgba(239, 29, 29, 0.36);
}

.hero {
  padding: 38px 0 24px;
}

.hero-card {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)),
    url("assets/poelman-outlet-banner.jpg") center / cover no-repeat;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 710px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1,
.section-heading h2,
.opening-card h2 {
  margin: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  max-width: 650px;
  margin: 20px 0 26px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
}

.info-section,
.opening-section,
.ads-section {
  padding: 24px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(239, 29, 29, 0.28);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.info-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.info-card strong {
  font-size: 1.04rem;
}

.opening-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.opening-card h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.opening-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.opening-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.opening-list span {
  font-weight: 900;
}

.opening-list strong {
  color: var(--red);
}

.ads-section {
  padding-bottom: 54px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 18px;
  justify-content: center;
}

.ad-item {
  width: 300px;
  height: 300px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ad-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-hover);
}

.ad-item img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.ad-item:hover img {
  transform: scale(1.04);
}

.facebook-cta {
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadow);
}

.facebook-cta h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.facebook-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 240px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--yellow);
}

@media (max-width: 1320px) {
  .ad-grid {
    grid-template-columns: repeat(3, 300px);
  }
}

@media (max-width: 1020px) {
  .header-inner,
  .facebook-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .info-grid,
  .opening-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-grid {
    grid-template-columns: repeat(2, 300px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .logo img {
    width: min(100%, 360px);
  }

  .hero-card {
    min-height: auto;
  }

  .info-grid,
  .opening-list,
  .ad-grid {
    grid-template-columns: 1fr;
  }

  .ad-item,
  .ad-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .button,
  .phone-link {
    width: 100%;
    text-align: center;
  }

  .header-actions,
  .hero-buttons {
    width: 100%;
  }
}


/* Grote titels in Anton */
.hero h1,
.section-heading h2,
.opening-card h2,
.facebook-cta h3,
.site-footer strong {
  font-family: 'Anton', Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 980px);
  display: grid;
  place-items: center;
}

.lightbox-image {
  width: min(100%, 860px);
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  background: #ffffff;
}

.lightbox-button {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: rgba(239, 29, 29, 0.95);
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-button:hover {
  transform: scale(1.06);
  background: var(--red);
}

.lightbox-close {
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 52px;
  height: 72px;
  border-radius: 14px;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: -68px;
}

.lightbox-next {
  right: -68px;
}

.lightbox-counter {
  margin-top: 14px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 760px) {
  .lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    position: fixed;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: scale(1.06);
  }

  .lightbox-prev {
    left: 22px;
  }

  .lightbox-next {
    right: 22px;
  }

  .lightbox-image {
    max-height: calc(100vh - 150px);
  }
}

/* Aanpassing: button 'Naar Facebook' links uitlijnen bij de titel en tekst in de hero */
.hero-buttons {
  justify-content: flex-start;
}
