.opening {
    padding: 60px 0px 120px;
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    position: relative;
}

#opening {
    position: relative;
    z-index: 100;

    transform: translateY(120vh);

    transition: transform 1.3s cubic-bezier(.65, .05, .36, 1);
}

.invitation-open #opening {
    transform: translateY(0);
}

.quote-card {
    position: relative;
    width: 260px;
}


/* FOTO */

.quote-image {
    width: 320px;
    height: 420px;
    border-radius: 0 140px 20px 20px;
    overflow: hidden;
    border: solid 3px var(--secondary-color);
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* TANGGAL DI SAMPING FOTO */

.date-opening {
    position: absolute;
    right: -90px;
    top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 18px;
}


/* ANGKA TANGGAL */

.date-part {
    writing-mode: vertical-rl;
    text-orientation: upright;

    font-size: 16px;
    letter-spacing: 6px;
    font-weight: 600;
}


/* GARIS */

.line {
    width: 2px;
    height: 70px;
    background: white;
}


/* CARD PUTIH */

.quote-text {
    width: 100%;
    /* max-width: 340px; */
    background: var(--accent-color);
    color: black;
    padding: 20px 30px 80px;
    border-radius: 0 0 0px 150px;
    position: relative;
    z-index: -1;
    margin-top: -20px;
    text-align: end;
}

/* SUBTITLE */

.cover-subtitle {
    font-family: 'Cormorant Garamond';
    font-size: 18px;
    letter-spacing: 1px;
    text-align: start;
    font-weight: 500;
}


/* NAMA PASANGAN */

.nickname {
    font-family: 'Cormorant Garamond';
    font-size: 26px;
    margin: 10px 0 20px;
    text-align: end;
}


/* QUOTE */

.quote {
    font-family: 'Cormorant Garamond';
    font-size: 14px;
    line-height: 1.7;
    text-align: end;
    font-style: italic;
}