/* Footer - Full Page Goodbye Salutation */
.goodbye-footer {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(-45deg, #5A3D6B, #7D4FB5, #8B5FBF, #7557A0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.goodbye-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.goodbye-footer .container {
    position: relative;
    z-index: 1;
}

/* White text on purple gradient */
.goodbye-footer h2,
.goodbye-footer .display-4,
.goodbye-footer .h4 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.goodbye-footer .lead,
.goodbye-footer .text-white-50,
.goodbye-footer .small {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

.divider {
    width: 80px;
    height: 2px;
    background: white;
    margin: 2rem auto;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

footer p {
    letter-spacing: 2px;
}
