/* C/V1: BOLD INVERTED - Spiegelbeeld van A/v4
   ORANJE achtergrond, ZWARTE tekst en elementen
   Bebas Neue font, brutalistisch design
*/

:root {
    --col-orange: #ea9010;
    --col-orange-dark: #d07d0e;
    --col-orange-light: #f5a623;
    --col-black: #0a0a0a;
    --col-dark: #1a1a1a;
    --col-white: #ffffff;
    --col-text: #333333;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--col-orange);
    color: var(--col-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar - ZWART */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--col-black);
    border-bottom: 3px solid var(--col-orange-dark);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--col-orange);
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--col-orange);
    transition: all 0.3s ease;
}

.nav-toggle span:first-child { top: 0; }
.nav-toggle span:last-child { bottom: 0; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--col-orange); }

/* Hero - ORANJE achtergrond */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 3rem;
    position: relative;
    background: var(--col-orange);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero-left { z-index: 2; }

.hero-title {
    display: flex;
    flex-direction: column;
}

.title-small {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--col-black);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.5s 0.2s ease forwards;
}

.title-main {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: 8px;
    color: var(--col-black);
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

.title-main:nth-child(2) { animation-delay: 0.3s; }
.title-main:nth-child(3) { animation-delay: 0.4s; color: var(--col-white); text-shadow: 3px 3px 0 var(--col-black); }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s 0.6s ease forwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--col-black);
    color: var(--col-orange);
    border: 2px solid var(--col-black);
}

.btn-primary:hover {
    background: var(--col-white);
    color: var(--col-black);
    border-color: var(--col-white);
}

.btn-secondary {
    background: transparent;
    color: var(--col-black);
    border: 2px solid var(--col-black);
}

.btn-secondary:hover {
    background: var(--col-black);
    color: var(--col-orange);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeIn 0.8s 0.4s ease forwards;
}

.hero-image {
    position: relative;
    max-width: 500px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 4px solid var(--col-black);
    background: var(--col-black);
}

.hero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: grayscale(50%) contrast(1.1);
    transition: filter 0.5s ease;
}

.hero-image:hover img { filter: grayscale(0%); }

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--col-black);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 60px;
    height: 2px;
    background: var(--col-black);
}

/* Services - ZWART met oranje accenten */
.services {
    padding: 6rem 0;
    background: var(--col-black);
}

.services-header {
    padding: 0 3rem 3rem;
    border-bottom: 1px solid rgba(234, 144, 16, 0.3);
}

.services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 6px;
    color: var(--col-orange);
}

.services-grid {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 3rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(234, 144, 16, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(234, 144, 16, 0.1);
}

.service-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--col-orange);
    letter-spacing: 2px;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--col-white);
    letter-spacing: 3px;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 { color: var(--col-orange); }

.service-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.service-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(234, 144, 16, 0.3);
    color: var(--col-orange);
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    background: var(--col-orange);
    border-color: var(--col-orange);
    color: var(--col-black);
}

/* Footer */
.footer {
    background: var(--col-black);
    padding: 3rem;
    border-top: 3px solid var(--col-orange);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo { height: 20px; opacity: 0.5; transition: opacity 0.3s ease; }
.footer-logo-link:hover .footer-logo { opacity: 1; }
.footer-text { color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; letter-spacing: 1px; }

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--col-orange);
    border: 1px solid rgba(234, 144, 16, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--col-orange);
    border-color: var(--col-orange);
    color: var(--col-black);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container, .hero, .services-header, .service-item, .footer { padding-left: 2rem; padding-right: 2rem; }
    .service-item { grid-template-columns: 60px 1fr auto; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-toggle.active span:first-child { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.active span:last-child { transform: translateY(-9px) rotate(-45deg); }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--col-black);
        padding: 2rem;
        gap: 0;
        border-bottom: 3px solid var(--col-orange);
    }

    .nav-links.active { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(234, 144, 16, 0.2); }
    .nav-links a { display: block; padding: 1rem 0; }

    .hero-content { grid-template-columns: 1fr; }
    .hero-right { justify-content: center; order: -1; }
    .hero-image { max-width: 300px; }
    .hero-scroll { display: none; }
    .title-main { font-size: clamp(4rem, 20vw, 8rem); }
    .hero-cta { flex-direction: column; }

    .service-item { grid-template-columns: 1fr auto; }
    .service-number { display: none; }
    .footer-container { flex-direction: column; text-align: center; }
}
