/* ===========================
   Zoe Brooks — Galeria
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Georgia", serif;
    color: #e5e5e5;

    background:
        linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)),
        url("tlo.jpg");

    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
}

/* HEADER */

.site-header {
    padding: 20px 40px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
}

.brand .logo {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.brand .tag {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.5;
}

/* MAIN WRAP */

.wrap {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* HERO */

.hero {
    margin-bottom: 60px;
}

.hero-card h1 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-card p {
    opacity: 0.7;
    line-height: 1.6;
}

/* ENTRIES */

.entries {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.entry-card {
    display: block;
    text-decoration: none;
    color: inherit;

    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-left: 2px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.entry-card:hover {
    background: rgba(255,255,255,0.05);
}

.entry-card h2 {
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.entry-card p {
    line-height: 1.7;
    margin-bottom: 12px;
    opacity: 0.85;
}

/* FOOTER */

.site-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-size: 14px;
    opacity: 0.4;
}