/*
Theme Name: Muses & Prophets
Theme URI: http://example.com/
Author: Your Name
Description: A crisp, modern editorial theme with a dynamic grid and hardware-accelerated cursor.
Version: 2.0
*/

:root {
    --bg-color: #FFFFFF; 
    --text-color: #0A0A0A; 
    --accent-color: #9B7635; 
    --border-color: rgba(10, 10, 10, 0.15); 
}

* { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }

body {
    background-color: var(--bg-color); color: var(--text-color);
    font-family: 'Cormorant Garamond', serif; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

a, button { text-decoration: none; color: inherit; cursor: none; }
.mono { font-family: 'Space Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; }
.italic { font-style: italic; }

/* --- CURSOR --- */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9999; pointer-events: none; transform: translate3d(-50%, -50%, 0); will-change: transform; }
.cursor-dot { width: 5px; height: 5px; background-color: var(--accent-color); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--text-color); transition: transform 0.1s ease-out; }

/* --- NAVIGATION --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-color); }
.nav-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center;}
.filter-btn { background: transparent; border: none; font-family: 'Space Mono', monospace; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-color); position: relative; padding-bottom: 2px; transition: color 0.3s; display: inline-block; }
.filter-btn::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 1px; background: var(--text-color); transition: width 0.3s ease; }
.filter-btn:hover::after, .filter-btn.active::after { width: 100%; }
.filter-btn.active { color: var(--accent-color); }
.filter-btn.active::after { background: var(--accent-color); }

/* --- HEADER --- */
header { padding: 6rem 2rem 4rem 2rem; text-align: center; border-bottom: 1px solid var(--border-color); }
header h1 { font-size: clamp(4rem, 10vw, 12rem); font-weight: 300; line-height: 0.85; letter-spacing: -0.03em; text-transform: uppercase; }
.header-sub { margin-top: 3rem; color: var(--accent-color); }

/* --- GRID --- */
.grid-container { display: grid; grid-template-columns: repeat(12, 1fr); }
.card { display: flex; flex-direction: column; padding: 2.5rem; border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); transition: background-color 0.4s ease, opacity 0.4s ease; }
.card:hover { background-color: #fafafa; }
.card.hidden { display: none !important; }

.img-wrapper { width: 100%; height: 350px; overflow: hidden; margin-bottom: 1.5rem; background: #e0e0e0; }
.card-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease; }
.card:hover .card-img { transform: scale(1.03); opacity: 1; }

.card-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; border-bottom: 1px solid var(--text-color); padding-bottom: 0.5rem; }
.card-title { font-size: 2.5rem; font-weight: 400; line-height: 1.1; margin-bottom: 1rem; }
.card-excerpt { font-family: 'Space Mono', monospace; font-size: 0.85rem; line-height: 1.5; color: #555; text-transform: none; letter-spacing: 0; margin-top: auto; }

.featured-card { grid-column: span 12; display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; padding: 4rem; }
.featured-card .img-wrapper { height: 600px; margin-bottom: 0; }
.featured-card .card-info { display: flex; flex-direction: column; justify-content: center; }
.featured-card .card-title { font-size: 5rem; }
.half-card { grid-column: span 6; }
.third-card { grid-column: span 4; }
.third-card .img-wrapper { height: 250px; }

/* --- SECTIONS (Archive, Print, Footer) --- */
.all-works-wrapper { grid-column: span 12; text-align: center; padding: 6rem 2rem; border-bottom: 1px solid var(--border-color); background: var(--bg-color); }
.btn-outline { display: inline-block; padding: 1.2rem 3rem; border: 1px solid var(--text-color); background: transparent; color: var(--text-color); font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--text-color); color: #fff; }

.print-section { grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-color); background-color: var(--text-color); color: #fff; }
.print-image-wrapper { border-right: 1px solid rgba(255,255,255,0.2); }
.print-image-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.print-content { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.print-content h2 { font-size: 4rem; line-height: 1; margin: 1.5rem 0; font-weight: 300; }
.print-content p { font-size: 1.2rem; font-family: 'Space Mono', monospace; opacity: 0.8; margin-bottom: 3rem; line-height: 1.6; }

.btn-solid { display: inline-block; padding: 1rem 2rem; border: 1px solid #fff; color: #fff; text-align: center; width: fit-content; transition: all 0.3s ease; }
.btn-solid:hover { background-color: #fff; color: var(--text-color); }

.footer-section { grid-column: span 12; padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; border-bottom: 1px solid var(--border-color); }
.newsletter-box h2 { font-size: 3rem; margin-bottom: 1rem; font-weight: 400; }
.newsletter-box p { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: #555; margin-bottom: 2rem; }
.newsletter-form { display: flex; width: 100%; max-width: 500px; }
.newsletter-form input { flex-grow: 1; background: transparent; border: none; border-bottom: 1px solid var(--text-color); padding: 1rem 0; font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--text-color); outline: none; border-radius: 0; }
.newsletter-form input::placeholder { color: #999; }
.newsletter-form button { background: transparent; border: none; border-bottom: 1px solid var(--text-color); padding: 1rem 1.5rem; font-family: 'Space Mono', monospace; font-weight: bold; color: var(--text-color); transition: color 0.3s; cursor: none; }
.newsletter-form button:hover { color: var(--accent-color); }

.social-box { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
.social-links { display: flex; flex-direction: column; gap: 1rem; text-align: right; font-size: 1.2rem; }
.social-links a:hover { color: var(--accent-color); font-style: italic; }
.copyright-bar { grid-column: span 12; padding: 2rem; text-align: center; color: #555; }

/* Responsive */
@media (max-width: 1024px) { .featured-card { grid-template-columns: 1fr; } .featured-card .img-wrapper { height: 400px; } .third-card { grid-column: span 6; } .print-section { grid-template-columns: 1fr; } .print-image-wrapper { height: 400px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); } }
@media (max-width: 768px) { nav { flex-direction: column; gap: 1.5rem; } .card { grid-column: span 12 !important; border-right: none; } .featured-card .card-title { font-size: 3.5rem; } header h1 { font-size: 15vw; } .footer-section { grid-template-columns: 1fr; text-align: center; padding: 4rem 2rem; } .newsletter-form { margin: 0 auto; } .social-box { align-items: center; margin-top: 2rem; } .social-links { text-align: center; } .print-content { padding: 4rem 2rem; } .print-content h2 { font-size: 3rem; } }
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--text-color); /* Dark background */
    color: var(--bg-color);       /* Light text */
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.ticker-item {
    font-family: var(--mono-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0 40px;
    letter-spacing: 0.1em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}