/* src/css/home.css (Versi Simple) */
.home {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    margin-top: -1rem; /* Menggunakan margin negatif untuk menggeser ke atas */
}
.home-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column; /* <-- KUNCI UTAMA: menumpuk item secara vertikal */
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

.home-content figcaption {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -5rem;
}
.home-content .brideLName,
.home-content .bridePName,
.home-content .ampersand {
    font-family: 'namapengantin';
    font-size: 3.5rem;
    background: linear-gradient(90deg,
            #001069,
#bec8ff,
#97c3f2,
#8495ff,
#a4b2ff,
#061257
        );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* DIUBAH: Durasi diperpanjang untuk gerakan yang lebih luas */
    animation: aurora-glow 16s linear infinite;
}

/* Mengatur ukuran font ampersand secara spesifik */
.home-content .ampersand {
    font-size: 2.5rem;
}

/* Memberi jeda agar nama kedua muncul setelah nama pengantin */
.home-content .bridePName {
    animation-delay: 1s;
}

/* Mendefinisikan animasi aurora-glow */
@keyframes aurora-glow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        /* DIUBAH: Bergerak sejauh 400% agar loop mulus */
        background-position: 400% 50%;
    }
}

.home-content .home-guest-name {
    margin-top: -0.5rem; /* DIUBAH: Menggeser posisi lebih ke atas */
    padding: 0;
    background-color: transparent; /* DIHAPUS: Latar belakang kartu */
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

.home-content .home-guest-name span {
    font-size: 1.2rem; /* Ukuran font disesuaikan */
    font-weight: bold;
    line-height: 1.5;
    opacity: 0.8; /* DIUBAH: Membuat teks sedikit redup */
    color: white; /* Pastikan warna tetap putih */
    position: relative; /* Diperlukan untuk pseudo-elements */
}

/* DITAMBAHKAN: Kode untuk simbol kurung "(" */
.home-content .home-guest-name span::before {
    content: '( ';
}

/* DITAMBAHKAN: Kode untuk simbol kurung ")" */
.home-content .home-guest-name span::after {
    content: ' )';
}