/* IMPORT MODERN STOER LETTERTYPE */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');

/* ALGEMENE STIJL */
body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #222;
}

/* ------------------ HEADER ------------------ */
.header {
  background-color: #FF6F00;
  color: white;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-left, .header-center, .header-right {
  flex: 1;
  text-align: center;
}

.header-left {
  text-align: left;
}

.header-right {
  text-align: right;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.logo {
  font-size: 28px;
  font-weight: 600;
  animation: fadeIn 1s ease-out;
  white-space: nowrap;
}

.slogan {
  font-size: 20px;
  font-weight: 500;
  animation: slideInRight 1s ease-out;
}

.subtitle {
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  color: #FFF3E0;
  text-transform: none;
}

/* ------------------ MENU ------------------ */
.menu {
  background-color: #FFA000;
  padding: 10px 0;
  text-align: center;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  border-top: 1px solid #FFB300;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.menu ul li a:hover {
  background-color: #FF8F00;
}

/* ------------------ MAIN ------------------ */
main {
  padding: 30px;
  text-align: center;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ------------------ VOORBEELDLIJST ------------------ */
.voorbeeld-lijst {
  list-style: none;
  padding: 0;
  margin: 20px auto 0 auto;
  text-align: center;
}

.voorbeeld-lijst li {
  margin-bottom: 8px;
}

/* ------------------ BUTTON ------------------ */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #FF6F00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #e65c00;
}

/* ------------------ SECTIES / DIENSTEN ------------------ */
.section-box, .dienst-box {
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #222;
  text-align: center;
}

.section-box {
  background-color: #fff3e0;
}

.section-box h2, .dienst-box h2 {
  margin-top: 0;
  font-size: 24px;
  color: #FF6F00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-box p, .dienst-box p {
  font-size: 18px;
  line-height: 1.6;
}

.dienst-web { background-color: #fff8e1; }
.dienst-ontwikkeling { background-color: #f1f8e9; }
.dienst-productie { background-color: #e3f2fd; }
.dienst-contact { background-color: #fce4ec; }

/* ------------------ FOOTER ------------------ */
footer {
  background-color: #FF6F00;
  color: white;
  padding: 40px 20px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-section {
  max-width: 200px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  font-size: 14px;
}

/* ------------------ OVERIG ------------------ */
.hidden {
  display: none;
}

/* Animatieklassen */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-in {
  animation: slideIn 1s ease-out;
}

.animate-slide-in-delay {
  animation: slideIn 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Sleutelframes voor animaties */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Animatieklassen */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-in {
  animation: slideIn 1s ease-out;
}

.animate-slide-in-delay {
  animation: slideIn 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Sleutelframes voor animaties */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
