/* IKREST CENTRAL STYLESHEET 2026
   Huisstijl: Groen (#0a8a3a), Oranje (#f49a18), Zwart (#000000)
*/

:root {
    --logo-green: #0a8a3a;
    --logo-orange: #f49a18;
    --logo-black: #000000;
    --white: #FFFFFF;
    --light-grey: #F4F4F4;
    --text-grey: #333333;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* RESET & BASIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: var(--logo-black);
}

img {
    max-width: 100%;
    display: block;
}

/* NAVIGATIE */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--logo-black);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--logo-green);
}

/* CONTAINERS & SECTIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
    margin-bottom: 40px;
}

/* HERO STARTPAGINA */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* PAGINA HEADERS (WERKWIJZE) */
.page-header {
    background-color: var(--logo-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

/* KNOPPEN */
.btn-primary {
    background-color: var(--logo-orange);
    color: var(--white);
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: #d88915;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 154, 24, 0.4);
}

.full-width {
    width: 100%;
}

/* PIJLER GRID (HOME) */
.pijler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pijler-card {
    padding: 40px;
    background: var(--light-grey);
    border-radius: 8px;
    border-bottom: 6px solid var(--logo-green);
    transition: transform 0.3s ease;
}

.pijler-card:hover {
    transform: translateY(-10px);
}

.pijler-card h3 {
    color: var(--logo-orange);
    margin-bottom: 15px;
}

/* SPLIT CONTENT (OVER TONY) */
.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-container img {
    border-radius: 12px;
    box-shadow: 20px 20px 0px var(--logo-green);
}

.quote-style {
    margin-top: 30px;
    padding: 30px;
    border-left: 6px solid var(--logo-orange);
    background: var(--light-grey);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--logo-black);
}

/* STAPPENPLAN (WERKWIJZE) */
.step-section {
    display: flex;
    align-items: center;
    gap: 50px;
    border-bottom: 1px dotted #ff9900;
}

.step-section:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    display: inline-block;
    background: var(--logo-orange);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

.step-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li::before {
    content: "✓ ";
    color: var(--logo-orange);
    font-weight: bold;
}

/* FORMULIER (AANMELDEN) */
.form-wrapper {
    max-width: 700px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.hp-field {
    display: none;
}

.disclaimer-alert {
    margin-top: 30px;
    padding: 20px;
    background: #fff3e0;
    border-left: 5px solid var(--logo-orange);
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    background-color: var(--logo-black);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.footer-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .split-content, .step-section, .step-section:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    nav {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}