/* ==========================================
   THANK YOU SECTION
========================================== */

.thank {
    position: relative;
    text-align: center;
    color: #fff;
}

.thanks-wrapper {
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.thank .section-title {
    font-family: var(--heading-font);
    font-size: 40px;
    margin-bottom: 25px;
    color: #fff;
}

.thanks-text {
    max-width: 650px;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

.small-margin {
    margin-bottom: 10px;
}



.thanks-family {
    margin-top: 30px;
}

.thanks-family-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.thanks-family-text {
    font-size: 15px;
    margin-bottom: 8px;
}

/* Footer */

footer {
    background: #111;
    padding: 15px;
    text-align: center;
}

.footer {
    font-size: 13px;
    text-decoration: none;
    color: #ccc;

}

.footer:hover {
    color: #fff;
}

.e-moment {
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* CTA kecil elegan */
.footer-cta {
    font-size: 12px;
    text-decoration: none;
    color: var(--secondary-color);
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s ease;
    padding-bottom: 100px;
}

/* Underline animasi halus */
.footer-cta::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: var(--secondary-color);
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.footer-cta:hover::after {
    width: 100%;
}

.footer-cta:hover {
    opacity: 0.9;
}