* {
    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/background-abstract.jpg);
    background-position: top left;
    background-size: 200% 400%;
    backdrop-filter: blur(150px);
    background-repeat: repeat;
    animation: onlygradientSpin 20s linear infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    padding: 5rem 1%;
}

.hero-section {
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.row h1 {
    color: #00FFFF;
    font-size: 3.5rem;
    font-family: "Montserrat";
    font-weight: 800;
    text-align: center;
    mix-blend-mode: difference;
    animation: slideInRight-d70 2s;
}

.row .route {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-family: "Poppins";
    animation: slideInLeft-d70 2s;
}

.row .route a,
i {
    font-size: 14px;
    font-weight: 400;
    color: white;
    transition: 0.4s ease-in-out;
    border-bottom: 1px solid rgba(0, 255, 255, 0);
}

.row .route i {
    color: #00FFFF;
}

.row .route a:hover {
    border-bottom: 1px solid #00FFFF;
    color: #cbffff;
}

.row .route span {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 1px 1px 3px black;
}

.container-card {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    flex: 1 1 30%;
    padding: 1.5rem;
    border-radius: 15px;
    transition: 0.9s;
    align-items: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    min-height: 450px;
    height: 400px;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    background-origin: border-box;
    background-repeat: no-repeat;
}

.card:hover {
    flex: 1 1 100%;
    box-shadow: 0 0 25px #cbffff;
}

.panduan {
    background-image: url(/assets/panduan-donasi.jpg);
    animation: bounce-down 2s;
}

.tentang {
    background-image: url(/assets/about-us.jpg);
    animation: bounce-down-2 2s;
    background-position: top;
}

.kontak {
    background-image: url(/assets/contact-us.jpg);
    animation: bounce-down-3 2s;
}

.card h1 {
    font-family: "Montserrat";
    text-align: center;
    font-weight: 400;
    font-size: 1.5rem;
    color: #002944;
    background-color: #cbffff;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    pointer-events: none;
}

.text-btn {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
}

.text-btn h2 {
    color: #00FFFF;
    font-family: "Poppins";
    font-weight: 800;
    background-color: none;
    text-shadow: 1px 1px 3px black;
}

.text-btn a {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 400;
    background-color: #002944;
    color: #00FFFF;
    border-radius: 25px;
    padding: 2px 12px;
    box-shadow: 1px 1px 3px black;
    transition: 0.5s ease-in-out;
}

.text-btn a:hover{
    color: #002944;
    background-color: #00FFFF;
}

@media only screen and (max-width: 1100px) {
    .container-card {
        width: 100%;
        gap: 1rem;
    }
}

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

    .container-card {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
        width: 90%;
        max-width: none;
        min-height: 250px;
        height: 200px;
    }
}

/* Responsive tambahan untuk hp */
@media only screen and (max-width: 600px) {
    .container-card {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;
        width: 90%;
        max-width: none;
        min-height: 150px;
        height: 100px;
    }

    .text-btn {
        flex-direction: column;
        align-items: flex-start;
    }
}