/* ==== SECTION WAKTU ACARA ==== */
.time {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    padding: 10rem 8rem;
    position: relative;
}

/* ==== JUDUL UTAMA ==== */
.time h2 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-base);
    font-weight: 400;
}

/* ==== WRAPPER UTAMA DI BAWAH JUDUL ==== */
.time > div:nth-of-type(1) {
    margin-top: 2rem;
}

/* ==== JUDUL ACARA (Contoh: "Akad", "Resepsi") ==== */
.time > div:nth-of-type(1) div h3 {
    font-family: var(--sacramento);
    font-size: var(--fontSize-heading-lg);
    font-weight: 400;
}

/* ==== SUB-BAGIAN ACARA (Misal: lokasi, tanggal) ==== */
.time > div:nth-of-type(1) div:nth-of-type(2) {
    margin-top: 2rem;
}

/* ==== TOMBOL MENUJU LOKASI ==== */
.time a {
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    background-color: #000;
    margin: 2rem auto 1rem;
    border-radius: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.time a:hover {
    background-color: #444;
}

/* ==== IKON DI TOMBOL ==== */
.time a i {
    font-size: 1.2rem;
}

/* ==== IKON DEKORASI (contoh: icon hati atau animasi) ==== */
.time a + p + i {
    position: absolute;
    right: 8rem;
    top: 22rem;
    font-size: 3rem;
    color: #908d8d;
    animation: upAndDown 3s infinite;
}

/* ==== ANIMASI (jika diperlukan) ==== */
@keyframes upAndDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
