File: images.css { /* Styles for image grids, overlays, and effects */
/* Polaroid Style */
.afh-polaroid {
    background: #FAF9F8;
    padding: 8px;
    border: 2px solid #A09071;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    max-width: 80%;
    text-align: center;
}

.afh-polaroid img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.afh-polaroid-caption {
    font-size: 0.9em;
    color: #7A7A7A;
    margin-top: 8px;
}

/* Image Grid */
.afh-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.afh-image-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.afh-image-grid img:hover {
    transform: scale(1.02);
}

/* Image Overlay */
.afh-image-overlay {
    position: relative;
    max-width: 100%;
}

.afh-image-overlay img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.afh-overlay-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    display: none;
}

.afh-image-overlay:hover .afh-overlay-text {
    display: block;
}

/* Shadow Effect */
.afh-shadow-image {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.afh-shadow-image:hover {
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
}
 }