/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Setup */
body {
    font-family: Tahoma, sans-serif;
    background-color: #272727;
    color: #d2f2ff;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2rem;
    color: #d2f2ff;
}

/* Gallery Section */
.gallery-group h2 {
    font-size: 1.5rem;
    color: #d2f2ff;
    border-left: 5px solid #353d59;
    padding-left: 12px;
    margin-bottom: 10px;
}

.group-description {
    margin-bottom: 30px;
    font-style: italic;
    color: #d2f2ff;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* Photo Card */
.photo-card {
    background-color: #393a41;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 12px;
    transform: scale(1); /* scaled down to 25% */
    transform-origin: top left;
}

.photo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #d2f2ff;
}

.photo-date {
    font-size: 0.85rem;
    color: #a0cce0;
    margin-bottom: 8px;
}

.photo-description {
    font-size: 0.9rem;
    color: #e4f8ff;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #353d59;
    color: #d2f2ff;
}
