/* Revan & Viza | Wedding */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Dosis:wght@200;300;400;500;600;700;800&family=Great+Vibes&family=Mooli&family=Pinyon+Script&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rouge+Script&display=swap');

:root {
    --primary: rgb(255, 175, 175);
    --primary-light: rgb(255, 200, 200);
    --primary-dark: rgb(255, 150, 150);

    --secondary: rgb(200, 200, 200);
    --secondary-light: rgb(225, 225, 225);
    --secondary-dark: rgb(175, 175, 175);

    --important: rgb(125, 125, 255);
    --important-light: rgb(150, 150, 222);
    --important-dark: rgb(100, 100, 222);

    --focus: var(--important);

    --header: rgba(255, 200, 200, 1);
    --footer: black;

    --container-section: rgb(255, 222, 222);

    --white: rgb(255, 255, 255);
    --black: rgb(0, 0, 0);
    --red: rgb(222, 0, 0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
}

body {
    font-family: 'Mooli', sans-serif;
    font-size: 15px;
}

.container-section {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: var(--container-section);
    z-index: 50;
}

.container-section-finish {
    display: none;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 98;
}

form.passwordForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login label {
    color: var(--red);
    font-weight: 500;
}

.login input {
    width: 250px;
    background-color: var(--white);
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 10px;
    border: 2.5px solid var(--primary-dark);
    border-radius: 5px;
    transition: all 0.25s ease-out;
}

.login input:focus {
    border-color: var(--red);
    transition: all 0.25s ease-out;
}

.login button {
    width: 150px;
    color: var(--red);
    background-color: var(--primary-light);
    box-shadow: 0 5px 10px var(--red);
    padding: 10px;
    border: 2.5px solid var(--primary-light);
    border-radius: 25px;
    transform: scale(1);
    transition: all 0.25s ease-out;
}

.login button:hover {
    background-color: var(--primary);
    transform: scale(0.99);
    transition: all 0.25s ease-out;
}

.notif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    transform: scale(0);
    opacity: 0;
}

.notif-active {
    transform: scale(1);
    opacity: 1;
    transition: opacity 0.15s ease-out;
}

.password-salah {
    position: fixed;
    width: max-content;
    background-color: var(--black);
    padding: 50px;
    border: 2.5px solid var(--white);
    border-radius: 10px;
}

.password-salah p {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
}

.password-salah i {
    position: absolute;
    top: -15px;
    right: -15px;
    color: var(--red);
    background-color: var(--black);
    font-size: 22px;
    padding: 5px 8px;
    border: 2.5px solid var(--white);
    border-radius: 50%;
}

.welcome,
.desainer,
.loading-01,
.loading-02,
.loading-03,
.loading-04,
.end,
.end-img-01,
.end-img-02,
.end-img-03 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    padding: 0 75px;
    padding-bottom: 25px;
}

.welcome {
    z-index: 99;
}

.desainer {
    z-index: 97;
}

.loading-01 {
    z-index: 96;
}

.loading-02 {
    z-index: 95;
}

.loading-03 {
    z-index: 94;
}

.loading-04 {
    z-index: 93;
}

.end {
    z-index: 92;
}

.end-img-01 {
    z-index: 91;
}

.end-img-02 {
    z-index: 90;
}

.end-img-03 {
    z-index: 89;
}

.transition-next {
    opacity: 1;
    transition: opacity 1.5s ease-out;
}

.welcome h1 {
    color: var(--red);
    font-family: 'Great Vibes', cursive;
    font-size: 33px;
    font-weight: 600;
    letter-spacing: 5px;
}

.desainer h1 {
    color: var(--red);
    font-family: 'Great Vibes', cursive;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
}

.desainer h2 {
    color: black;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
}

