/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #FDD7E4 url("/files/varkieachtergrond.jpg") no-repeat center center fixed;
    background-size: cover;
    padding: 80px 15px 15px 15px; /* Keeps the padding room for the 64px tall bar */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    overflow-x: hidden; /* Prevents awkward side-wobble on mobile views */
}

.main-area {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.92); 
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 20px;
    
    /* CHANGE THIS LINE: Give it a 70px top margin so it sits right below the absolute header */
    margin: 0px 0 10px 0; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Header Area */
.header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.header h1 {
    font-size: 1.6em;
    color: #000;
    cursor: pointer;
    line-height: 1.2;
}

/* Top Right & Bottom Buttons */
.link {
    display: inline-block;
    background: #555;
    padding: 10px 25px;
    color: #fff;
    border-radius: 25px;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s ease;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.link:hover {
    opacity: 0.8;
}

/* Dividers */
.line {
    height: 2px;
    background-color: #e3e3e3;
    border: none;
    margin-bottom: 20px;
}

.line2 {
    height: 4px;
    background-color: mediumpurple;
    border: none;
    border-radius: 10px;
    margin: 30px 0;
    opacity: 0.5;
}

/* Typography & Content Layout */
h2 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #444;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #222;
    margin-bottom: 15px;
    text-align: left;
}

.intro-text {
    font-weight: bold;
    font-size: 1.05em;
    border-left: 4px solid #f779a4;
    padding-left: 10px;
}

.sub-intro {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Beautiful Lists instead of raw h4 tags */
.services-list {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.services-list h4 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #000;
}

.services-list ul, .summary-box ul {
    list-style-position: inside;
    list-style-type: "🦋 ";
    padding-left: 5px;
}

.services-list li, .summary-box li {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #333;
}

/* Highlights */
.highlight-box {
    font-weight: bold;
    background-color: rgba(147, 112, 219, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
}

.summary-box {
    background: #fff;
    border: 2px dashed mediumpurple;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.summary-box h4 {
    margin-bottom: 10px;
}

.final-call {
    font-size: 1.1em;
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
}

.kobe-g-text {
    font-size: 0.9em;
    text-align: center;
    font-weight: bold;
    margin: 0px 0;
}

.inline-link {
    color: #f779a4;
    text-decoration: underline;
}

.bottom-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/* DESKTOP ENHANCEMENTS */
@media (min-width: 768px) {
    body {
        background-image: url("/files/varkieachtergrond.jpg"); /* Desktop achtergrond */
        /* CHANGE: Maintained the top space here too */
        padding: 80px 20px 50px 20px; 
    }

    .main-area {
        width: 80%;
        padding: 40px;
        background-color: rgba(255, 255, 255, 0.75);
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .header h1 {
        font-size: 2em;
    }

    .link {
        width: auto;
    }

    .bottom-nav {
        justify-content: flex-start;
    }
}