/* Import Google Font for cursive style */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Basic body styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fefbe9; /* Light pastel yellow - Easter related */
    color: #333;
    margin: 0;
    padding: 0;
}

/* Title styling */
h1 {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding: 50px;
    font-size: 48px;
    color: white;
    background-color: #FFD700; /* Easter gold */
    border-radius: 20px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 182, 193, 0.7),
        0 0 50px rgba(255, 182, 193, 1),
        0 0 75px rgba(255, 105, 180, 1);
    font-family: 'Pacifico', cursive;
}

/* Gallery styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px #e6cce6);
}

.gallery-img:hover::after {
    content: "✝"; /* Unicode cross symbol */
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 32px;
    color: #ff69b4; /* Hot pink Easter accent */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 90%;
    max-height: 80vh;
}

.modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close {
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
    cursor: pointer;
}

.close:hover {
    color: #ff69b4;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 32px;
        padding: 30px;
        border-radius: 10px;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 400px) {
    h1 {
        font-size: 28px;
        padding: 20px;
        border-radius: 6px;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-gallery div {
    width: 300px;
    margin: 10px;
}

video {
    width: 100%;
    height: auto;
}

.divider {
    width: 80%;
    height: 4px;
    margin: 30px auto;
    background: linear-gradient(to right, #ffb6c1, #98fb98, #add8e6);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
