
/*
Theme Name: VerhuisBV
Theme URI: http://example.com/verhuisbv
Author: Jouw Naam
Author URI: http://example.com
Description: Een WordPress thema gebaseerd op de VerhuisBV homepagina
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verhuisbv
*/

/* Algemene stijlen */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0044cc;
  color: white;
}

header .logo {
  font-size: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 50px;
  background: url('<?php echo get_template_directory_uri(); ?>/images/hero-background.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.hero h1 {
  font-size: 48px;
}

.hero p {
  font-size: 24px;
}

.hero button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #ff6600;
  border: none;
  color: white;
  cursor: pointer;
}

.voordelen, .diensten, .testimonials, .offerte {
  padding: 50px 20px;
  text-align: center;
}

.voordelen .voordeel, .diensten .dienst, .testimonials .testimonial {
  display: inline-block;
  margin: 10px;
  width: 30%;
  vertical-align: top;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer .footer-links, .contact-info, .social-media {
  margin: 10px 0;
}

footer .footer-links a, .social-media a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}
