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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #F2FDFF;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 10;
    padding: 5px;
}

.logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    object-fit: contain;
    background-color: #cbffff;
    border-radius: 50%;
    padding: 5px;
}

.logo h2,
.logo span {
    font-family: "Poppins";
    font-size: 1.5rem;
    color: white;
}

.hero-section {
    align-items: center;
    justify-content: center;
    background-image: url(/assets/social-donation.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
}

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

.hero-section .row h1 {
    color: #00FFFF;
    font-size: 3.5rem;
    font-family: "Montserrat";
    font-weight: 800;
    text-align: center;
    animation: slideInRight 1.2s;
}

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

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

.hero-section .row .route i {
    color: #00FFFF;
    font-size: 14px;
    font-weight: 400;
}

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

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

.section-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 7rem 5%;
    width: 100%;
}

.section-step h1 {
    font-family: "Montserrat";
    font-size: 2.5rem;
    font-weight: 800;
    color: #002944;
    text-align: center;
}

.step-container {
    margin: 5rem 0;
    align-items: stretch;
    gap: 2rem;
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    overflow: hidden;
}

.step-card {
    flex: 1 1 30%;
    padding: 1.5rem;
    border-radius: 15px;
    transition:all 0.5s ease-in-out;
    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;
}

.step-card.active {
    flex: 1 1 100%;
    box-shadow: 0 0 15px rgba(33, 98, 141, 0.85);
}

.one {
    background-image: url(/assets/pilihan\ 1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: bounceInRight 2s;
}

.two {
    background-image: url(/assets/pilihan\ 2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: bounceInRight2 2s;
}

.three {
    background-image: url(/assets/pilihan\ 3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: bounceInRight3 2s;
}

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

.step-card h2 {
    font-family: "Montserrat";
    font-size: 1.5rem;
    font-weight: 700;
    pointer-events: none;
    color: #00FFFF;
    text-shadow: 1px 1px 2px black;
}

.step-card p {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    pointer-events: none;
    color: #cbffff;
    text-align: left;
    opacity: 0;
    transition: 0.5s ease-in-out;
    padding-bottom: 1rem;
    text-shadow: 1px 1px 2px #002944;
}

.step-card.active p {
    opacity: 1;
}

.video-donasi {
    padding: 1rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.video-donasi .text-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.text-video h1 {
    font-family: "Montserrat";
    font-size: 2.5rem;
    font-weight: 800;
    color: #002944;
    text-align: center;
}

.text-video p {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 400;
    color: #002944;
}

.video {
    width: 80%;
}

.video video {
    width: 100%;
    box-shadow: 0px 0px 10px rgba(33, 98, 141, 0.85);
    background-color: #002944;
    padding: 2rem;
    border-radius: 25px;
}

.footer {
    background: linear-gradient(to bottom, #F2FDFF, #3362cc);
    padding: 5rem 5rem 2rem 5rem;
    font-family: "Poppins";
    margin-top: 7rem;
    overflow: hidden;
}

.footer-column {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    text-align: justify;
    color: #0E1836;
    justify-content: space-around;
    gap: 50px;
}

.footer-column-one {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0E1836;
}

.footer p {
    font-size: 1rem;
    font-weight: 500;
    color: #0E1836;
}

.footer-column-one p:nth-child(3) {
    font-size: 1.5rem;
}

.footer-column-kritik {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-kritik .input-kritik {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    background-color: #e4e4e4;
    border: 1px solid #0E1836;
    border-radius: 0 5px 5px 0;
}

.footer-column-kritik .input-kritik input {
    padding: 8px;
    outline: none;
    border: none;
    background-color: white;
    width: 100%;
    border-right: 1px solid #0E1836;
}

.footer-column-kritik .input-kritik input::placeholder {
    color: rgba(14, 24, 54, 0.5);
    font-family: "Montserrat";
    font-size: 1rem;
    align-items: center;
}

.footer-column-kritik .input-kritik button {
    white-space: nowrap;
    font-size: 1rem;
    font-family: "Poppins";
    font-weight: 500;
    outline: none;
    border: none;
    background-color: #e4e4e4;
    padding: 0 10px;
    cursor: pointer;
    color: #0E1836;
    transition: 0.3s;
}

.footer-column-kritik .input-kritik button:hover {
    color: #28608e;
    transition: 0.3s ease-in-out;
}

.footer-column-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-contact .kontak-link {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.footer-column-contact .kontak-link a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #0E1836;
    gap: 5px;
    font-size: 1rem;
    font-weight: 400;
    transition: 0.3s;
}

.footer-column-contact .kontak-link a:hover {
    color: #2f5abf;
    transition: 0.3s ease-in-out;
}

.footer-column-contact .kontak-link a i {
    font-size: 1.25rem;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10rem;
    justify-content: space-between;
}

.footer-bottom .medsos-icon {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-bottom .medsos-icon a {
    align-items: center;
    justify-content: center;
}

.footer-bottom .medsos-icon a i {
    padding: 8px;
    color: #dbdbdb;
    border: 1px solid #0E1836;
    border-radius: 50px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-bottom .medsos-icon a i:hover {
    background-color: #2e3958;
    transition: 0.3s ease-in-out;
}

.footer-bottom .footer-copyright {
    display: flex;
    flex-direction: column;
}

.footer-bottom .footer-copyright p {
    font-size: 1rem;
    font-weight: 400;
}

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


@media (max-width: 768px) {
    .step-container {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .step-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 2rem;
        height: auto;
    }

    .step-card.active {
        box-shadow: none;
        flex: 1 1 100%;
    }

    .step-card p{
        opacity: 1;
    }

    .video {
        width: 100%;
    }

    .footer {
        padding: 3rem 2rem 2rem 2rem;
    }

    .footer-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column-one, 
    .footer-column-kritik,
    .footer-column-contact {
        align-items: center;
    }

    .footer-column-kritik .input-kritik {
        flex-direction: column;
        align-items: stretch;
        border-radius: 5px;
    }

    .footer-column-kritik .input-kritik input {
        border-right: none;
        border-bottom: 1px solid #0E1836;
        width: 100%;
    }

    .footer-column-kritik .input-kritik button {
        width: 100%;
        padding: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        margin-top: 5rem;
        text-align: center;
    }

    .footer-bottom .medsos-icon {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .step-container {
        gap: 1rem;
    }

    .step-card {
        padding: 1rem;
        min-height: 350px;
    }
}