body {
    font-family:  sans-serif;
    background-color: #f4f7f6;
}

.text-gradient-pink-purple {
    background: linear-gradient(to right, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-lg-custom {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.photo-card {
    transition: transform 0.2s ease-in-out;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.animated-gradient-border {
    background: linear-gradient(45deg, #EC4899, #8B5CF6);
    background-size: 200% 200%;
    animation: gradient-pulse 4s ease infinite;
}

@keyframes gradient-pulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.7), 0 0 30px 10px rgba(236, 72, 153, 0.5);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    }
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.lightbox-description {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1rem;
    max-width: 80%;
    text-align: center;
}

/* Icon styling */
.icon-button {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.icon-button:hover {
    background-color: rgba(255, 255, 255, 1);
}