* {
    margin: 0;
}

html {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

header {
    display: flex;
    padding: 15px 20px 10px 20px;
    border-bottom: 1px solid black;
}

main {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}


.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.active {
    color: black !important;
}

.text-logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-logo-wrapper>h1 {
    margin-top: -10px;
    margin-bottom: -15px;
}

.text-logo-wrapper>p {
    font-size: 12px;
    color: rgb(100, 100, 100);
}

.navigation {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.navigation>a {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: gray;
}

.navigation>a:hover {
    color: black;
}

.hero-badge {
    display: inline-block;
    background-color: #faae2b;
    border: 1px solid black;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: black;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
}

.panel-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.panel-1>.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-1>.right-panel {
    flex: 1;
}

.panel-1>.right-panel>h2 {
    font-size: 32px;
    width: 75%;
}

.panel-1>.right-panel>p {
    font-size: 18px;
    width: 75%;
}

.panel-1>.left-panel>img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.panel-donation {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.panel-donation-wrapper {
    height: 100%;
    color: white;
    border-radius: 20px;
    background-color: #faae2b;
    border: 1px solid black;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.panel-donation-wrapper:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}

.panel-donation-wrapper>img {
    width: 400px;
}

.text-donation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: black;
}

.text-donation-wrapper>a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 20px;
    background-color: black;
    border: 1px solid black;
    text-decoration: none;
    color: white;
    width: fit-content;
    margin-top: 20px;
    transition: all 0.2s ease;
}
.text-donation-wrapper>a:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 1);
}

.text-donation-wrapper>a>p {
    margin-left: 20px;
}

.text-donation-wrapper>a>img {
    width: 40px;
    height: auto;
}

.panel-2 {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.panel-2>.left-panel {
    flex: 1;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.panel-2>.right-panel {
    flex: 1;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.panel-2-image-wrapper>img {
    width: 200px;
    height: 200px;
}

.panel-2-wrapper {
    height: 100%;
    color: white;
    border-radius: 20px;
    background-color: black;
    border: 1px solid black;
    box-shadow: 6px 6px 0px 0px rgba(250, 174, 43, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.panel-2-wrapper:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px 0px rgba(250, 174, 43, 1);
}

.panel-2-wrapper>h2 {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

.panel-2-wrapper>p {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

.panel-2-wrapper>a {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    width: fit-content;
    margin-top: 20px;
    transition: all 0.2s ease;
}
.panel-2-wrapper>a:hover {
    cursor: pointer;
    background-color: #fafafa;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px 0px rgba(250, 174, 43, 1);
}

footer {
    background-color: black;
    padding: 10px 20px 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer>p {
    color: white;
}

/* 1. MOBILE (Ponsel Standar - Gaya Desain Mobile First) */
@media (max-width: 575px) {
    .logo>img {
        width: 32px;
        height: auto;
    }

    .text-logo-wrapper {
        height: 100%;
    }

    .text-logo-wrapper>h1 {
        font-size: 16px;
        margin-top: -15px;
    }

    .text-logo-wrapper>p {
        display: none;
    }

    .navigation>a {
        font-size: 14px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .panel-donation-wrapper>img {
        max-width: 320px;
        width: auto;
        height: auto;
    }

    .text-donation-wrapper {
        color: black;
        text-align: center;
        margin-top: 20px;
    }

    .text-donation-wrapper>p {
        font-size: 14px;
    }

    .panel-1 {
        flex-direction: column;
    }

    .right-panel>h2 {
        font-size: 24px !important;
        width: 100% !important;
        text-align: center;
    }

    .right-panel>p {
        font-size: 16px !important;
        width: 100% !important;
        margin-top: 10px;
        text-align: center;
    }

    footer>p {
        font-size: 12px;
        text-align: center;
    }

    .panel-2 {
        flex-direction: column;
    }

    .panel-2-wrapper {
        margin-bottom: 60px;
    }

    /* Tulis gaya CSS untuk layar sangat kecil di sini */
}

/* 2. LARGE MOBILE & SMALL TABLET (Ponsel besar / Tablet kecil) */
@media (min-width: 576px) {
    /* Tulis gaya CSS untuk perangkat dengan lebar minimal 576px di sini */
}

/* 3. TABLET (Tablet standar) */
@media (min-width: 768px) {
    /* Tulis gaya CSS untuk perangkat tablet di sini */
}