@keyframes lanjutkan {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.welcome p,
.desainer p {
    position: fixed;
    bottom: 25px;
    color: black;
    font-weight: 500;
    animation: lanjutkan 1.5s infinite;
    animation-timing-function: ease-in-out;
}

.login-hidden,
.desainer-hidden,
.loading-01-hidden,
.loading-02-hidden,
.loading-03-hidden,
.loading-04-hidden,
.end-hidden,
.end-img-01-hidden,
.end-img-02-hidden,
.end-img-03-hidden {
    opacity: 0;
}

.welcome-finish,
.login-finish,
.desainer-finish,
.loading-finish,
.end-finish,
.end-img-finish {
    display: none;
}

@keyframes love {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.loading .love {
    color: var(--red);
    font-size: 75px;
    animation: love 3s infinite;
    animation-timing-function: ease-in-out;
}

.loading h1 {
    color: var(--red);
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 10px;
}

.loading h2 {
    color: var(--red);
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.loading p {
    color: var(--red);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.next-back {
    margin-top: 50px;
}

.next-01,
.next-02,
.next-03,
.next-04,
.back-01,
.back-02,
.back-03 {
    color: var(--red);
    background-color: white;
    box-shadow: 0 5px 10px var(--red);
    font-size: 40px;
    margin: 0 25px;
    padding: 5px 7px;
    border-radius: 50%;
    transform: scale(1);
}

.next-01:hover,
.next-02:hover,
.next-03:hover,
.next-04:hover,
.back-01:hover,
.back-02:hover,
.back-03:hover {
    transform: scale(0.96);
}

.end h1 {
    color: var(--red);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.end i {
    color: var(--red);
    font-size: 30px;
    margin: 25px 0;
}

.end-img img {
    width: 250px;
    border: 5px solid var(--primary);
}

.end-img p {
    position: fixed;
    bottom: 25px;
    color: var(--red);
    font-size: 25px;
    font-weight: 600;
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.end-animation,
.end-img-animation {
    animation: opacity 2.5s ease-in-out;
}

img#top-left,
img#top-right,
img#bottom-left,
img#bottom-right {
    width: 150px;
    position: fixed;
}

img#top-left {
    top: 10px;
    left: 7px;
    transform: rotate(90deg);
}

img#top-right {
    top: 7px;
    right: 10px;
    transform: rotate(180deg);
}

img#bottom-left {
    bottom: 7px;
    left: 10px;
    transform: rotate(0deg);
}

img#bottom-right {
    bottom: 10px;
    right: 7px;
    transform: rotate(270deg);
}

.img-finish {
    display: none;
}

.fixed {
    position: fixed;
}

.opacity {
    width: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: var(--header);
    padding: 5px 25px;
    border-bottom: 1.5px solid var(--white);
    box-shadow: 0 2.5px 10px var(--black);
}

header h1 {
    color: var(--red);
    font-size: 25px;
    font-weight: 800;
}

.navbar {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    width: 12%;
    color: var(--red);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 3px 10px;
    border-radius: 10px;
    box-shadow: 0 3px 7px var(--red);
    transform: scale(1);
    transition: all 0.25s ease-out;
}

.navbar a:hover {
    box-shadow: 0 3px 7px var(--important);
    transform: scale(0.96);
    transition: all 0.25s ease-out;
}

.menu,
.close {
    display: none;
    color: var(--red);
    font-size: 25px;
    font-weight: 400;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url(../../img/background/01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-opacity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    letter-spacing: 1px;
}

.hero p {
    font-size: 15px;
    font-weight: 400;
}

.hero h1 {
    color: var(--primary-light);
    font-size: 36px;
    font-weight: 600;
}

.hero h2 {
    font-size: 15px;
    font-weight: 400;
}

.hero h3 {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 400;
}

.hero .hitung-mundur {
    width: max-content;
    color: var(--red);
    background-color: var(--primary-light);
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 3px 7px var(--red);
}

.content {
    padding: 100px 75px;
}

@keyframes gradient-01 {
    0% {
        background-position: left;
    }

    50% {
        background-position: right;
    }

    100% {
        background-position: left;
    }
}

@keyframes color-to-color-01 {
    0% {
        background-color: var(--primary);
    }

    50% {
        background-color: var(--secondary);
    }

    100% {
        background-color: var(--primary);
    }
}

.sambutan,
.cerita,
.acara {
    /* background-image: linear-gradient(to right, var(--primary), var(--secondary)); */
    /* background-size: 200%; */
    /* animation: gradient-01 15s infinite; */
    animation: color-to-color-01 15s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes gradient-02 {
    0% {
        background-position: right;
    }

    50% {
        background-position: left;
    }

    100% {
        background-position: right;
    }
}

@keyframes color-to-color-02 {
    0% {
        background-color: var(--secondary);
    }

    50% {
        background-color: var(--primary);
    }

    100% {
        background-color: var(--secondary);
    }
}

.tentang,
.galeri {
    /* background-image: linear-gradient(to left, var(--secondary), var(--primary)); */
    /* background-size: 200%; */
    /* animation: gradient-02 15s infinite; */
    animation: color-to-color-02 15s infinite;
    animation-timing-function: ease-in-out;
}

.sambutan {
    background-color: var(--primary);
}

.content .judul {
    width: max-content;
    background-color: var(--secondary-light);
    margin: auto;
    margin-bottom: 50px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 5px 10px var(--red);
}

.sambutan img {
    display: block;
    width: 250px;
    margin: auto;
}

.sambutan .container-slot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sambutan .slot {
    width: 45%;
}

.content h1,
.sambutan .slot h1 {
    color: var(--black);
    font-family: 'Great Vibes', cursive;
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 25px;
    padding: 0;
}

.content h1 {
    color: var(--red);
    margin: 0;
    padding: 10px 20px;
}

.content h2 {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.sambutan .slot p {
    text-align: center;
    line-height: 1.5;
}

.sambutan-end {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.sambutan-end img {
    width: 75px;
    margin: 0;
}

.tentang {
    background-color: var(--secondary);
}

.tentang .container-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tentang .slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
}

.tentang img {
    display: block;
    width: 150px;
}

.tentang .slot img {
    display: block;
    width: 222px;
    height: auto;
    border: 10px solid var(--primary);
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 5px 10px var(--black);
    margin: 0;
}

.tentang .slot h1 {
    color: var(--red);
    font-size: 33px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0;
}

.tentang .slot p {
    margin-top: 5px;
}

.tentang-end {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.tentang-end img {
    width: 75px;
}

.cerita {
    background-color: var(--primary);
}

.cerita p {
    text-align: justify;
    line-height: 1.5;
    margin-top: 15px;
}

.cerita h6 {
    color: var(--red);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 50px;
}

.cerita h6 span {
    font-size: 12px;
}

.galeri {
    background-color: var(--secondary);
}

.galeri .container-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.galeri .slot {
    width: 18%;
}

.galeri .slot h3 {
    color: var(--red);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}

.galeri .slot img {
    width: 100%;
    border: 5px solid var(--primary);
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 5px 10px var(--black);
}

.galeri-end {
    display: flex;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 30px;
    text-shadow: 0 0 5px var(--white);
    letter-spacing: 12px;
    margin-top: 10px;
}

.acara {
    background-color: var(--primary);
}

.acara .container-slot {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.acara .slot {
    width: 33%;
    text-align: center;
}

.acara .slot i {
    color: var(--red);
    font-size: 50px;
}

.acara .slot h3 {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.acara .slot p {
    color: var(--black);
    font-weight: 500;
    margin-top: 15px;
}

.acara h6 {
    color: var(--red);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    line-height: 2;
    margin-top: 100px;
}

.acara h6 span {
    letter-spacing: 15px;
}

footer {
    color: var(--white);
    background-color: var(--footer);
    box-shadow: 0 0 10px var(--primary-dark);
    text-align: center;
    padding: 50px 100px;
}

footer h1 {
    color: var(--primary-dark);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 15px 0;
}

footer h2 {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

footer h3 {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 50px;
}