*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

header {
    background-color: #1A2238;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo{
    margin-right: auto;
    display: flex;
    gap: 6px;
}

.logo-img {
    width: 35px;
    height: 35px;
    margin-left: 10px;
}

.logo-title {
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.logo:hover {
    color: #FF6A3D;
    transform: rotate(5deg);
}

.btn-cta {
    margin-right: 10px;
    border: none;
    font-size: 20px;
    padding: 6px 12px;
    background-color: #FF6A3D;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}


nav ul{
    display: flex;
    padding: 20px;
}


li {
    list-style-type: none;
    padding: 10px;
}

li a {
    transition: all .5s ease-in-out;
    display: inline-block;
}

li :hover {
    color: #FF6A3D;
    transform: rotate(5deg);
}

a {
    color: white;
    text-decoration: none;
}

.container {
    max-width:  1200px;
    margin: 0 auto;
    padding: 70px 0;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.description {
    font-size: 20px;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
}

.img-foto {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 10px;
}

.parallax {
    background-image: url('Assets/MyPict/snapedit_1702476992379.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.tentang {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1A2238;
    color: white;
    padding: 40px;
}

.mt-10 {
    margin-top: 20px;
}

.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-item {
    text-align: center;
    width: 25%;
    min-height: 200px;
    max-height: 300px;
    background-color: white;
    color: black;
    padding: 24px;
    box-shadow: 5px 5px 5px 1px rgba(0,0,0,5);
}

.card-title {
    font-size: 18px;
    font-weight: bolder;
}

.card-description {
    font-size: 14px;
    margin-top: 4px;
}

.icon {
    width: 75px;
    height: 75px;
    margin: 10px;
    padding: 4px;
}

footer {
    text-align: center;
    background-color: #1A2238;
    color: white;
    padding: 20px;
}
@media screen and (max-width:500px) {
    .card {
        flex-direction: column;
        gap: 0  ;
    }
    .card-item {
        width: 50%;
        opacity: 0.8;
    }

    .intro {
        margin-top: 20px;
    }

    .tentang {
        padding: 30px;
        width: 100%;
    }

    .container {
        width: 100%;
        padding: 0;
    }
    
    .img-foto {
        padding: 0;
    }

    nav {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #1A2238;
        z-index: 9;
    }

    footer {
        margin-bottom: 70px;
        margin-top: 70px;   
    }
}