@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');
:root {
    --body-color: #040315;
    --main-color: #021604; /* Hijau tua */
    --secondary-color: #FFE500; /* Kuning */
    --gradation-color: #FFA800; /* Oranye */
    --accent-color: #6C63FF; /* Ungu modern */
    --text-color: #000000; /* Putih untuk teks */
    --background-gradient: linear-gradient(135deg, #040315, #1A1A2E); /* Gradien gelap */
    --card-background: rgba(255, 255, 255, 0.1); /* Latar belakang card transparan */
    --border-radius: 15px; /* Border radius konsisten */
}

body {
    background: var(--background-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--main-font);
    line-height: 1.6;
    padding: 20px;
}

.roof-container {
    display: grid;
    place-items: center;
    padding: 20px;
}

.card {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.input-group > input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease;
}

.input-group > input:focus {
    border-color: var(--accent-color);
    outline: none;
}

@keyframes muncul {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .moon {
        margin-bottom: -5%;
    }

    .card {
        padding: 15px;
    }

    .text-date {
        margin-left: 0;
        text-align: center;
    }

    .input-group > input {
        width: 100%;
        margin-inline: 0;
    }
}

@media (max-width: 576px) {
    .moon {
        margin-bottom: -10%;
    }

    .card {
        padding: 10px;
    }

    .text-end, .text-date {
        font-size: 0.9rem;
    }
}
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.8;
}

.text-end, .text-date {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-color);
    margin: 10px 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lamp-1, .lamp-2 {
    animation: fadeIn 1s ease-in-out;
}

.card-list > .list-group-item-action {
    transition: all 0.3s ease;
}

.card-list > .list-group-item-action:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.moon {
    margin-bottom: -3%;
    margin-top: 10%;
    z-index: 5000;
}

.stick {
    width: 5px;
    height: 20px;
    background-color: var(--secondary-color);
    outline: none;
    border: none;
}

.box-top {
    width: 30%;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 100% 100%  0 0;
    outline: none;
    border: none;
}

.box-mid {
    
    width: 55%;
    height: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--secondary-color);
    outline: none;
}

.text-end {
    background-color: #fff;
    border-radius: 20px;
    font-weight: bold;
    padding: 10px;
    padding-right: 20px;
    width: fit-content;
    margin-left: 5%;
}

.card {
    background-color: var(--main-color);
    padding-top: 5%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border: none;
    outline: none;
    margin-bottom: 5%;
}

.input-group {
    margin-top: 3%;
}

.input-group > input {
    margin-inline: 5%;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    font-weight: bold;
}

.table {
    border-radius: 20px;
}

.list-group-item {
    font-weight: 600;
}

.text-date {
    background-color: #fff;
    border-radius: 20px;
    font-weight: bold;
    padding: 10px;
    width: fit-content;
    margin-left: 5%;
    margin-bottom: 8%;
    margin-top: 3%;
}

.card-list {
    margin-inline: 2%;
    padding: 8px 15px;
    border-radius: 20px;
}

.card-list > .list-group-item-action {
    border-radius: 20px;
    margin-top: 1%;
}

.card-list > .list-group-item-action:hover {
    outline: 3px solid var(--gradation-color);
}

.hidden-list {
    display: none;
}

/* Responsive Design */

@media (min-width: 576px) {
    .moon {
        margin-bottom: -2%;
    }

    .card-body {
        margin-inline: 2%;
    }

    .text-date {
        margin-left: 63%;
    }
}

@media (min-width: 768px) {
    .moon {
        margin-bottom: -1%;
    }

    .card-body {
        margin-inline: 3%;
    }

    .text-date {
        margin-left: 71.5%;
    }
}

@media (min-width: 992px) {
    .moon {
        margin-bottom: -0.8%;
    }

    .text-date {
        margin-bottom: 6%;
        margin-left: 81%;
    }

    .card-body {
        margin-inline: 3.5%;
    }
}

@media (min-width: 1200px) {
    .moon {
        margin-bottom: -0.5%;
    }

    .text-date {
        margin-bottom: 4%;
        margin-left: 83%;
    }
}
/*--------------------------------------------------------------
# webkit scrollbar
--------------------------------------------------------------*/

/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    display: none;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent;
    display: none;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: crimson;
    display: none;
  } 
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: crimson;
    display: none;
  } 
  