body {
    background-color: #ffe8d6; /* same light peach */
    font-family: "Comic Neue", cursive, sans-serif;
    margin: 0;
    padding: 0;
}

/* Font */
.cursive {
    font-family: 'Dancing Script', cursive;
}

/* Wrapper */
.gallery-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Heading */
.gallery-title {
    text-align: center;
    font-size: 48px;
    color: #5a3e1b;
    margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Image card */
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: #fff;
}

/* Images */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.08);
}
