.gallery-heading {
    text-align: center;
    font-size: 4rem;
    color: #ff6600;
    margin: 20px 0;
}

.gallery-select {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-select label {
    font-weight: bold;
    margin-right: 10px;
}

.gallery-select select {
    padding: 5px 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    transition: all 0.5s ease-in; /* Smooth transition */
    cursor: pointer;
}

/* Hover & focus transition for dropdown */
.gallery-select select:hover {
    border-color: #ff6600;
    background-color: #fff5f0;
}

.gallery-select select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    padding: 0 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Fullscreen Overlay */
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
