/* LONG POUR - APEX VERSION */

:root {
    --color-accent: #FF0015;
    --color-white: #FFFFFF;
    --font-primary: "freight-sans-pro", sans-serif;
    --font-display: var(--display);
    --font-mono: var(--mono);
    --font-serif: 'Newsreader', serif;
}

.long-pour-body {
    --color-accent: #FF0015;
    background-color: #050505;
    color: var(--color-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.apex-nav {
    position: fixed;
    top: 4rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.nav-name {
    color: white;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 900;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: white;
    opacity: 0.6;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 1.5rem;
}

.nav-link:hover {
    color: var(--color-accent);
    opacity: 1;
}

.long-pour-wrapper {
    padding: 15rem 4rem 12rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.lc-section-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6vw; /* Space between LONG and COPY */
    margin-bottom: 15rem;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 1 auto;
    position: relative;
}

.hero-text {
    font-family: var(--display);
    font-size: clamp(80px, 18vw, 350px);
    line-height: 0.75;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin: 0 0 2rem 0;
    white-space: nowrap;
    background-image: url('assets/mahogany-dramatic-grain.jpeg');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: max-content;
    padding: 0.15em 0.1em;
    margin-top: -0.15em;
    margin-left: -0.1em;
}

.deck-text {
    font-family: 'Neonderthaw', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 52px);
    line-height: 1.3;
    color: #FF0015;
    text-shadow:
        0 0 8px #FF0015,
        0 0 25px #FF0015,
        0 0 60px rgba(255, 0, 15, 0.7);
    position: absolute;
    top: 1.3em;
    left: 0;
    white-space: normal;
    width: 100%;
    pointer-events: none;
    max-width: none;
}

.accent-text {
    color: inherit;
}

.sub-deck {
    opacity: 1;
}

@media (max-width: 1024px) {
    .lc-section-hero { gap: 4vw; }
    .deck-text { max-width: 300px; }
    .hero-text { color: transparent; }
}

@media (max-width: 768px) {
    .lc-section-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 8rem;
    }
    .hero-col { align-items: flex-start; }
    .hero-text { font-size: 40vw; color: transparent; }
    .deck-text { text-align: left; max-width: 100%; font-size: clamp(22px, 8vw, 42px); top: -5%; }
}

/* POST LIST */
.lc-post-list {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}

.lc-article {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.date-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    opacity: 0.3;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2rem;
}

.lc-article-row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: flex-start;
}

.post-title-text {
    font-family: var(--display);
    font-size: clamp(40px, 8vw, 120px);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    background-image: url('assets/mahogany-dramatic-grain.jpeg');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0.12em 0.05em;
    margin-top: -0.12em;
    margin-left: -0.05em;
}

.post-title-link {
    text-decoration: none;
    color: white;
}

.lc-article:hover .post-title-text {
    background-image: linear-gradient(#bb0006, #bb0006);
}

.post-excerpt {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.4;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.read-more-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: var(--color-accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.read-more-link .arrow {
    font-family: serif;
    font-size: 1.2rem;
}

.post-thumb {
    display: block;
    overflow: hidden;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.5s ease;
}

.lc-article:hover .post-thumb {
    filter: grayscale(0) brightness(1);
    transform: scale(1.02);
}

.post-thumb-img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */
.footer-metadata {
    margin-top: 15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: white;
    opacity: 0.8;
}

.footer-metadata a { color: inherit; text-decoration: none; }
.footer-metadata a:hover { color: var(--color-accent); }

/* Responsive */
@media (orientation: landscape) and (max-width: 1366px) {
    .apex-nav { top: 3.5rem; left: 3.5rem; right: 3.5rem; }
    .nav-name { font-size: 1.2rem; }
    .nav-link { font-size: 0.5rem; }
}

@media (orientation: landscape) and (max-height: 600px) {
    .apex-nav { top: 1.5rem; left: 2.5rem; right: 2.5rem; }
    .nav-name { font-size: 1rem; }
}

@media (orientation: portrait) and (max-width: 1024px) {
    .apex-nav { top: 3rem; left: 3rem; right: 3rem; }
    .nav-name { font-size: 0.9rem; max-width: 60%; line-height: 1.2; }
}

@media (max-width: 480px) {
    .apex-nav { top: 2.5rem; left: 2.5rem; right: 2.5rem; }
    .nav-name { font-size: 0.8rem; max-width: 60%; line-height: 1.1; }
}

@media (max-width: 1024px) {
    .lc-article-row {
        grid-template-columns: 1fr;
    }
    .post-thumb-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .long-pour-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


