/* ===========================
   Zoe Brooks — Okładki
   =========================== */

* {
    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 50%;
    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;
}

/* WRAP */

.wrap {
    max-width: 1100px;
    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;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    padding: 10px;
    transition: 0.3s ease;
}

.gallery-grid a:hover {
    background: rgba(255,255,255,0.05);
}

.gallery-grid img {
    width: 100%;
    height: 220px;          /* stała wysokość miniatury */
    object-fit: cover;      /* przycina proporcjonalnie */
    display: block;
}

/* FOOTER */

.site-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-size: 14px;
    opacity: 0.4;
}