/* =========================
   RESET
========================= */

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

/* =========================
   BASE
========================= */

html {
    background: #e9e6df;
}

body {
    background: #e9e6df;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.65;
}

/* =========================
   SITE WRAPPER
========================= */

#wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
    min-height: 100vh;
}

/* =========================
   HEADER
========================= */

header {
    border-bottom: 1px solid #cfcfcf;
}

.hero-text {
    position: absolute;
    bottom: 36px;
    left: 40px;

    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.hero-text p {
    margin-top: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* =========================
   NAVIGATION
========================= */

nav {
    background: #efefef;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

nav li {
    border-right: 1px solid #d7d7d7;
}

nav a {
    display: block;
    padding: 14px 22px;

    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    background: #dadada;
}

/* =========================
   LAYOUT
========================= */

main {
    gap: 50px;

    padding: 42px;
}

.home {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
}

/* =========================
   CONTENT
========================= */

.content-section {
    margin-bottom: 52px;
}

.content-section h2 {
    font-size: 1.55rem;
    font-weight: normal;

    border-bottom: 1px solid #d7d7d7;

    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 18px;
    font-size: 16px;
}

/* =========================
   RELEASE GRID
========================= */

.release-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.release-card {
    border: 1px solid #d7d7d7;
    background: #fafafa;
}

.release-card img {
    width: 100%;
    display: block;
}

.release-info {
    padding: 18px;
}

.release-info h3 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 6px;
}

.release-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* =========================
   ARCHIVE ENTRIES
========================= */

.artist-entry img {
    width: 148px;
    height: 0%;
}

.artist-entry hr {
    margin-left: 8px;
    margin-right: 8px;
}

.artist-entry {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    padding-top: 16px;
    display: flex;
}

.artist-entry-top img {
    width: 148px;
    height: 0%;
}

.artist-entry-top hr {
    margin-left: 8px;
    margin-right: 8px;
}

.artist-entry-top {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    display: flex;
}

.archive-entry {
    margin-bottom: 34px;
}

.archive-entry h3 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 6px;
}

.archive-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.archive-data {
    font-size: 0.9rem;
    color: #666;
}

/* =========================
   PHOTO STRIP
========================= */

.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.photo-strip img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    border: 1px solid #d7d7d7;
}

/* =========================
   SIDEBAR
========================= */

aside {
    border-left: 1px solid #d7d7d7;
    padding-left: 32px;
}

.sidebar-section {
    margin-bottom: 46px;
}

.sidebar-section h3 {
    font-size: 1rem;
    font-weight: normal;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    border-bottom: 1px solid #d7d7d7;

    padding-bottom: 8px;
    margin-bottom: 14px;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section li {
    margin-bottom: 10px;
}

.sidebar-section a {
    color: #111;
    text-decoration: none;
}

.sidebar-section a:hover {
    text-decoration: underline;
}

/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #d7d7d7;

    padding: 24px 42px;

    color: #666;
    font-size: 0.9rem;
}

/* =========================
   ACCENT COLOR VARIABLES
========================= */

:root {

    /* MAIN ACCENT COLOR */
    --accent: #7a1f1f;

    /* LIGHTER ACCENT */
    --accent-light: #a53b3b;

    /* TEXT */
    --text: #111;

    /* BORDERS */
    --border: #d3d3d3;

    /* BACKGROUND */
    --bg: #ece9e2;
}

/* =========================
   HEADER / HERO
========================= */

.hero {

    height: 300px;

    position: relative;

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

    /* IMAGE DARKENING */
    background-image:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));

    border-bottom: 3px solid var(--accent);
}

/* optional grain overlay */

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url("images/grain.png");

    opacity: 0.08;

    pointer-events: none;
}

/* =========================
   HERO TEXT
========================= */

.hero-text {

    position: absolute;

    bottom: 36px;
    left: 40px;

    z-index: 2;

    color: white;
}

.hero-text h1 {

    font-size: 3.6rem;

    font-weight: normal;

    letter-spacing: 0.12em;
}

.hero-text p {

    margin-top: 8px;

    font-size: 1rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: #ddd;
}

/* =========================
   NAVIGATION
========================= */

nav {

    background: #f3f3f3;

    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--border);
}

nav a {

    display: block;

    padding: 14px 22px;

    color: var(--text);

    text-decoration: none;

    transition: background 0.15s ease;
}

nav a:hover {

    background: var(--accent);

    color: white;
}

/* =========================
   SECTION HEADERS
========================= */

.content-section h2,
.sidebar-section h3 {

    border-bottom: 1px solid var(--border);

    padding-bottom: 8px;
}

/* accent line under headers */

.content-section h2::after {

    content: "";

    display: block;

    width: 70px;
    height: 2px;

    background: var(--accent);

    margin-top: 10px;
}

/* =========================
   RELEASE CARDS
========================= */

.release-card {

    border: 1px solid var(--border);

    background: #fafafa;

    transition: transform 0.15s ease,
                border-color 0.15s ease;
}

.release-card:hover {

    border-color: var(--accent);

    transform: translateY(-2px);
}

/* =========================
   LINKS
========================= */

a {

    color: var(--accent);
}

a:hover {

    color: var(--accent-light);
}

/* =========================
   FOOTER
========================= */

footer {

    border-top: 3px solid var(--accent);
}