/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Vervang alleen deze drie regels om hero-foto's te wijzigen */
    --hero-home-image: url("images/header.jpeg");
    --hero-work-image: url("images/hero.jpeg");
    --hero-contact-image: url("images/cars.jpeg");
}

body {
    font-family: 'Inter', sans-serif;
    color: #f5f5f5;
    background: #0d1013;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ================= NAVBAR ================= */
header {
    position: absolute;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

/* NAV LINKS */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    opacity: 0.7;
}

.mobile-menu-toggle,
.menu-overlay {
    display: none;
}

.lang-toggle {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 7px 10px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ================= LOGO BOX ================= */
.logo-box {
    display: inline-block;
    padding: 8px 22.5px;
    border: 1.5px solid white;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-box:hover {
    background-color: rgba(255, 255, 255, 0.24);
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-short {
    display: none;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 100vh;
    background-image: var(--hero-home-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Cinematic overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

/* Hero content linksboven */
.hero-content {
    position: absolute;
    top: 175px;
    left: 150px;
    text-align: left;
    max-width: 820px;
    z-index: 2;
}

/* Hero title strak en modern */
.hero h1 {
    font-family: 'Inter', sans-serif; /* strak modern font */
    font-weight: 700;
    font-size: clamp(2.9rem, 6.4vw, 4.9rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.06;
    color: white;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.3rem, 4.6vw, 3.9rem);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    line-height: 1.08;
    color: white;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.56);
}

.hero h1 .thin {
    display: block;
    font-weight: 400;
    font-size: clamp(1.75rem, 4.1vw, 3rem);
    letter-spacing: 1px;
    opacity: 0.9;
}

.page-hero h1 .thin {
    display: block;
    font-weight: 400;
    font-size: clamp(1.45rem, 2.8vw, 2.5rem);
    letter-spacing: 0.9px;
    opacity: 0.88;
}

/* Hero subtitle */
.hero p {
    margin-top: 11px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.95px;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    max-width: 36ch;
}

.page-hero p {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ================= SCROLL INDICATOR ================= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    z-index: 2;
}

.scroll-indicator::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 8px); }
    100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
    min-height: 100vh;
    padding: 120px 50px;
    text-align: center;
    font-family: 'Inter', sans-serif; /* strak en consistent */
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.content-section h1,
.content-section h2 {
    font-family: 'Inter', sans-serif; /* strak modern */
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ================= INNER PAGES ================= */
.page-hero {
    height: 62vh;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
}

.page-hero-about {
    background-image: var(--hero-home-image);
}

.page-hero-work {
    background-image: var(--hero-work-image);
}

.page-hero-contact {
    background-image: var(--hero-contact-image);
}

.page-hero-contact .hero-content {
    left: auto;
    right: 120px;
    max-width: 520px;
}

.page-content {
    padding: 110px 50px 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-no-hero {
    padding-top: 170px;
}

.text-block {
    max-width: 780px;
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: clamp(2rem, 3.1vw, 2.9rem);
    font-weight: 800;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    margin-bottom: 22px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.text-block p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.3px;
    opacity: 0.95;
    margin-bottom: 14px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.about-image-wrap {
    width: min(100%, 320px);
    justify-self: start;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 14px 16px;
    font-size: 0.82rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 500;
}

.home-work-preview {
    padding: 118px 50px 102px;
    max-width: 1280px;
    margin: 0 auto;
}

.home-work-preview,
.page-content,
.instagram-follow {
    content-visibility: auto;
    contain-intrinsic-size: 1px 820px;
}

.home-work-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.home-work-head h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.see-more-link {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.74rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
}

.home-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.home-work-item {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 1 / 1;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-work-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.02));
    pointer-events: none;
}

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

.home-work-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.35);
}

.work-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
    max-width: 920px;
    margin: 0 auto;
}

.work-photo-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.work-photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.work-photo-item.portrait img {
    height: 100%;
}

.work-photo-item figcaption {
    padding: 12px 14px;
    font-size: 0.8rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.protected-photo {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.work-page .page-hero-work {
    height: 40vh;
    min-height: 240px;
}

.work-page .hero-content {
    top: 120px;
}

.work-page .page-content {
    padding-top: 56px;
    padding-bottom: 56px;
}

.work-page .text-block {
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    display: block;
    text-decoration: none;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    min-height: 145px;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.92;
}

.instagram-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.instagram-label svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.instagram-follow {
    padding: 30px 50px 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-follow-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.88;
    margin-bottom: 14px;
}

.instagram-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
}

.instagram-profile-avatar {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
}

.instagram-profile-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.instagram-profile-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.instagram-profile-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.instagram-handle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.92;
}

.recognition-box {
    margin: 26px auto 8px;
    width: min(100%, 700px);
    text-align: center;
    line-height: 1.5;
    padding: 15px 18px;
    border: 1px solid rgba(231, 211, 154, 0.45);
    background: linear-gradient(
        180deg,
        rgba(231, 211, 154, 0.12) 0%,
        rgba(231, 211, 154, 0.05) 100%
    );
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(231, 211, 154, 0.08) inset;
}

.recognition-box h3 {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e7d39a;
    margin-bottom: 8px;
}

.recognition-box p {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #e7d39a;
}

.recognition-box p + p {
    margin-top: 5px;
}

.instagram-follow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.instagram-follow-header p {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.88;
}

.instagram-follow-header a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #f5f5f5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 3px;
}

