/* css/style.css */

/* --- BASIS INSTELLINGEN --- */
body {
    background-color: #111111;
    color: #F3F4F6;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    margin-top: 0;
}

/* --- MOBIEL VRIENDELIJKHEID --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- FORMULIEREN (algemeen, niet specifiek HubSpot iframe) --- */
input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* --- EXTRA'S --- */
html {
    scroll-behavior: smooth;
}

::selection {
    background: #FF5722;
    color: white;
}

/* --- HUBSPOT FORMULIER STYLING (LET OP: iframe kan dit negeren) --- */
.hs-form-field {
    margin-bottom: 20px !important;
}

.hs-form label {
    color: #F3F4F6 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

.hs-input,
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form select,
.hs-form textarea {
    background-color: #222 !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.hs-input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
    border-color: #FF5722 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.2) !important;
}

.hs-form input[type="file"] {
    background-color: transparent !important;
    border: none !important;
    color: #9CA3AF !important;
    padding: 0 !important;
}

.hs-button.primary {
    background-color: #FF5722 !important;
    border: 1px solid #FF5722 !important;
    color: white !important;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 12px 30px !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 10px !important;
    transition: background-color 0.3s !important;
}

.hs-button.primary:hover {
    background-color: #e64a19 !important;
    border-color: #e64a19 !important;
}

.hs-error-msgs label {
    color: #ff4444 !important;
    font-weight: normal !important;
    font-size: 12px !important;
}

/* --- Mobiel menu (zelfde gedrag als eerder inline) --- */
#mobile-menu {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* --- HubSpot iframe sizing (layout; echte kleuren via JS injectie) --- */
#hubspotFormTarget iframe {
  width: 100% !important;
  border: 0 !important;
}
