/* ===== Reset & Base Styles ===== */

/* Standaard stijlen voor desktop */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Stijlen voor tablets (schermbreedte < 768px) */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stijlen voor smartphones (schermbreedte < 480px) */
@media (max-width: 480px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr; /* Stack de tekst en afbeelding verticaal */
    }

    .about-text p {
        text-align: left; /* Tekst links uitlijnen op kleine schermen */
        font-size: 20px; /* Kleinere tekst voor betere leesbaarheid */
    }

    .nav-list {
        flex-direction: column; /* Navigatie verticaal stapelen */
    }

    .hero-title {
        font-size: 24px !important; /* Kleinere titel op mobiel */
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000; /* Zwart (zoals Made by Six) */
    --secondary-color: #ffffff; /* Wit */
    --accent-color: #ffbb00; /* Rood (voor highlights) */
    --text-color: #333333; /* Donkergrijs */
    --light-text: #666666; /* Lichter grijs */
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 0px solid #eeeeee;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* ===== Hero Section ===== */
/* Hero Section met video-achtergrond */
.hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
    height: 100vh; /* Zorg dat de hero-sectie de volledige viewporthoogte inneemt */
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorg dat de video de hele sectie vult */
    z-index: -1; /* Plaats de video achter de inhoud */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Donkere overlay voor betere leesbaarheid */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1; /* Zorg dat de tekst boven de video en overlay komt */
    color: var(--secondary-color); /* Wit voor betere zichtbaarheid */
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Tekstschaduw voor betere leesbaarheid */
}

.hero-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--accent-color);
}

/* ===== Work Section ===== */
.work {
    padding: 20px 0;
    background-color: rgb(0, 0, 0);
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.work-grid {
    margin: 0 auto;
    width: 100%;
    gap: 30px; /* Verkleinde afstand tussen alle items */
}

.work-item {
    width: 400px; /* Vaste breedte voor items */
    margin-bottom: 20px; /* Onderste afstand */
}

.work-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.work-item:hover .work-img {
    transform: scale(1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Donkere overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Standby onzichtbaar */
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1; /* Zichtbaar bij hover */
}

.work-info {
    text-align: center;
    color: var(--secondary-color); /* Wit voor contrast */
    padding: 20px;
    transform: translateY(20px); /* Beginpositie onder de overlay */
    transition: transform 0.3s ease;
}

.work-item:hover .work-info {
    transform: translateY(0); /* Schuift omhoog bij hover */
}

.work-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.work-category {
    color: var(--light-text);
    font-size: 14px;
}
/* About Section */
.bottom {
    padding: 100px 0;
    background-color: #000000;
}

.bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bottom-text p {
    margin-bottom: 20px;
    text-align: right;
    font-size: 28px;
    color: #ffffff;
    cursor: default;
}

.bottom-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    cursor: default;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #000000;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #ffbb00; /* Geel voor hover-effect */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    font-size: 30px;
    text-align: right;
    
}

.social-link {
    padding: 30;
    color: #ffffff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 200;
    transition: color 0.3s;
    text-align: right;
}

.social-link:hover {
    color: #ffbb00; /* Geel voor hover-effect */
}

/* ===== Footer ===== */
.footer {
    padding: 30px 0;
    background-color: black;
    border-top: 1px black;
    text-align: center;
}

.footer-text {
    color: white;
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Project Detail Section */
.project-detail {
    padding: 120px 0 60px;
    background-color: black;
}

.project-header {
    margin-bottom: 40px;
}

.project-title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.project-category {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: white;
}

/* Galerie */
.project-gallery {
    column-count: 3; /* Aantal kolommen */
    column-gap: 20px; /* Afstand tussen kolommen */
    column-fill: balance; /* Balanseer de inhoud over kolommen */
}

.gallery-item {
    break-inside: avoid; /* Voorkom dat items over kolommen heen breken */
    margin-bottom: 20px; /* Onderste afstand */
    display: inline-block;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1);
}

.gallery-caption {
    padding: 15px 0;
    text-align: center;
    color: var(--text-color);
}
