/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
html,
body {
    background-color: #000;
    color: #eaeaea;
    font-family: 'Inter', sans-serif;
    min-height: 100%;
}

/* LINKS */
a {
    color: #aaa;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

/* HEADER */
.site-header {
    padding: 40px;
    border-bottom: 1px solid #111;
}

.logo {
    font-family: 'UnifrakturCook', serif;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.nav a {
    margin-right: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MAIN */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* HERO */
.hero {
    margin-bottom: 80px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #ccc;
}

/* POSTS */
.posts {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.post h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.meta {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.excerpt {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid #111;
    padding: 30px;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* REVIEW PAGE */

.review {
    max-width: 700px;
    margin: 0 auto;
}

.album-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.album-meta {
    font-size: 12px;
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.album-cover img {
    width: 100%;
    margin-bottom: 40px;
    filter: grayscale(100%);
}

.review-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tracklist {
    margin: 60px 0;
}

.tracklist h3,
.verdict h3 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tracklist ol {
    padding-left: 20px;
}

.tracklist li {
    margin-bottom: 10px;
    color: #ccc;
}

.verdict p {
    font-size: 16px;
    line-height: 1.8;
}

/* ----------------ABOUT ---------------- */

/* ABOUT / MANIFESTO */

.about {
    max-width: 650px;
    margin: 0 auto;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.about p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #ccc;
}

.signature {
    margin-top: 60px;
    font-family: 'UnifrakturCook', serif;
    font-size: 24px;
    letter-spacing: 2px;
}

/* ------------ covers ------------ */

/* ALBUM COVERS */

.covers-intro {
    max-width: 600px;
    margin-bottom: 80px;
}

.covers-intro p {
    font-size: 20px;
    line-height: 1.6;
    color: #ccc;
}

.covers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px;
}

.cover-item {
    text-align: center;
}

.cover-item img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.cover-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.cover-item figcaption {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
}