/* public/css/closing.css */

.closing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

/* Background Image Full Content */
.closing-bg-image {
    position: absolute;
    inset: 0;
    background: url('/images/SLM08669.JPG') no-repeat center;
    background-size: cover;
    z-index: 1;
    transform: scale(1.1);
    filter: brightness(0.5);
}

.closing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.closing-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
}

.closing-thank-you {
    font-size: 12px;
    letter-spacing: 0.8em;
    margin-bottom: 15px;
    opacity: 0.8;
}

.closing-divider {
    width: 40px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
}

.closing-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-style: italic;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.closing-date {
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Styling Foto Utama di Halaman Penutup */
.closing-image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.closing-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: brightness(0.9);
}

/* --- OVERRIDE GLOBAL UNTUK MOBILE --- */
@media (max-width: 1023px) {
    .closing-section {
        height: 100dvh !important;
        width: 100% !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px !important;
    }

    .closing-bg-image {
        height: 100% !important;
        width: 100% !important;
        position: absolute;
        inset: 0;
        transform: scale(1.1);
        background-size: cover !important;
        background-position: center center !important;
        z-index: 1;
        filter: brightness(0.45);
        /* Sedikit lebih gelap agar teks putih "pop out" */
    }

    .closing-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 10px !important;
        z-index: 10;
    }

    .closing-thank-you {
        font-size: 10px;
        letter-spacing: 0.6em;
        margin-bottom: 12px;
    }

    .closing-divider {
        width: 30px;
        margin-bottom: 15px;
    }

    .closing-names {
        font-size: 36px;
        /* Ukuran pas untuk layar portrait HP */
        letter-spacing: 0.05em;
        margin-bottom: 8px;
    }

    .closing-date {
        font-size: 11px;
        letter-spacing: 0.25em;
        margin-bottom: 30px;
    }

    .closing-message-text {
        font-size: 12px;
        line-height: 1.6;
        opacity: 0.8;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Jika ada kontainer gambar tambahan di bawah */
    .closing-img {
        max-width: 260px;
        padding: 8px;
    }
}

/* Penyesuaian khusus untuk HP dengan layar kecil */
@media (max-height: 600px) and (orientation: portrait) {
    .closing-names {
        font-size: 32px;
    }

    .closing-date {
        margin-bottom: 20px;
    }

    .closing-message-text {
        font-size: 11px;
        max-width: 260px;
    }
}