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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    /* background-image: url(/assets/backgorund-PelitaKasih.png);
    background-size: cover;
    background-position: center; */

    /* background-image: 
      linear-gradient(
        90deg,
        rgba(0, 255, 255, 0.15) 1px,
        transparent 1px
      ),
      linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.15) 1px,
        transparent 1px
      ),
      url('/assets/backgorund-PelitaKasih.png'); 
      
    background-size: 
      100px 100px, 
      100px 100px, 
      cover;      
      
    background-position:
      10% 20%,
      -10% -10%,
      center;
      
    background-repeat: 
      repeat, 
      repeat, 
      no-repeat; */
      
    /* animation: moveLines 15s linear infinite;
    background-attachment: fixed; 
    background-color: black;  */

    background-image: url(/assets/backgorund-PelitaKasih.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    transition: 0.8s ease-in-out;
  }

.main {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    height: 100vh;
}

.main-2 {
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.text-content{
    animation: fadeDown 1s ease-in-out;
}

.text-content-2{
    animation: fadeUp 1s ease-in-out;
}

.text-content,
.text-content-2 {
    font-family: "Poppins";
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F2FDFF;
    text-shadow: 1px 1px 3px black;
}

.text-content h1 span {
    color: #00FFFF;
    background-color: rgba(242, 253, 255, 0.75);
    padding: 3px 15px;
    border-radius: 10px;
}

.text-content h2,
.text-content-2 h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #F2FDFF;
    text-shadow: 1px 1px 3px black;
}

.text-content-2 span {
    color: #00FFFF;
}

.logo-menu-hover {
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
}

.logo-pelitaKasih {
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    padding-bottom: 200px;
    user-select: none;
}

.logo-pelitaKasih img {
    position: relative;
    width: 230px;
    background: linear-gradient(270deg, rgba(0, 225, 255, 0.8), #cbffff);
    padding: 1rem;
    border-radius: 50%;
    transition: transform 0.4s ease-in-out 0.2s;
    user-select: none;
    z-index: 1;
    background-size: 400% 400%;
    animation: gradientSpin 8s ease infinite;
}

.logo-pelitaKasih:hover img {
    transform: translateY(-50%) scale(1.05);
}

.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    padding-bottom: 300px;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease-in-out 0.2s;
    user-select: none;
}

.logo-pelitaKasih:hover .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(0.8);
}

.menu a {
    left: 0;
    position: absolute;
    font-family: "Poppins";
    font-size: 1.15rem;
    font-weight: 500;
    color: #002944;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 253, 255, 0.8);
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transition: transform 0.4s ease-in-out 0.2s, box-shadow 0.3s ease-in-out 0s, backdrop-filter 0.3s ease-in-out 0s;
}

.menu a:hover {
    box-shadow: 0 0 10px 2px #cbffff;
}

.menu a i {
    font-size: 5rem;
}

.logo-pelitaKasih:hover .menu a:nth-child(1) {
    transform: translateY(40%) translateX(-100%);
}

.logo-pelitaKasih:hover .menu a:nth-child(2) {
    transform: translateY(80%);
}

.logo-pelitaKasih:hover .menu a:nth-child(3) {
    transform: translateY(40%) translateX(100%);
}


@media only screen and (max-width: 768px) {
    html {
        font-size: 90%;
    }

    .main-2 {
        justify-content: center;
        align-items: center;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5rem;
    }

    .text-content,
    .text-content-2 {
        font-family: "Poppins";
        justify-content: center;
        align-items: center;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .text-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #F2FDFF;
        text-shadow: 1px 1px 3px black;
    }

    .text-content h1 span {
        color: #00FFFF;
        background-color: rgba(242, 253, 255, 0.75);
        padding: 3px 15px;
        border-radius: 10px;
    }

    .text-content h2,
    .text-content-2 h2 {
        font-weight: 700;
        font-size: 1.8rem;
        color: #F2FDFF;
        text-shadow: 1px 1px 3px black;
    }

    .text-content-2 span {
        color: #00FFFF;
    }

    .logo-menu-hover {
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .logo-pelitaKasih {
        all: unset;
        position: relative;
        align-items: center;
        justify-content: center;
        user-select: none;
        pointer-events: unset;
    }


    .logo-pelitaKasih #logoClick {
        position: relative;
        width: 200px;
        height: 200px;
        background: linear-gradient(270deg, rgba(0, 225, 255, 0.8), #cbffff);
        padding: 10px;
        border-radius: 50%;
        transition: transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
        background-size: 400% 400%;
        animation: gradientSpin 8s ease infinite;
        z-index: 1;
        opacity: 1;
    }

    .logo-pelitaKasih.hover #logoClick,
    .logo-pelitaKasih:hover #logoClick {
        position: relative;
        width: 200px;
        height: 200px;
        background: linear-gradient(270deg, rgba(0, 225, 255, 0.8), #cbffff);
        padding: 10px;
        border-radius: 50%;
        transform: translateY(-110%) scale(0.7);
        z-index: 1;
    }

    .logo-pelitaKasih img {
        all: unset;
        width: 100%;
    }

    .logo-pelitaKasih:hover img {
        all: unset;
        width: 100%;
    }

    .menu-container {
        position: absolute;
        justify-content: center;
        width: 100%;
        height: 100%;
        align-items: center;
        top: 0;
    }

    .menu {
        all: unset;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        transition: opacity 0.5s ease-in-out;
        opacity: 0;
    }

    .logo-pelitaKasih.hover .menu,
    .logo-pelitaKasih:hover .menu {
        all: unset;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        opacity: 1;
    }

    .menu a {
        all: unset;
        position: absolute;
        font-family: "Poppins";
        font-size: 1rem;
        font-weight: 500;
        color: #002944;
        align-items: center;
        justify-content: center;
        background-color: rgba(242, 253, 255, 0.8);
        display: flex;
        width: 100%;
        height: 30%;
        padding: 5px;
        border-radius: 10px;
        transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
        gap: 10px;
        cursor: pointer;
    }

    .menu a.hover {
        position: absolute;
        font-family: "Poppins";
        font-size: 1rem;
        font-weight: 500;
        color: #002944;
        align-items: center;
        justify-content: center;
        background-color: rgba(242, 253, 255, 0.8);
        display: flex;
        width: 100%;
        height: 30%;
        padding: 5px;
        border-radius: 10px;
        transition: 0.3s ease-in-out;
        gap: 10px;
        box-shadow: 0 0 10px 2px #cbffff;
        cursor: pointer;
    }

    .menu a i {
        font-size: 2rem;
    }

    .logo-pelitaKasih.hover .menu a:nth-child(1),
    .logo-pelitaKasih:hover .menu a:nth-child(1) {
        transform: translateY(-120%) translateX(0);
    }

    .logo-pelitaKasih.hover .menu a:nth-child(2),
    .logo-pelitaKasih:hover .menu a:nth-child(2) {
        transform: translateY(0);
    }

    .logo-pelitaKasih.hover .menu a:nth-child(3),
    .logo-pelitaKasih:hover .menu a:nth-child(3) {
        transform: translateY(120%) translateX(0);
    }
}

@media only screen and (max-width: 450px){
    html{
        font-size: 80%;
    }
}