/* ============================================================
   home-v2.css — v2 volgens opbouw-schets
   Lichte pagina; typografie en kleuren van de huidige site:
   novecento-sans-condensed (koppen), Poppins (body),
   --black / --white / --green / --cream / --beige uit style.css.
   ============================================================ */

body.v2 {
    background: var(--white);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.v2-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Gedeelde knop */
.v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.25s, color 0.25s, transform 0.15s;
}

.v2-btn--dark {
    background: var(--black);
    color: var(--white);
}

.v2-btn--dark:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.v2-btn--outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 12px 24px 16px;
}

.v2-btn--outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Reveal-animaties (eigen, home.js is niet meer nodig) */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HEADER
   ============================================================ */

.v2-header {
    background: var(--white);
    border-bottom: 1px solid #eee9df;
    position: sticky;
    top: 0;
    z-index: 100;
}

.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.v2-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.v2-logo span {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}

.v2-logo img { height: 22px; width: auto; }

.v2-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.v2-nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.v2-nav a:hover { color: var(--green); }

.v2-nav-primary {
    border-bottom: 2px solid var(--green);
    padding-bottom: 3px;
}

.v2-nav-ig { display: inline-flex; align-items: center; }

.v2-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1;
}

.v2-lang a {
    text-decoration: none;
    opacity: 0.35;
    transition: opacity 0.2s;
    filter: grayscale(0.2);
}

.v2-lang a:hover,
.v2-lang a.is-active { opacity: 1; filter: none; }

/* Mobiele nav */
.v2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.v2-burger span {
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: transform 0.2s, opacity 0.2s;
}

.v2-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-burger.is-open span:nth-child(2) { opacity: 0; }
.v2-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 48px 24px;
    background: var(--white);
    border-bottom: 1px solid #eee9df;
}

/* Author-CSS wint van de browser-default voor [hidden],
   dus expliciet terugzetten — anders staat het menu altijd open. */
.v2-mobile-menu[hidden] { display: none; }

/* Vangnet: op desktop nooit tonen, ook niet als hij open
   stond en het venster daarna breder wordt. */
@media (min-width: 1025px) {
    .v2-mobile-menu { display: none; }
}

.v2-mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 10px 0;
}

.v2-lang--mobile { padding-top: 12px; gap: 20px; }
.v2-lang--mobile a { font-size: 15px; font-weight: 600; color: var(--black); }

/* ============================================================
   HERO — tekst links, foto rechts tot de rand
   ============================================================ */

.v2-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    min-height: calc(100vh - 72px);
}

.v2-hero-left {
    display: flex;
    align-items: center;
    padding: 80px 64px 80px max(48px, calc((100vw - 1320px) / 2 + 48px));
}

.v2-hero-text { max-width: 480px; }

.v2-hero-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 6vw, 96px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 28px;
}

.v2-hero-use {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 34px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
    margin-bottom: 24px;
}

.v2-hero-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 10px;
}

.v2-hero-made {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 36px;
}

.v2-hero-formats {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.v2-hero-free {
    margin-top: 4px;
    font-size: 12px;
    color: #999;
}

.v2-hero-right {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.v2-hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   VIER KOLOMMEN
   ============================================================ */

.v2-cols {
    background: var(--cream);
    padding: 110px 0;
}

.v2-cols-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
}

.v2-col-icon {
    width: 26px;
    height: 26px;
    color: var(--black);
    margin-bottom: 22px;
    display: block;
}

.v2-col-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 20px;
}

.v2-col-p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

.v2-col-p strong { color: var(--black); }

.v2-col-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.v2-col-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
}

/* ============================================================
   VOORBEELDEN
   ============================================================ */

.v2-examples {
    background: var(--white);
    padding: 110px 0;
}

.v2-ex-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 46px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    text-align: center;
    margin-bottom: 64px;
}

.v2-ex-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.v2-ex-card {
    display: block;
    text-decoration: none;
}

.v2-ex-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream);
    margin-bottom: 14px;
    position: relative;
}

/* Hand-stempel op elk kaartje (zoals in de schets): onderdeel van
   de galerij, dus geen beeldbewerking per voorbeeld nodig. */
.v2-ex-img::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white) url('/assets/badge/thisishumanmade_beeldmerk_black.svg') center / 16px auto no-repeat;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
}

.v2-ex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

a.v2-ex-card:hover .v2-ex-img img { transform: scale(1.05); }

.v2-ex-name {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 3px;
}

.v2-ex-maker {
    font-size: 12px;
    color: #999;
}

/* ============================================================
   SHOW US YOURS
   ============================================================ */

.v2-share {
    background: var(--white);
    padding: 0 0 110px;
}

.v2-share-card {
    background: var(--cream);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 72px 64px;
    align-items: center;
}

.v2-share-card--textonly { grid-template-columns: 1fr; }

.v2-share-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3.4vw, 48px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 16px;
}

.v2-share-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.v2-share-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.v2-share-ig {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--green);
    transition: color 0.2s;
}

.v2-share-ig:hover { color: var(--green); }

.v2-share-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.v2-share-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.v2-share-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   FOOTER (licht)
   ============================================================ */

.v2-footer {
    background: var(--white);
    border-top: 1px solid #eee9df;
    padding: 56px 0;
}

.v2-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.v2-footer-tagline {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
    color: #777;
}

