/* Weegbrug Moerdijk - Clean business design */

:root {
  --color-text: #333;
  --color-text-muted: #555;
  --color-accent: #1a5f4a;
  --color-accent-hover: #0d3d2f;
  --color-bg: #f8f9fa;
  --color-white: #fff;
  --color-border: #e0e0e0;
  --max-width: 1250px;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  display: flex;
  justify-content: center;
  background: var(--color-bg);
}

.hero img {
  max-width: var(--max-width);
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--color-white);
}

.hero-overlay h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-overlay .tagline {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  opacity: 0.95;
}

.hero-overlay .price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-overlay .contact-info {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.hero-overlay .phone {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
}

.hero-overlay .phone a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
}

.hero-overlay .phone a:hover {
  text-decoration: underline;
}

/* Content */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.content section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.content h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}

.content p {
  margin: 0 0 1rem;
}

.content p:last-child {
  margin-bottom: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem !important;
}

.gallery img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
  object-fit: cover;
}

.gallery img:nth-child(2),
.gallery img:nth-child(3) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .gallery img:first-child {
    grid-row: auto;
  }
}

/* Benefits list */
.benefits {
  margin: 0;
  padding-left: 1.25rem;
}

.benefits li {
  margin-bottom: 0.6rem;
}

.benefits li:last-child {
  margin-bottom: 0;
}

/* CTA section */
.cta-section {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
}

.cta-section h2 {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.cta-section a {
  color: var(--color-white);
  font-weight: 600;
}

.cta-section .phone-large {
  font-size: 1.25rem;
  margin-top: 0.75rem !important;
}

.contact-box-inline {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 0.95rem;
}

/* Contact box (top & bottom) */
.contact-box {
  text-align: center;
  font-weight: 500;
}

.contact-box .contact-box-title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  border: none;
  padding: 0;
}

.contact-box .contact-box-subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.contact-box .contact-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem !important;
}

.contact-box .contact-phone {
  font-size: 1.125rem;
  margin: 0.5rem 0 !important;
}

.contact-box .contact-phone a {
  font-weight: 600;
}

.contact-box .contact-hours {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 !important;
}

/* Donatie section (image moved here) */
.donatie-section {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.donatiebox-img {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 560px) {
  .donatie-section {
    flex-direction: column;
  }

  .donatiebox-img {
    width: 100px;
  }
}

/* Map */
.map-wrap {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-wrap iframe {
  display: block;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  text-align: center;
}

.site-footer.cta-section h2 {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.site-footer.cta-section a {
  color: var(--color-white);
  font-weight: 600;
}
