/* --- Footer Section --- */
.footer-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    margin-top: auto;
}

.thank-you-title {
    font-family: var(--font-primary);
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you-text {
    font-family: var(--font-legan);
    font-size: 10px;
    color: #ddd;
    margin-bottom: 40px;
}

.footer-couple-name {
    font-family: var(--font-candlefish);
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.created-by {
    font-family: var(--font-legan);
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-socials a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #aaa;
}

.copyright {
    font-family: var(--font-legan);
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 32px;
    }
}