/*
Theme Name: VanPam Onderhoud
Theme URI: https://www.vanpam.nl
Author: VanPam (via Gemini)
Description: Een tijdelijk thema voor tijdens onderhoudswerkzaamheden.
Version: 1.0
*/

/* --- STIJL INSTELLINGEN --- */
:root {
    --primary-color: #D4A373; /* VanPam Goud */
    --text-color: #333333;
    --bg-overlay: rgba(255, 255, 255, 0.92);
}

* { box-sizing: border-box; }

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: #f0f0f0; /* Fallback kleur */
}

/* Achtergrond instellingen */
.bg-image {
    /* Pas deze URL aan naar jouw eigen foto in de Media Bibliotheek indien gewenst */
    background-image: url('https://images.unsplash.com/photo-1519689680058-324335c77eba?q=80&w=2070&auto=format&fit=crop'); 
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background-color: var(--bg-overlay);
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 6px solid var(--primary-color);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #222;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background 0.3s;
    font-weight: bold;
}

.btn:hover { background-color: #b58556; }

.socials { margin-top: 10px; }

.social-link {
    color: #777;
    text-decoration: underline;
    margin: 0 10px;
    font-size: 0.9rem;
}
.social-link:hover { color: var(--primary-color); }

@media (max-width: 600px) {
    .card { padding: 30px 20px; }
    h1 { font-size: 2rem; }
}