/* General Styles */
body {
    margin: 0;
    font-family: 'Dancing Script', cursive;
    background: #fbe9e7;
    color: #6a1b9a;
    text-align: center;
    scroll-behavior: smooth;
    font-size: 18px;
}
header {
    background: #d81b60;
    color: #fff;
    padding: 2rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}
header h1 {
    margin: 0;
    font-size: 3.5rem;
    animation: slideInFromLeft 1s ease-in-out;
}
header p {
    margin: 0.5rem 0 0;
    font-size: 1.8rem;
    animation: slideInFromRight 1s ease-in-out;
}
main {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
section {
    width: 80%;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
section p {
    font-size: 1.5rem;
    line-height: 1.6;
}
.intro {
    animation: slideInFromBottom 1s ease-in-out;
}
.gallery {
    animation: fadeIn 1s ease-in-out;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: auto;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.message, .letter {
    animation: slideInFromTop 1s ease-in-out;
}
footer {
    background: #d81b60;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}
footer p {
    margin: 0;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}