@font-face {
    font-family: "Negrita Pro";
    src: url("/user/font/negrita-pro/NegritaPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Negrita Pro Bold";
    src: url("/user/font/negrita-pro/OpenSans-Regular.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Open Sans";
    src: url("/user/font/open-sans/NegritaPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}
html {
    font-size: 18px; /* defaultnya 16px */
}
body {
    background-color: #ffa098 !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
}
.text-bold {
    font-weight: bold !important;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column; /* ✅ urutin vertikal: title di atas, content di bawah */
    justify-content: center; /* ✅ center vertikal */
    align-items: center; /* ✅ center horizontal */
    overflow: hidden;
    text-align: center;
}
.home .ellipse-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home .two-child {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1500px;
    max-width: 100%;
    z-index: 1;
}
.home .title-wrapper {
    z-index: 1;
}

.home .logo-title {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.home .ellipse-content {
    z-index: 9999;
    width: 350px;
    max-width: 90%;
    text-align: center;
}

@media (max-width: 992px) {
    .home .logo-title {
        width: 400px;
        max-width: 85%;
    }
    .home .ellipse-content {
        width: 300px;
        max-width: 85%;
    }
}

@media (max-width: 576px) {
    .home .logo-title {
        width: 1000px;
        max-width: 100%;
    }
    .home .ellipse-content {
        width: 85%;
        margin-top: 15px;
    }
    .home .two-child {
        display: none;
    }
    .home .btn-onhome {
        padding: 10px;
        font-size: 1rem;
        border-radius: 12px;
        margin-top: 10px;
    }

    .btn-gotohome,
    .btn-logout {
        width: 45px;
        height: 45px;
    }
    .btn-gotohome i,
    .btn-logout i {
        font-size: 20px;
    }
}

.home .btn-onhome {
    background: #fff;
    border: 3px solid #000;
    color: #000;
    padding: 14px;
    border-radius: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.home .btn-onhome:hover {
    background: #f5f5f5b2;
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.home a {
    text-decoration: none !important;
}

.btn-gotohome {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2daafc, #1e90ff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border: none;

    box-shadow: 0 6px 0 #144a7c, 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gotohome i {
    color: #fff;
    font-size: 28px;
}

.btn-gotohome:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #144a7c, 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-logout {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e76647;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    border: none;
}

.btn-logout i {
    color: #fff;
    font-size: 24px;
}

.btn-logout:hover {
    opacity: 0.8;
}

.btn-logout {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e76647, #be553b);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border: none;
    box-shadow: 0 6px 0 #883d2a, 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-logout i {
    color: #fff;
    font-size: 28px;
}

.btn-logout:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #883d2a, 0 2px 6px rgba(0, 0, 0, 0.3);
}
