/* ================================
   NO MORE DEATH PACTS
   dark mode zine aesthetic
   raw / minimal / not over-designed
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

/* DARK PAPER TEXTURE */
body {
    background-color: #180000;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.3' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    color: #e0e0e0;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

/* MAIN CONTAINER */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.band-name {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 32px;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}

.tagline {
    font-style: italic;
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

/* NAVIGATION */
.nav {
    text-align: center;
    margin: 30px 0;
    font-size: 13px;
    text-transform: lowercase;
}

.nav a {
    color: #aaa;
    text-decoration: none;
    padding: 0 15px;
    border-bottom: 1px solid transparent;
}

.nav a:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* SECTION DIVIDERS */
hr {
    border: none;
    border-top: 1px solid #333;
    margin: 40px 0;
}

/* HEADINGS */
h1, h2, h3 {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

h2 {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 14px;
    margin-top: 30px;
}

/* PARAGRAPHS */
p {
    margin: 15px 0;
}

/* LINKS */
a {
    color: #ccc;
    text-decoration: underline;
}

a:hover {
    color: #fff;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
}

.img-gritty {
    filter: grayscale(30%) contrast(1.1);
}

.img-border {
    border: 1px solid #444;
    padding: 5px;
    background: #111;
}

/* HERO IMAGE */
.logo-img {
    width: 100%;
    max-width: 690px;
    display: block;
    margin: 30px auto;
    /*border: 1px solid #444;*/
}

/* ORIGIN BOX */
.origin-box {
    background-color: #111;
    border-left: 3px solid #666;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.origin-box img {
    max-width: 280px;
    display: block;
    margin: 15px auto 0;
    border: 1px solid #444;
}

.origin-caption {
    font-size: 11px;
    text-align: center;
    color: #666;
    margin-top: 10px;
    font-style: normal;
}

/* TRACKLIST */
.tracklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tracklist li {
    padding: 12px 0;
    border-bottom: 1px dotted #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracklist li:last-child {
    border-bottom: none;
}

.track-num {
    color: #666;
    margin-right: 15px;
    font-size: 12px;
}

.track-title {
    flex-grow: 1;
}

.track-length {
    color: #666;
    font-size: 12px;
    margin-left: 15px;
}

.download-link {
    margin-left: 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ALBUM DOWNLOAD */
.album-download {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 20px 0;
    border: 1px solid #555;
}

.album-download:hover {
    background: #444;
}

/* GIG LIST */
.gig-list {
    list-style: none;
    padding: 0;
}

.gig-item {
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.gig-date {
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.gig-venue {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.gig-location {
    color: #888;
    font-size: 13px;
}

.gig-details {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* MERCH GRID */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.merch-item {
    text-align: center;
}

.merch-item img {
    max-height: 420px;
    width: auto;
    filter: contrast(1.1);
    border: 1px solid #444;
}

.merch-title {
    font-family: 'Special Elite', monospace;
    margin: 15px 0 5px;
    font-size: 14px;
    color: #fff;
}

.merch-desc {
    font-size: 12px;
    color: #888;
    margin: 5px 0;
}

.merch-price {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

/* GUESTBOOK ENTRIES */
.entry {
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
}

.entry-name {
    font-weight: bold;
    color: #fff;
}

.entry-date {
    color: #666;
}

.entry-message {
    font-style: italic;
    color: #ccc;
}

/* CONTACT BOX */
.contact-box {
    background-color: #111;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #333;
}

.contact-box a {
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: #fff;
}

/* VISITOR COUNTER */
.visitor-counter {
    text-align: center;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
}

.counter-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.counter-display {
    display: inline-block;
    background: #000;
    border: 1px solid #333;
    padding: 8px 15px;
    font-size: 18px;
    color: #0f0;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

/* FOOTER */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 11px;
    color: #666;
}

.footer a {
    color: #888;
}

/* UTILITIES */
.small {
    font-size: 12px;
    color: #666;
}

.center {
    text-align: center;
}

.muted {
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    .band-name {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .nav a {
        display: block;
        padding: 10px 0;
    }
}
