/* pics.css - updated for clearer folders */

/* Folder grid */
.folder-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 90%;
    margin: 60px auto 200px;
}

.folder {
    width: 200px;          /* slightly wider for three lines */
    padding: 20px 10px;
    background-color: rgba(255, 179, 77, 0.1);
    border: 2px solid #FFB34D;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-align: center;
}

.folder:hover {
    transform: scale(1.05);
    background-color: rgba(255, 179, 77, 0.2);
}

.folder-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    color: #FFB34D;
}

.folder-venue {
    font-family: "Goldman", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.folder-city {
    font-family: sans-serif;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 6px;
}

.folder-date {
    font-family: sans-serif;
    font-size: 0.95rem;
    color: #FFB34D;
    border-top: 1px dashed rgba(255, 179, 77, 0.4);
    padding-top: 6px;
    width: 100%;
}

/* Gallery grid (unchanged) */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 20px auto 200px;
    justify-content: center;
}

.item {
    height: 260px;
    margin: 0 5px 20px;
    border-radius: 3px;
    transition: transform 0.3s;
}

.item:hover {
    transform: scale(1.04);
}

.item img {
    display: block;
    height: 100%;
    border-radius: 3px;
    max-width: 400px;
    object-fit: cover;
}

/* Back button */
.back-button {
    display: inline-block;
    margin: 20px auto 0 5%;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #FFB34D;
    border-radius: 4px;
    color: #FFB34D;
    font-family: "Goldman", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.back-button:hover {
    background-color: #FFB34D;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .folder {
        width: 160px;
        padding: 15px 8px;
    }
    .folder-icon {
        font-size: 3rem;
    }
    .folder-venue {
        font-size: 1.1rem;
    }
    .folder-city {
        font-size: 0.9rem;
    }
    .folder-date {
        font-size: 0.8rem;
    }
    .item {
        height: 150px;
    }
    .back-button {
        margin-left: 5%;
    }
}