/* =========================
   AN ROOZ — MEMORY PAGE
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ivory: #f3efe7;
    --ink: #24211d;
    --walnut: #806a55;
    --dust: #b7b0a5;
    --olive: #747462;
    --white: #faf8f3;
}

body {
    background-color: var(--ivory);
    color: var(--ink);
    font-family: "Arial", sans-serif;
    line-height: 1.8;
}

/* =========================
   MAIN
   ========================= */

.memory-page {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 30px 24px 45px;
}

/* =========================
   HEADER
   ========================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.brand {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
}

.archive-number {
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--walnut);
}

/* =========================
   IMAGE
   ========================= */

.memory-image {
    width: 100%;
    margin-bottom: 35px;
}

.memory-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================
   MEMORY INFO
   ========================= */

.memory-info {
    text-align: center;
    padding: 0 10px;
}

.category {
    font-size: 12px;
    color: var(--walnut);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.memory-info h1 {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
}

.date {
    font-size: 11px;
    color: var(--dust);
    margin-bottom: 25px;
}

.description {
    font-size: 14px;
    color: #5f5952;
    max-width: 400px;
    margin: 0 auto;
    line-height: 2.2;
}

/* =========================
   AUDIO
   ========================= */

.audio-section {
    margin-top: 40px;
    padding: 25px 20px;
    text-align: center;
}

.audio-title {
    font-family: Georgia, serif;
    font-size: 17px;
    margin-bottom: 18px;
}

audio {
    width: 100%;
    height: 42px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    text-align: center;
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(128, 106, 85, 0.25);
}

.footer p {
    font-family: Georgia, serif;
    font-size: 15px;
    margin-bottom: 5px;
}

.footer span {
    font-family: Georgia, serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dust);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 480px) {

    .memory-page {
        padding: 24px 18px 40px;
    }

    .header {
        margin-bottom: 28px;
    }

    .brand {
        font-size: 17px;
    }

    .archive-number {
        font-size: 9px;
    }

    .memory-info h1 {
        font-size: 26px;
    }

    .description {
        font-size: 13px;
        line-height: 2;
    }

    .audio-section {
        margin-top: 32px;
        padding: 22px 15px;
    }

    .footer {
        margin-top: 45px;
    }
}