/* --- THANK YOU SECTION (Centered with Larger Photo) --- */
.thankyou-section {
    background: var(--bg-cream);
    padding: 5rem 0;
}

.thankyou-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--accent-pink);
    text-shadow: 2px 2px 0px var(--primary-green);
    margin-bottom: 1.5rem;
}

.thankyou-message {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-green);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Larger Framed Photo */
.thankyou-frame {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    border: 4px solid var(--primary-green);
    box-shadow: 8px 8px 0px var(--accent-pink);
    background: white;
}

.thankyou-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Photo Overlay - Text inside photo */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    text-align: center;
    color: white;
}

.frame-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 77, 62, 0.95);
    color: var(--bg-cream);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.overlay-couple {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.overlay-hashtag {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent-pink);
    font-weight: 700;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.overlay-date {
    font-family: var(--font-body);
    font-size: 1rem;
    color: white;
    font-weight: 500;
    margin: 0.5rem 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thankyou-section {
        padding: 3rem 0;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .thankyou-message {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .thankyou-frame {
        width: 300px;
        height: 400px;
    }

    .photo-overlay {
        padding: 1.5rem;
    }

    .overlay-couple {
        font-size: 2rem;
    }

    .overlay-hashtag {
        font-size: 0.95rem;
    }

    .overlay-date {
        font-size: 0.9rem;
    }
}