/* ======================
   WELCOME SECTION (Intro)
   ====================== */
.welcome {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #212529;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 2s ease-in;
    font-family: 'Lora', serif;
}

/* ACTIVE STATE (tampil turun dari atas) */
.welcome.active {
    transform: translateY(0);
    opacity: 1;
}

/* HIDE STATE (keluar ke atas) */
.welcome.hide {
    top: -100%;
    opacity: 0;
}

/* JUDUL UTAMA */
.welcome h2 {
    font-size: 3rem;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* FOTO & CAPTION */
.welcome figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.welcome figure img {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: var(--shadow-md);
}

.welcome figure figcaption {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* DESKRIPSI NAMA TAMU / KALIMAT BUKAAN */
.welcome p span {
    display: block;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-family: 'Lora', serif;
}

/* TOMBOL MASUK / LANJUTKAN */
.welcome button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.welcome button:hover {
    background-color: #000;
    color: #fff;
}

/* ICON DI TOMBOL */
.welcome button i {
    font-size: 1.2rem;
}
