/* COVER HERO */
.cover-hero {
    position: fixed;
    /* Pastikan fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: white;
    padding: 40px 20px;
    z-index: 9999;
    transition: transform 0.8s ease, opacity 0.8s ease;

    /* Default: tampilkan */
    opacity: 1;
    transform: translateY(0);
    display: flex !important;
    /* Force display */
}

/* State hidden */
.cover-hero.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Tambahkan style inline di PHP untuk default state */
/* KONTEN BAWAH */
.cover-content {
    margin-bottom: 40px;
}

.nickname {
    margin-bottom: 20px;
}

a.open-invitation {
    margin-top: 20px;
    background: var(--bt-btn-1);
    padding: 12px 24px;
    color: white;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cover-bottom {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.guest-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
}

.guest-name {
    font-size: 1.1rem;
    margin: 6px 0;
    line-height: 1.4;
}

.guest-name strong {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.guest-addres {
    font-size: 0.75rem;
    opacity: 0.75;
}