/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c75b3c;
    --primary-dark: #a64a30;
    --secondary-color: #3d6a7a;
    --accent-gold: #c89937;
    --accent-dark: #5a5a5a;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-dark: #1a1a1a;
    --bg-darker: #2d2d2d;
    --bg-light: #3a3a3a;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: var(--bg-darker);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-gold);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero-expanded {
    padding: 4rem 0 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-gold) 0%, transparent 30%, transparent 70%, var(--secondary-color) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content p {
    text-align: center;
}

.hero-benefits {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits .benefit {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-benefits .benefit h3 {
    color: var(--accent-gold);
}

.hero-benefits .benefit {
    text-align: center;
}

.hero-benefits .benefit p {
    color: var(--white);
    opacity: 0.95;
}

.hero-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Alternatieve versie met normale achtergrond */
.hero-alternative {
    background-color: var(--bg-dark);
    padding: 4rem 0 6rem 0;
    text-align: center;
}

.hero-alternative .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-alternative .hero-content p {
    text-align: center;
}

.hero-alternative .benefits {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-alternative .benefit {
    text-align: center;
}

.hero-alternative .hero-cta {
    margin-top: 3rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 153, 55, 0.4);
    background-color: #d4a53f;
}

/* Sections */
.section {
    padding: 5rem 0;
    scroll-margin-top: 100px;
}

.gray-bg {
    background-color: var(--bg-darker);
}

.section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.content-box p {
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card,
.project-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, border-top 0.3s;
    border-top: 3px solid transparent;
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(197, 91, 60, 0.2);
    border-top: 3px solid var(--accent-gold);
}

.service-card h3,
.project-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 0.5rem;
    object-fit: contain;
}

.service-card p,
.project-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.project-card .project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-darker);
    font-size: 0.9rem;
    color: var(--text-light);
}

.project-card .project-meta .client {
    font-weight: 600;
    color: var(--secondary-color);
}

.project-card .project-meta .year {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit h3::before {
    content: '⚙ ';
    color: var(--accent-gold);
    margin-right: 0.3rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Technologie Sectie */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tech-category {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent-gold);
}

.tech-category h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--text-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    border-top: 4px solid var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .projects-grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .contact-info {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 4rem 0;
    }
}
