/*
Theme Name: Verbumaurum Theme
Theme URI: http://voorbeeld.nl
Author: Jan
Author URI: http://voorbeeld.nl
Description: Zelfgemaakt WordPress theme
Version: 1.0
License: GPLv2 or later
*/


@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');

.inconsolata-400 {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
  margin: 0;
  background: black;
  font-family: "Inconsolata", monospace;
  font-size: 1rem;
  line-height: 1.6;
}
p, li, a{
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
}

h1 {
  color: rgb(236, 168, 21);
}

h2 {
  color: rgb(236, 168, 21);
}

h4 {
  color: rgb(236, 168, 21);
}

ul {
  margin: 10px 0 20px 20px;
  list-style: none;   
  padding-left: 0;    
}

ul li::before {
  content: "✔";       
  color: rgb(236, 168, 21);       
  font-weight: bold;  
  display: inline-block;
  width: 1em;         
  margin-left: -1em;  
}

p {
  margin: 10px 0;
  color: white;
}

.number{
  color: rgb(236, 168, 21);
  font-weight: bold;
  font-size: 2rem;
}

.container {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.hero-section {
  background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2069&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.wp-block-button__link,
.cta {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  position: relative;  
  z-index: 2;
}
.hero-section p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Afbeeldingen */
.wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; 
}

.wp-block-image.size-large img {
  max-width: 800px;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* HEADER */
.site-header {
  width: 100%;
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  border: none;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-text-wrap {
  display: flex;
  align-items: center;
  gap: 15px; 
}

.site-logo {
  height: 60px;
  width: auto;
  display: block;
}
/* Branding */
.site-header h1,
.site-title {
  font-size: 1.8rem;
  color: #222;
  margin: 0;
}
.site-title h1 {
  margin: 0;
  font-size: 1.9rem;
}

.site-title p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
}
.site-header p,
.site-tagline {
  font-weight: 600;
  color: #d4af37;
  margin: 0;
}

/* Taalnavigatie met vlaggen */
.language-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.lang-flag img {
  width: 32px;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-flag img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* Responsieve header */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .language-nav {
    margin-top: 1rem;
  }
}
.wp-block-columns {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
}

.wp-block-column {
  flex: 1;
  min-width: 0;
  color: white;
  background-color: black;
  border: 1px solid rgb(236, 168, 21);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(236,168, 21, 0.8);
  padding: 1em;
}

/* KNOPPEN EN CTA'S */

.cta {
  display: inline-block;
  background-color: black !important;
  color: rgb(236, 168, 21) !important;
  border-width: 1px !important;
  border-radius: 20px !important;
  box-shadow: 0 0 10px rgba(236, 168, 21, 0.8) !important;
  padding: 10px 20px !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.cta:hover {
  background-color: rgb(236, 168, 21) !important;
  color: black !important;
  border: 1px solid rgb(0, 0, 0) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
  transform: translateY(-2px);
}

.wp-block-buttons {
  display: flex;
  gap: 25px;
}

.wp-block-button__link{
  min-width: 200px;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-color: rgb(236, 168, 21);
  border-width: 1px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(236, 168, 21, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
/* === Forminator formulier (zelfde stijl als .contact-form) === */

/* Titel & subtitel */
.forminator-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.forminator-subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Labels */
.forminator-label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  display: block;
}

/* Beschrijvingen / uitleg onder veld */
.forminator-description {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 4px;
}

/* Tekstvelden en tekstarea */
.forminator-input,
.forminator-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgb(236, 168, 21);
  box-shadow: 0 0 10px rgba(236, 168, 21, 0.8);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}

/* Focus effect */
.forminator-input:focus,
.forminator-textarea:focus {
  border-color: #ffffff; 
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  outline: none;
}

/* Tekstveld extra */
.forminator-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Bestand upload */
.forminator-input[type="file"] {
  padding: 6px;
  border: none;
  background: transparent;
}

/* Verstuurknop */
.forminator-button-submit {
  background-color: rgb(236, 168, 21);
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

/* Hover effect */
.forminator-button-submit:hover {
  background-color: #d4af37;
  color: black;
  border: 1px solid rgb(236, 168, 21);
  box-shadow: 0 0 10px rgba(236, 168, 21, 0.8);
  border-radius: 6px;
  transform: translateY(-2px);
}

/* Uitlijning formulier */
.forminator-ui.forminator-custom-form {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* FOOTER */
.site-footer {
  width: 100%;
  background: #ffffff;
  color: #000000;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  border: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-title {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Footertekst */
.footer-address p,
.footer-contact p {
  color: black;
  margin: 0;
  line-height: 1.6;
}

/* Footerlinks */
.footer-column a {
  color: #d4af37;
  text-decoration: none;
}

.footer-column a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

/* Onderrand */
.footer-bottom {
  border-top: 1px solid #ffffff;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsieve footer */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* RESPONSIVE ALGEMEEN */
@media (max-width: 600px) {
  body {
    margin: 10px;
  }
  .container {
    padding: 10px;
  }
  .cta {
    padding: 8px 16px;
  }
}

.logo-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* De glans-overlay */
.logo-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0) 35%, 
    rgba(255,255,255,0.3) 40%,
    rgba(255,255,255,0.7) 45%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.7) 55%,
    rgba(255,255,255,0.3) 60%, 
    rgba(255,255,255,0) 65%
  );
  transform: rotate(15deg);
  animation: shine 4s infinite ease-in-out;
  pointer-events: none;
}

.logo-shine:hover::after {
  animation: shine 1.2s ease-in-out;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.logo-shine img {
  display: block;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.1));
}

