/* LENS PUNK ZINE - STYLE.CSS */

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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #222;
    background-color: #fefefe;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #222;
    padding-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

header p {
    font-style: italic;
    font-size: 1rem;
    color: #666;
}

/* MAIN SECTIONS */
section {
    margin-bottom: 50px;
}

h2 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* ISSUES LIST */
.issue-list {
    list-style: none;
}

.issue-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.issue-list a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

.issue-list a:hover {
    text-decoration: underline;
}

.date {
    color: #888;
    font-weight: normal;
    font-size: 0.9rem;
}

/* INTRO SECTION */
.intro p {
    font-size: 1.1rem;
    color: #444;
    border-left: 3px solid #222;
    padding-left: 20px;
}

/* ABOUT SECTION */
.about p {
    color: #555;
}

/* CONTACT SECTION */
.contact strong {
    font-weight: bold;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ZINE ISSUE PAGES */
.back-link {
    text-align: center;
    margin: 20px 0;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
}

.back-link a:hover {
    text-decoration: underline;
    color: #222;
}

.issue-content {
    text-align: center;
}

.zine-page {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
    border: 1px solid #ddd;
    cursor: pointer;
    /* Placeholder styling - remove when using real scans */
    background-color: #f9f9f9;
    min-height: 400px;
}

.zine-page:hover {
    opacity: 0.9;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border: none;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ccc;
}

/* COMMUNITY SUPPORT MESSAGE */
.community-support {
    text-align: center;
    margin: 50px 0 30px 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}

.community-support p {
    margin: 0;
    font-size: 0.95rem;
}

.community-support a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
}

.community-support a:hover {
    text-decoration: underline;
    color: #222;
}

/* Remove placeholder styling for actual scanned images */
.zine-page:not([src*="placeholder"]) {
    background-color: transparent;
    min-height: auto;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .zine-page {
        margin-bottom: 20px;
    }
    
    .back-link {
        margin: 15px 0;
    }
}