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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  text-align: center;
  padding: 40px 20px 10px;
  background: #fff;
}

.logo {
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: #2c3e50;
}

.tagline {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #666;
  margin-top: 4px;
}

.motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #999;
  margin-top: 2px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 20px 20px 30px;
}

.hero-image {
  max-width: 600px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary {
  background: #2c4a3e;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #1a3a2e;
  transform: translateY(-1px);
}

.btn-submit {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 25px;
}

.btn-submit:hover {
  background: #a93226;
  transform: translateY(-1px);
}

/* Sections */
.section {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.section p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* Diensten */
.dienst {
  margin-bottom: 35px;
}

.dienst h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Contact Form */
.contact-intro {
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  background: #fff;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2c4a3e;
}

.contact-form textarea {
  margin-bottom: 20px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: #f5f5f5;
  padding: 50px 20px 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #2c3e50;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #2c4a3e;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.8rem;
  color: #888;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.logo-small {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #999;
}

.scroll-top {
  font-size: 1.2rem;
  color: #888;
  transition: color 0.3s;
}

.scroll-top:hover {
  color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.8rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

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