/* Gallery Container */
.gallery-container {
    padding: 50px 5%;
    width: 100%;
    box-sizing: border-box;
}

/* 5 Column Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f4f4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustment */
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Add this to your existing style.css */
.gallery-hero {
    background-color: #6a1b9a; /* Perfect Gift Academy purple */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.gallery-hero h1 {
    margin: 0;
    font-size: 2.5rem;
}

.gallery-hero p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}