/*
  Anna Bieniak Gallery - Static Site
  Minimalistyczny motyw galerii
*/

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

body {
    font-family: "Georgia", "Times New Roman", serif;
    background: linear-gradient(to bottom, #3a3632 40%, #7809C2);
    color: #d5d3d0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrap {
    padding: 2rem 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-title {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #9a9894;
    margin-bottom: 3rem;
    text-align: left;
    padding-top: 1rem;
}

.poetry-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding-bottom: 20vh;
}

.poetry-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.verse {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #b0ada8;
    margin-bottom: 1.2rem;
}

.mini-square {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: block;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mini-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-square:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

/* Subpage styles */
.subpage-wrap {
    padding: 2rem 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: #9a9894;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    transition: color 0.3s;
}
.back-link:hover { color: #d5d3d0; }

.subpage-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #d5d3d0;
    margin-bottom: 0.5rem;
}

.subpage-verse {
    font-style: italic;
    font-size: 1rem;
    color: #9a9894;
    margin-bottom: 3rem;
}

.gallery-placeholder {
    background: rgba(255, 255, 255, 0.12);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 4rem 2rem;
    text-align: center;
    color: #6a6d72;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item img:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .page-wrap, .subpage-wrap { padding: 1.5rem; }
    .poetry-grid { flex-wrap: wrap; gap: 1.5rem; }
    .poetry-cell { flex: 0 0 45%; }
    .verse { font-size: 0.85rem; }
    .subpage-title { font-size: 1.3rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
