/* --- Globale Stijlen & Variabelen --- */
:root {
    --primary-color: #f7941e;
    /* Oranje */
    --secondary-color: #007bff;
    /* Blauw, een aanname */
    --background-color: #f8f9fa;
    --section-background: #ffffff;
    --text-color: #333;
    --text-light: #555;
    --border-color: #dee2e6;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #d67e1a;
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

/* --- Knoppen --- */
.button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.button:hover {
    text-decoration: none;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.button-primary:hover {
    background-color: #d67e1a;
    border-color: #d67e1a;
    color: #fff;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-secondary:hover {
    background-color: #fff5e8;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.button-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* --- Header & Footer --- */
.App-header {
    padding: 1rem 5%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
}

.App-footer {
    background-color: #2E2E2E;
    color: #ccc;

    padding: 1rem 5%;
    border-bottom: none;
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.App-footer p {
    margin-bottom: 0.5rem;
}

.App-footer a {
    color: var(--primary-color);
}

.App-footer a:hover {
    color: #fff;
}

.App-logo {
    height: 40px;
}

.App-nav .nav-link {
    margin: 0 15px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.App-nav .nav-link.active,
.App-nav .nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* --- Sectie Stijlen --- */
main {
    overflow: hidden;
}

section {
    padding: 60px 5%;
}

.hero-section-tdlp {
    background-color: var(--section-background);
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content-wrapper-tdlp {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.hero-text-tdlp {
    flex: 1;
}

.hero-image-tdlp {
    flex: 1;
    position: relative;
}

.hero-dashboard-image {
    width: 100%;
}

.topdesk-logo-on-hero {
    position: absolute;
    width: 15%;
    max-width: 100px;
    bottom: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons-tdlp {
    margin-top: 2rem;
}

.scroll-down-hint {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Algemene sectie met 2 kolommen */
.content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--section-background);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.problem-section {
    margin-top: 4rem;
    flex-direction: row-reverse;
}

.success-section {
    flex-direction: row-reverse;
}

.content-block .text-content,
.content-block .image-content {
    flex: 1;
}

.content-block .image-content img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-section {
    background-color: transparent;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    width: 100%;
    padding: 2rem;
    background: var(--section-background);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    height: 2.5rem;
    /* Zorgt dat de layout niet verspringt */
}

.success-section {
    background-color: #3E5944;
    color: #fff;
}

.success-section h2,
.success-section p {
    color: #fff;
}

.success-section .feature-list-detailed li::before {
    color: #fff;
}

.feature-list-detailed li {
    list-style-type: none;
    padding-left: 30px;
    position: relative;
}

.feature-list-detailed li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-title {
    display: block;
    font-weight: 600;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-section {
    background-color: #e9ecef;
    padding: 60px 5%;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto;
}

.contact-cta {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.reassurance-points {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Leegmaken van reassurance vinkjes omdat FontAwesome er niet is */
.reassurance-points span::before {
    content: "";
    margin-right: 0;
}

/* --- Responsiviteit --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content-wrapper-tdlp,
    .content-block {
        flex-direction: column;
        text-align: center;
    }

    .problem-section,
    .success-section {
        flex-direction: column;
    }

    .content-block .text-content {
        text-align: left;
    }

    .content-block.text-center .text-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 5%;
    }

    .steps-container {
        flex-direction: column;
    }

    .reassurance-points {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .App-header {
        flex-direction: column;
        gap: 1rem;
    }

    .App-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons-tdlp {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 300px;
    }
}