/* ============================================================
   maker.css — individual maker landing page
   ============================================================ */

.maker-page {
    background: var(--black);
    color: var(--white);
}

/* ============================================================
   LOADING
   ============================================================ */

.mk-loading {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.mk-loading-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mk-loading-badge {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loadingSpin 2s linear infinite;
}

.mk-loading-badge img { width: 32px; }

@keyframes loadingSpin {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.mk-loading-inner p {
    font-family: "novecento-sans-condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

/* ============================================================
   404
   ============================================================ */

.mk-notfound {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.mk-notfound-inner {
    text-align: center;
    max-width: 500px;
    padding: 0 40px;
}

.mk-nf-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}

.mk-nf-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 8vw, 80px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 20px;
}

.mk-nf-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ============================================================
   HERO
   ============================================================ */

.mk-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1a;
    text-align: center;
}

/* Radial glow achtergrond */
.mk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1a1a 0%, #000 70%);
    z-index: 0;
}

/* Subtiele grid lines */
.mk-hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.mk-grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #1a1a1a 30%, #1a1a1a 70%, transparent);
    left: calc(var(--i) * 25% + 12.5%);
}

.mk-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mk-hero-badge {
    width: 72px;
    height: 72px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    animation: badgePulse 3s ease infinite;
}

.mk-hero-badge img { width: 38px; height: auto; }

.mk-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.mk-hero-discipline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
}

.mk-hero-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}

.mk-hero-meta-sep {
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
    display: inline-block;
}

.mk-hero-name {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(80px, 14vw, 200px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.82;
    color: var(--white);
    margin-bottom: 40px;
    word-break: break-word;
    max-width: 1200px;
    /* Text shadow voor diepte */
    text-shadow: 0 0 80px rgba(255,255,255,0.05);
}

.mk-hero-project {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.5;
}

.mk-hero-site {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.mk-hero-site:hover {
    color: var(--green);
    border-color: var(--green);
}

/* Scrollindicator onderin hero */
.mk-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mk-hero-scroll span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

.mk-hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #333, transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   WHY SECTION
   ============================================================ */

.mk-why {
    padding: 120px 0;
    border-bottom: 1px solid #1a1a1a;
}

.mk-why-inner {
    max-width: 900px;
}

.mk-why-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 40px;
    display: block;
}

.mk-why-text {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--white);
    border-left: 4px solid var(--green);
    padding-left: 40px;
    margin: 0;
    opacity: 1;
}

/* ============================================================
   BADGE SHOWCASE
   ============================================================ */

.mk-badge-section {
    padding: 120px 0;
    background: #050505;
    border-bottom: 1px solid #1a1a1a;
}

.mk-badge-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mk-badge-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}

.mk-badge-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 58px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
}

.mk-badge-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #999;
}

.mk-badge-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mk-badge-large {
    width: 200px;
    height: 200px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 4s ease infinite;
}

.mk-badge-large img {
    width: 110px;
    height: auto;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(50, 203, 12, 0.2); }
    50% { box-shadow: 0 0 0 30px rgba(50, 203, 12, 0); }
}

.mk-badge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

/* ============================================================
   SHARE SECTION
   ============================================================ */

.mk-share-section {
    padding: 120px 0;
    background: var(--black);
}

.mk-share-header {
    margin-bottom: 60px;
}

.mk-share-title {
    font-family: "novecento-sans-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 16px;
}

.mk-share-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #888;
    max-width: 500px;
}

.mk-share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 40px;
}

.mk-share-card {
    background: #080808;
    padding: 48px 40px;
    border: 1px solid #111;
}

.mk-share-card--primary {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

.mk-share-card--dark {
    background: var(--green);
    border-color: var(--green);
}

.mk-share-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 12px;
}

.mk-share-card--dark .mk-share-card-label {
    color: rgba(255,255,255,0.6);
}

.mk-share-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 28px;
}

.mk-share-card--dark .mk-share-card-text {
    color: rgba(255,255,255,0.7);
}

/* Copy input */
.mk-copy-wrap {
    display: flex;
    gap: 0;
    border: 1px solid #1a1a1a;
}

.mk-copy-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #ccc;
    min-width: 0;
}

.mk-copy-btn {
    background: #1a1a1a;
    border: none;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.mk-copy-btn:hover { background: var(--green); }

/* Social buttons */
.mk-social-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mk-social-btn {
    display: block;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    color: #bbb;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mk-social-btn:hover { border-color: var(--green); color: var(--white); }
.mk-social-btn--linkedin:hover { background: #0077b5; border-color: #0077b5; color: var(--white); }
.mk-social-btn--x:hover { background: #000; border-color: #333; color: var(--white); }
.mk-social-btn--wa:hover { background: #25d366; border-color: #25d366; color: var(--white); }

/* Join btn */
.mk-join-btn {
    display: inline-block;
    padding: 14px 24px 18px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.2s, transform 0.2s;
}

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

/* Community link */
.mk-community-link {
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}

.mk-cm-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
    transition: color 0.2s;
}

.mk-cm-link:hover { color: var(--white); }

.mk-cm-link-icon {
    width: 32px;
    height: 32px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mk-cm-link:hover .mk-cm-link-icon { background: var(--green); }

.mk-cm-link-icon img { width: 16px; height: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .mk-share-grid { grid-template-columns: 1fr 1fr; }
    .mk-badge-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .mk-hero { padding-bottom: 60px; }
    .mk-why { padding: 80px 0; }
    .mk-why-text { padding-left: 24px; }
    .mk-badge-section { padding: 80px 0; }
    .mk-share-section { padding: 80px 0; }
    .mk-share-grid { grid-template-columns: 1fr; }
    .mk-share-card { padding: 36px 28px; }
    .mk-badge-display { margin-top: 40px; }
}
