/* SPLASH */

.splash-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    z-index: 20;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    align-items: center;
    justify-content: center;

    transition: opacity .7s ease, visibility .7s ease;
}

.splash-container.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-container.hide {

    visibility: hidden;
}

.splash-container.removed {
    display: none;
}



.cover-hero {
    min-height: 100vh;
    position: sticky;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-height: 100vh;
    text-align: center;
    padding-bottom: 100px;
    z-index: 999;

}

.cover-top {
    position: absolute;
    top: 50px;
    text-align: center;
}

/* bagian bawah */
.cover-content {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cover-hero::before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.623);
    inset: 0;
    z-index: 0;
}

.cover-hero * {
    z-index: 999;
}

.cover-hero-desktop {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 250px;
    gap: 50px;
}

.cover-bottom-desktop {
    margin-top: 30px;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    display: block;
    text-align: center;
}

p.cover-subtitle {
    font-size: 25px;
    font-family: var(--heading-font);
}

p.cover-subtitle-desktop {
    font-size: 28px;
    font-family: var(--heading-font);
}

h1.nickname {

    font-family: var(--couple-name);
    font-size: 36;
    text-transform: uppercase;
}

h1.nickname-desktop {
    font-family: var(--couple-name);
    font-size: 42;
    text-transform: uppercase;
}

.open-invitation {
    color: var(--text-color);
    background: var(--primary-color);
    padding: 10px;
    border: solid 2px var(--text-color);
    border-radius: 5px
}