.instagram-follow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.instagram-follow-grid a {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.instagram-follow-grid img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.instagram-follow-grid a:hover img {
    transform: scale(1.03);
}

.site-footer {
    padding: 18px 20px 28px;
    text-align: center;
}

.site-footer p {
    font-size: 0.72rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-items: center;
    gap: 16px;
    text-align: center;
    padding: 140px 20px 60px;
    max-width: 740px;
    margin: 0 auto;
}

.not-found h1 {
    font-size: clamp(4rem, 14vw, 8rem);
    line-height: 1;
    letter-spacing: 4px;
}

.not-found p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 16px 20px;
    }

    .logo-full {
        display: none;
    }

    .logo-short {
        display: inline;
    }

    .logo-box {
        min-width: 58px;
        text-align: center;
        padding: 6px 10px;
        font-size: 0.86rem;
        letter-spacing: 1.5px;
        z-index: 41;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(8, 10, 14, 0.72);
        cursor: pointer;
        z-index: 41;
    }

    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
        background: #f5f5f5;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    nav {
        position: fixed;
        top: 0;
        right: -160px;
        width: min(78vw, 160px);
        height: 100vh;
        background: rgba(11, 15, 20, 0.97);
        border-left: 1px solid rgba(255, 255, 255, 0.14);
        padding-top: 92px;
        z-index: 40;
        transition: right 0.3s ease;
    }

    .nav-open nav {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 24px;
    }

    nav a {
        font-size: 0.9rem;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 39;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .nav-open .menu-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .lang-toggle {
        z-index: 41;
        padding: 7px 9px;
        font-size: 0.7rem;
        min-width: 46px;
    }

    .hero-content {
        top: 140px;
        left: 20px;
        max-width: 90%;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.15rem);
    }

    .page-hero h1 {
        font-size: clamp(1.95rem, 8.4vw, 2.6rem);
    }

    .hero h1 .thin {
        font-size: clamp(1.5rem, 6.7vw, 2.1rem);
    }

    .page-hero h1 .thin {
        font-size: clamp(1.3rem, 5.4vw, 1.8rem);
    }

    .hero p {
        font-size: clamp(0.95rem, 4.1vw, 1.12rem);
        letter-spacing: 0.6px;
    }

    .page-hero p {
        font-size: 1rem;
        letter-spacing: 0.7px;
    }

    .content-section {
        padding: 80px 20px;
    }

    .page-hero {
        height: 56vh;
        min-height: 360px;
    }

    .page-hero-contact .hero-content {
        right: auto;
        left: 20px;
        max-width: 90%;
    }

    .page-content {
        padding: 72px 20px;
    }

    .page-content-no-hero {
        padding-top: 120px;
    }

    .text-block h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        width: min(100%, 280px);
        justify-self: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 240px;
    }

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

    .contact-card {
        min-height: auto;
    }

    .home-work-preview {
        padding: 80px 20px 56px;
    }

    .home-work-head {
        align-items: center;
        gap: 12px;
    }

    .home-work-head h2 {
        font-size: 1.7rem;
    }

    .home-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home-work-item {
        min-height: 0;
    }

    .work-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-page .page-hero-work {
        height: 48vh;
        min-height: 260px;
    }

    .work-page .hero-content {
        top: 135px;
    }

    .work-photo-item img,
    .work-photo-item.portrait img {
        height: 100%;
    }

    .instagram-follow {
        padding: 20px 20px 72px;
    }

    .instagram-profile-link {
        width: 100%;
    }

    .recognition-box {
        margin-top: 20px;
        padding: 10px 12px;
    }

    .recognition-box h3 {
        font-size: 0.7rem;
        letter-spacing: 1.35px;
    }

    .recognition-box p {
        font-size: 0.67rem;
        letter-spacing: 1.2px;
    }

    .site-footer {
        padding-bottom: 22px;
    }

    .not-found {
        padding-top: 120px;
    }

    .not-found p {
        font-size: 0.98rem;
    }
}

@media (max-width: 560px) {
    .work-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
