/* Algemene stijl */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-weight: 600;
    margin: 0 0 15px;
}

.btn {
    display: inline-block;
    background: #c8a03c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #a8822f;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    font-weight: 500;
    color: #333;
}

header nav ul li a.active {
    color: #c8a03c;
}

/* Hero sectie */
.hero {
    background: url('images/car.png') center/cover no-repeat;
    color: #fff;
    text-align: left;
    padding: 100px 40px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Contact formulier */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-container p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    font-size: 14px;
}
