/* ============================================
   DETAIL PAGE - BRUTALIST STYLE
   ============================================ */

/* ============================================
   NAV BRUTAL
   ============================================ */
.nav-brutal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 3px solid var(--black);
    padding: 0.75rem 1.5rem;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-back:hover {
    background: var(--black);
    color: var(--white);
    transform: translateX(-8px);
}

.back-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.nav-back:hover .back-arrow {
    transform: translateX(-4px);
}

.nav-number {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--black);
    opacity: 0.3;
}

/* ============================================
   DETAIL HERO
   ============================================ */
.detail-hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* ============================================
   IMAGE COLUMN
   ============================================ */
.detail-image-col {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 2rem;
    background: var(--white);
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 5;
    box-shadow: 20px 20px 0 var(--black);
    border: 4px solid var(--black);
}

.frame-border {
    position: absolute;
    border: 4px solid var(--black);
    pointer-events: none;
}

.frame-border-1 {
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-color: var(--yellow);
    z-index: 1;
}

.frame-border-2 {
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    border-color: var(--red);
    z-index: 0;
    opacity: 0.3;
}

.status-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border: 4px solid var(--black);
    z-index: 10;
    transform: rotate(-3deg);
}

.status-badge--warning {
    background: var(--yellow);
    color: var(--black);
}

.status-badge--new {
    background: var(--red);
    color: var(--white);
}

/* ============================================
   CONTENT COLUMN
   ============================================ */
.detail-content-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-meta {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.meta-value {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.detail-title {
    margin: 0;
    line-height: 0.85;
}

.title-word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.title-word--large {
    font-size: clamp(50px, 8vw, 96px);
    margin-left: 10%;
}

.title-word--massive {
    font-size: clamp(60px, 10vw, 120px);
    color: var(--yellow);
    -webkit-text-stroke: 3px var(--black);
    paint-order: stroke fill;
    margin-left: -5%;
}

.title-word--rotate {
    font-size: clamp(50px, 8vw, 96px);
    transform: rotate(-2deg);
    margin-left: 15%;
}

.detail-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.desc-lead {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desc-text {
    font-family: var(--font-mono);
    font-size: 15px;
    line-height: 1.8;
    border-left: 4px solid var(--yellow);
    padding-left: 1.5rem;
}

.desc-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.feature-icon {
    color: var(--red);
    font-size: 20px;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-decoration: none;
    border: 5px solid var(--black);
    padding: 1.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button--primary {
    background: var(--black);
    color: var(--white);
}

.cta-button--primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateX(10px) scale(1.05);
    box-shadow: -10px 10px 0 var(--red);
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: -0.01em;
}

.cta-arrow {
    font-size: 32px;
    transition: transform 0.3s;
}

.cta-button:hover .cta-arrow {
    transform: translateX(10px);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.6;
    padding: 1rem;
    border: 3px solid var(--black);
    background: var(--white);
}

.note-icon {
    font-size: 24px;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.deco-shape {
    position: absolute;
    pointer-events: none;
}

.deco-shape-1 {
    width: 250px;
    height: 250px;
    border: var(--border-thick) solid var(--red);
    top: 10%;
    right: 5%;
    transform: rotate(45deg);
    opacity: 0.2;
}

.deco-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--yellow);
    bottom: 10%;
    left: 5%;
    opacity: 0.3;
}

.deco-number {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: clamp(120px, 15vw, 240px);
    line-height: 1;
    color: var(--black);
    opacity: 0.05;
    z-index: 1;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    min-height: 60vh;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: var(--border-mega) solid var(--yellow);
    border-bottom: var(--border-mega) solid var(--yellow);
}

.quote-container {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.2;
    margin: 0 0 2rem;
    color: var(--yellow);
}

.quote-author {
    font-family: var(--font-mono);
    font-size: 18px;
    font-style: normal;
    letter-spacing: 2px;
}

.quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 300px);
    opacity: 0.05;
    color: var(--white);
    z-index: 1;
    white-space: nowrap;
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-box {
    border: 4px solid var(--black);
    padding: 2rem;
    background: var(--white);
}

.info-box--highlight {
    background: var(--yellow);
}

.info-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.info-list {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 2;
}

.info-list li::before {
    content: '▸ ';
    color: var(--red);
    font-weight: 700;
}

.info-details {
    font-family: var(--font-mono);
    font-size: 14px;
}

.info-details dt {
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 1px;
    font-size: 12px;
    opacity: 0.6;
}

.info-details dd {
    margin: 0.25rem 0 0 0;
    font-size: 18px;
    font-weight: 700;
}

.info-text {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================
   MORE BOOKS SECTION
   ============================================ */
.more-books {
    padding: 6rem 2rem;
    background: var(--gray);
    border-top: var(--border-mega) solid var(--black);
}

.more-title {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.more-label {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.more-text {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.9;
}

.more-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.more-book {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    border: 4px solid var(--black);
    background: var(--white);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.more-book:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 10px 10px 0 var(--yellow);
}

.more-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border: 2px solid var(--black);
}

.more-name {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .detail-image-col {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-brutal {
        padding: 1rem;
    }

    .detail-hero {
        padding: 6rem 1rem 2rem;
    }

    .title-word--large,
    .title-word--massive,
    .title-word--rotate {
        margin-left: 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .more-grid {
        grid-template-columns: 1fr;
    }
}
