body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Mencegah scrolling */
    background-color: #f5f0e1; /* Warna latar belakang cokelat muda */
}

.fullscreen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/bg-image.jpeg'); /* Ganti dengan path gambar latar belakang mewah Anda */
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Warna putih dengan opasitas 50% */
    z-index: 1; /* Pastikan overlay berada di atas background */
}

.content-wrapper {
    text-align: center;
    color: #b8860b; /* Warna emas */
}

.nama-mempelai {
    font-family: 'Engagement', cursive; /* Ganti dengan nama font yang diinginkan; "Meie Script" */
    font-size: 3em; /* Ukuran font bisa disesuaikan */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Efek bayangan halus */
    z-index: 3;
    position: relative;
}

.button-link{
    z-index: 3;
    position: relative;
    display: inline-block; /* Agar bisa diberi padding dan margin seperti block, tapi tetap inline */
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #b8860b; /* Warna emas */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px; /* Beri jarak dengan tombol sebelumnya */
    text-decoration: none; /* Menghilangkan garis bawah default link */
    transition: background-color 0.3s ease;
}

#countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.5); /* Latar belakang semi-transparan untuk kontras */
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.5em;
    font-weight: bold;
}

.countdown-item span {
    display: block;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nama-mempelai {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    #countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 10px 15px;
        font-size: 1.2em;
    }
}

#snowflakes-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3; /* Atur sesuai kebutuhan */
    position:fixed;
}

.snowflake {
    position: absolute;
    background: white; /* Warna snowflake */
    border-radius: 50%; /* Bentuk lingkaran */
    opacity: 0.7; /* Opasitas awal (akan diubah oleh JS) */
}


