.event {
    background: transparent;
    padding: 1rem;
    margin-top: -4rem;
}

.content-event {
    border-radius: 0.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    font-family: var(--font-biasa);
}

.content-event h1 {
    font-family: var(--font-kaligrafi);
    font-size: 4rem;
    word-spacing: 0.5rem;
    line-height: 3rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.content-event h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-event h3 {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.content-event .date {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 1rem;
}

.content-event .dd {
    font-size: 4rem;
}

.tea-pai {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
}

.vertical-lines {
    width: 1px;
    height: auto;
    background-color: white;
    border: 1px solid white;
}

.content-event p {
    margin-bottom: 1rem;
}

.content-event a {
    text-decoration: none;
    color: black;
    background-color: var(--button);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.5s ease, color 0.5s ease;
}

.content-event a:hover {
    color: white;
    background-color: black;
}

.content-event i {
    margin-right: 5px;
}

.ceremony {
    margin-bottom: 3rem;
}

.reception {
    margin-bottom: 2rem;
}

.counting-days {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 2rem 2rem 5rem 2rem;
    margin: 2rem;
    color: white;
    height: 80vh;
    border-radius: 20rem;
    overflow: hidden;
    isolation: isolate;
}

/* overlay gradient sesuai versi lama */
.counting-days::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,1) 0%,
        transparent 40%,
        rgba(0,0,0,1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.counting-days > * { position: relative; z-index: 1; }

.counting-days h1 {
    font-family: var(--font-kaligrafi);
    text-shadow: 5px 5px 5px black;
    font-size: 3rem;
    line-height: 3rem;
    margin-top: 1.5rem;
}

.counting-days p {
    font-family: var(--font-biasa);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.counting-days a {
    text-decoration: none;
    background-color: var(--button);
    color: black;
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.counting-days a:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}

.counting-days i {
    margin-right: 5px;
}

.btn-save-date {
    margin-top: 1.5rem;
}