/* 
    PJ3D Cinematic Prototype - LANDING CATEGORY STYLES
    Hero, Manifesto, Zones, Solutions
*/

/* 1. HERO VIDEO (Immersive) */
.landing-hero {
    height: 95vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5) contrast(1.1);
    /* Deep Contrast */
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 90vw;
}

/* --- HERO TEXT (Solid White) --- */
.landing-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}


/* 2. MANIFESTO (Clean Layout) */
.manifesto-section {
    background: var(--bg-color);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

@media(max-width: 900px) {
    .manifesto-section {
        flex-direction: column;
        text-align: center;
    }
}

.manifesto-lead {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: white;
    flex: 1;
}

.manifesto-sub {
    flex: 1;
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    max-width: 500px;
}

/* 3. ZONES REDESIGN */

/* ZONE 1: SUBCATS (Grid) */
.subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--line-subtle);
    border: 1px solid var(--line-subtle);
}

.subcat-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subcat-card:hover {
    background: rgba(255, 106, 0, 0.05);
    /* Slight Orange Tint on Hover */
}

.subcat-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.subcat-card:hover .subcat-img-wrapper {
    filter: grayscale(0%);
    border-color: var(--accent);
    transform: scale(1.1);
}

.subcat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ZONE 2: STYLES (Parallax Stripes) */
.style-stripe-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 70vh;
    gap: 0;
    border: 1px solid var(--line-subtle);
}

.style-stripe {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid var(--line-subtle);
}

.style-stripe:last-child {
    border-right: none;
}

.style-stripe img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6) grayscale(80%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.style-stripe:hover img {
    filter: brightness(1) grayscale(0%);
    transform: scale(1.05);
    /* Slight Zoom */
}

.style-label {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    z-index: 2;
    color: white;
    /* White text */
    font-size: 2rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Legibility */
    transition: color 0.3s;
}

.style-stripe:hover .style-label {
    color: var(--accent);
    /* Orange on hover */
}


/* ZONE 3: SPACES (Masonry) */
.spaces-masonry {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 600px;
    gap: 2rem;
}

.space-item {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.space-item:hover {
    border-color: var(--accent);
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--easing);
    filter: brightness(0.8);
}

.space-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.space-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}


/* ZONE 4: SOLUTIONS (Horizontal Ticker) */
.solution-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line-subtle);
    border-bottom: 1px solid var(--line-subtle);
}

.solution-item {
    flex: 1;
    padding: 4rem 2rem;
    border-right: 1px solid var(--line-subtle);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.solution-item:last-child {
    border-right: none;
}

.solution-item:hover {
    background: white;
    color: black;
}

.solution-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.solution-item:hover h3 {
    color: var(--accent);
}

/* Orange Title on Hover */

.solution-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.solution-item:hover p {
    opacity: 1;
}


/* ZONE 5: TAGS (Minimal List) */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag-btn {
    border: 1px solid var(--line-subtle);
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #ccc;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.tag-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 106, 0, 0.1);
}

/* UTILITIES (Specific to this page if not in global) */
.text-display {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent);
}

.text-silver {
    color: #BBB;
}

.section-separator {
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-top: 1px solid var(--line-subtle);
    position: relative;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}