/* =========================================
   SALESCONCEPT - FULL SITE STYLING
   Kleurenpalet: Deep Navy, Gold & Professional Grey
   ========================================= */

:root {
    --primary-color: #05192d;    /* Deep Navy (Autoriteit) */
    --secondary-color: #c5a059;  /* Gold/Brass (Succes) */
    --accent-color: #0077b5;     /* LinkedIn Blue */
    --bg-light: #f4f7f9;         /* Zachte grijze achtergrond */
    --text-dark: #1a1a1a;        /* Bijna zwart voor leesbaarheid */
    --white: #ffffff;
}

/* Basis instellingen */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

/* Header & Navigatie */
header {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

header h1 {
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 2.5rem;
}

nav {
    background: var(--white);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero Sectie met Achtergrondfoto */
.hero {
    padding: 140px 20px;
    /* De gradient is lichter gemaakt (0.5) omdat de nieuwe foto al lichter is */
    background: linear-gradient(rgba(5, 25, 45, 0.5), rgba(5, 25, 45, 0.5)), 
                url('images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Call to Action Button */
.cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.cta-button:hover {
    background-color: #b08d48;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Content Containers */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

h2 {
    color: var(--primary-color);
    border-left: 6px solid var(--secondary-color);
    padding-left: 20px;
    margin-top: 50px;
    font-size: 2rem;
}

/* Formulier Styling (Contactpagina) */
form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid #d1d8dd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

button[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border: none;
    width: 100%;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: var(--secondary-color);
}

/* Footer Styling */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}

footer p {
    margin: 8px 0;
    opacity: 0.9;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-social {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive (voor mobiel) */
@media (max-width: 768px) {
    .hero h2 { font-size: 2rem; }
    .container { width: 95%; }
    nav a { margin: 0 10px; font-size: 0.8rem; }
}