.v2-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.v2-footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.v2-footer-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.v2-footer-links a:hover { color: var(--green); }

.v2-footer-copy {
    font-size: 12px;
    line-height: 1.7;
    color: #999;
    text-align: right;
}

/* ============================================================
   RESPONSIVE — mobiel: lucht en beweging
   ============================================================ */

@media (max-width: 1200px) {
    .v2-ex-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
    .v2-cols-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 48px; }
    .v2-share-card { grid-template-columns: 1fr; gap: 48px; padding: 56px 40px; }
    .v2-hero { grid-template-columns: 1fr; min-height: 0; }
    .v2-hero-left { padding: 72px 48px; }
    .v2-hero-right { min-height: 60vh; }
    .v2-nav { display: none; }
    .v2-burger { display: flex; }
}

@media (max-width: 768px) {
    .v2-container { padding: 0 22px; }
    .v2-mobile-menu { padding: 12px 22px 24px; }
    .v2-hero-left { padding: 64px 22px 56px; }
    .v2-hero-text { max-width: 100%; }
    .v2-hero-right { min-height: 52vh; }
    .v2-cols { padding: 72px 0; }
    .v2-cols-grid { grid-template-columns: 1fr; gap: 56px; }
    .v2-examples { padding: 72px 0; }
    .v2-ex-title { margin-bottom: 40px; }
    .v2-ex-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .v2-share-card { padding: 44px 26px; border-radius: 4px; }
    .v2-share-right { grid-template-columns: repeat(2, 1fr); }
    .v2-footer-inner { flex-direction: column; align-items: flex-start; }
    .v2-footer-right { align-items: flex-start; }
    .v2-footer-copy { text-align: left; }
}

/* ============================================================
   DOWNLOAD-PAGINA (dl2-)
   ============================================================ */

.dl2-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 48px 96px;
}

.dl2-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 4.6vw, 72px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 28px;
}

.dl2-lines {
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 22px;
}

.dl2-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.dl2-no {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 30px;
}

.dl2-no-sep { color: #ccc; }

.dl2-contains {
    margin-top: 36px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}

.dl2-files {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 30px;
}

.dl2-file {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
}

.dl2-file svg { width: 26px; height: 26px; color: var(--black); }

.dl2-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.dl2-hero-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ── Use it anywhere ── */

.dl2-anywhere {
    background: var(--cream);
    padding: 96px 0;
}

.dl2-anywhere-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.dl2-anywhere-grid--textonly { grid-template-columns: 1fr; }

.dl2-h2 {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3.4vw, 48px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 16px;
}

.dl2-sub {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 26px;
}

.dl2-aw-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    columns: 4;
    column-gap: 32px;
    max-width: 560px;
}

.dl2-aw-list li {
    font-size: 13.5px;
    line-height: 2;
    color: #444;
    break-inside: avoid;
}

.dl2-aw-close {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.dl2-aw-close strong { color: var(--black); }

.dl2-anywhere-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.dl2-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--white);
}

.dl2-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── We'd love to see ── */

.dl2-see { padding: 96px 0 72px; background: var(--white); }

.dl2-see-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 56px;
    align-items: start;
}

.dl2-doodle {
    margin-top: 28px;
    font-size: 17px;
    font-style: italic;
    font-weight: 600;
    color: var(--black);
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    transform: rotate(-4deg);
}

.dl2-doodle svg { margin-top: 8px; color: #888; }

.dl2-q-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.dl2-q-title--second { margin-top: 28px; }

.dl2-q-sub { font-size: 13px; color: #555; margin-bottom: 12px; }

.dl2-radios {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl2-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #444;
    cursor: pointer;
}

.dl2-radio input {
    accent-color: var(--green);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.dl2-radio:hover span { color: var(--black); }

.dl2-url {
    width: 100%;
    max-width: 320px;
    border: 1px solid #d8d4ca;
    border-radius: 4px;
    padding: 10px 13px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dl2-url:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(50, 203, 12, 0.12);
}

.dl2-q-optional { font-size: 12px; color: #999; margin-top: 8px; }

.dl2-send { margin-top: 24px; }

.dl2-q-thanks {
    margin-top: 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green);
}

.dl2-ig {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 12px;
}

.dl2-ig:hover { color: var(--green); }

.dl2-tag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.dl2-notready {
    text-align: center;
    margin-top: 80px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* ── Responsive download-pagina ── */

@media (max-width: 1024px) {
    .dl2-hero { grid-template-columns: 1fr; padding: 56px 48px 72px; gap: 40px; }
    .dl2-see-grid { grid-template-columns: 1fr; gap: 56px; }
    .dl2-anywhere-grid { grid-template-columns: 1fr; gap: 48px; }
    .dl2-aw-list { columns: 3; }
}

@media (max-width: 768px) {
    .dl2-hero { padding: 44px 22px 56px; }
    .dl2-anywhere { padding: 64px 0; }
    .dl2-see { padding: 64px 0 48px; }
    .dl2-aw-list { columns: 2; }
    .dl2-anywhere-right { grid-template-columns: repeat(2, 1fr); }
    .dl2-files { gap: 16px; }
    .dl2-notready { margin-top: 56px; }
}

/* ── Copy-blokken uit het CMS: kale <p>'s binnen kolommen ── */
.v2-col-body p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

.v2-col-body p strong { color: var(--black); }
.v2-col-body p:last-child { margin-bottom: 0; }
