body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fdfaf6;
    color: #333;
}
header {
    background-color: #fff;
    padding: 60px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
header h1 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #d16e6c;
}
header p {
    font-size: 18px;
    margin-top: 10px;
    color: #666;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}
.gallery-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.gallery-item h3 {
    margin-top: 10px;
    font-size: 16px;
    color: #d16e6c;
    /* Rounded, cute handwritten-like font for captions */
    font-family: 'M PLUS Rounded 1c', 'Kosugi Maru', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
}
footer {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #eee;
}

/* Gallery images: moved from inline styles in index.html */
.gallery-item img {
    width: 100%;
    border-radius: 6px;
    display: block;
}