@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');

.allison-regular {
  font-family: "Allison", cursive;
  font-weight: 200;
  font-style: normal;
}

.opening {
    width: 100%;
    min-height: 100vh;        /* ⬅ GANTI: biar konten tidak kepotong */
    padding: 40px 20px;       /* ⬅ Tambah ruang supaya teks aman */

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-image: url(/src/assets/images/bg-2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: relative;
    top: 0;
    left: 0;

    transition: all 1.5s ease;
    transform: translateY(-100%);
    z-index: 5;
}

.opening.active {
    transform: translateY(0);
}

.letter-wrapper {
    max-width: 600px;
    text-align: center;
}

.title {
    font-size: 48px;
    color: gray;
    font-family: "Allison", cursive;   /* ⬅ ini lebih benar */
    margin-bottom: 25px;
    text-align: left;
    padding-left: 100px;
    padding-right: 250px;
}

.letter-wrapper img {
    width: 100%;
    height: auto;
}


.hadist {
    width: 100%;
    padding: 4rem 8rem;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
}

.hadist h2 {
    font-size: var(--fontSize-heading-base);
    font-family: "Allison", cursive;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hadist p span {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.hadist i {
    top: 16rem;
    left: 8rem;
}

.hadist svg {
    position: absolute;
    left: 0;
    right: 0;
    z-index: -10;
}

.hadist svg:nth-of-type(1){
    top: -8rem;
}

.hadist svg:nth-of-type(2){
    bottom: -15rem;
}
