.opening {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 20;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.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: rgba(19, 22, 19, 0.116);
    z-index: 1;
}

.opening-content {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 30px 10px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    background: rgba(127, 141, 132, 0.3);
    backdrop-filter: blur(4px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.opening-subtitle {
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
    color: var(--white);
}

.nickname-opening {
    font-family: var(--font-display);
    font-size: 4.1rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: var(--white);
}

.ampersand-opening {
    display: inline-block;
    font-size: 1.5rem;
    margin: 10px 0;
    opacity: 0.9;
    color: var(--white);
}

.main-date {
    margin-top: 20px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.85;
    color: var(--white);
}

.quote-section {
    color: white;
    padding: 30px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.welcome {
    font-family: var(--font-brillon);
    display: flex;
    align-items: flex-start;
    /* biar bisa di-offset */
    justify-content: center;
    gap: 10px;
    /* jarak antar inisial */
    font-size: 3rem;
}

.initial.first {
    position: relative;
    top: -10px;
    /* naik sedikit */
}

.initial.second {
    position: relative;
    top: 10px;
    /* turun sedikit */
}

.quote p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
}

.floral-ornament {
    position: absolute;
    top: 40px;
    font-size: 1.2rem;
    opacity: 0.25;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--serenity-accent);
}

.floral-ornament.left {
    left: 20px;
}

.floral-ornament.right {
    right: 20px;
}

.cover {
    width: 100%;
    max-width: 380px;
    display: block;
    box-shadow: var(--shadow);
}

img.cover {
    max-height: 380px;
    object-fit: cover;
}

.quote {
    color: rgb(15, 15, 15);
}



/* pastikan isi di atas overlay */
.quote>* {
    position: relative;
    z-index: 2;
}




.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.time-box {
    height: 80px;
    border-radius: 100%;
    padding: 14px 10px;
}

.time-box span {
    padding-top: 60px;
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    color: white;
}

.time-box small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: white;
}