.opening {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* overlay biar teks kebaca */
.opening::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--background);
    z-index: 1;
}

.opening-content {
    padding: 100px 25px;
    border-radius: 150px;
    border: solid var(--white) 2px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);

}


.opening-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
}

.nickname-opening {
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.ampersand-opening {
    display: inline-block;
    font-size: 1.5rem;
    margin: 10px 0;
    opacity: 0.9;
}

.main-date {
    margin-top: 20px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.85;
}



.quote-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-opening);
    overflow: hidden;
}

.floral-ornament {
    position: absolute;
    top: 40px;
    font-size: 1.2rem;
    opacity: 0.25;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floral-ornament.left {
    left: 20px;
}

.floral-ornament.right {
    right: 20px;
}

.cover {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: var(--shadow);
}

.quote {
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    line-height: 1.9;
    font-style: italic;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.time-box {
    min-width: 70px;
    border: none;
    border-left: solid 1px;
    border-right: solid 1px;
    padding: 14px 10px;
    background: var(white);
}

.time-box span {
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
}

.time-box small {
    font-size: 0.7rem;
    letter-spacing: 1px;
}