/* =========================================================
   PLACEHOLDER PAGES — COMING SOON
   ========================================================= */

html, body {
    width: 100%;
    height: 100%;
    background: var(--dark);
    color: var(--cream);
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.detail-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 42px;
    background: transparent;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--orange);
}


/* =========================================================
   ORBIT (reused from project-detail)
   ========================================================= */

.placeholder-orbit {
    position: fixed;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.placeholder-orbit-outer {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 0;
    top: 0;
    border: 1px solid rgba(245, 240, 235, 0.8);
    border-radius: 50%;
}

.placeholder-orbit-inner {
    position: absolute;
    width: 340px;
    height: 340px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(245, 240, 235, 0.8);
    border-radius: 50%;
}

.placeholder-outer-track,
.placeholder-inner-track {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.placeholder-outer-track {
    animation: placeholderOuterRotate 14s linear infinite;
}

.placeholder-inner-track {
    animation: placeholderInnerRotate 10s linear infinite;
}

.placeholder-dot-position {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.placeholder-orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(245, 240, 235, 0.8);
}

.placeholder-dot-1 { transform: rotate(0deg); }
.placeholder-dot-2 { transform: rotate(120deg); }
.placeholder-dot-3 { transform: rotate(240deg); }

@keyframes placeholderOuterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes placeholderInnerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


/* =========================================================
   MAIN PAGE
   ========================================================= */

.placeholder-page {
    position: relative;
    z-index: 5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.placeholder-content {
    max-width: 600px;
    padding: 40px;
}

.placeholder-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.placeholder-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.placeholder-divider {
    width: 60px;
    height: 2px;
    background: var(--orange);
    margin: 0 auto 30px;
}

.placeholder-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 240, 235, 0.6);
    margin-bottom: 40px;
}

.placeholder-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.3);
}


/* =========================================================
   FOOTER
   ========================================================= */

.placeholder-footer {
    position: fixed;
    left: 7vw;
    right: 7vw;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.placeholder-footer .back {
    color: var(--cream);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1.5px solid rgba(245, 240, 235, 0.3);
    border-radius: 30px;
}

.placeholder-footer .back:hover {
    color: var(--orange);
    border-color: var(--orange);
}


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

@media (max-width: 800px) {
    html, body {
        overflow: auto;
        height: auto;
    }

    .detail-nav {
        padding: 16px 20px;
    }

    .placeholder-orbit {
        width: 360px;
        height: 360px;
        opacity: 0.05;
    }

    .placeholder-orbit-outer {
        width: 360px;
        height: 360px;
    }

    .placeholder-orbit-inner {
        width: 235px;
        height: 235px;
    }

    .placeholder-page {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px 60px;
    }

    .placeholder-title {
        font-size: 15vw;
        letter-spacing: -2px;
    }

    .placeholder-text {
        font-size: 14px;
    }

    .placeholder-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 40px;
        padding: 20px;
        justify-content: center;
    }
}
