body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("img/bg.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 40%;
    backdrop-filter: blur(2px);


}



.box-text {
    background-color: #f9f9f9;
    padding: 20px;
    border: 5px solid rgb(56, 84, 145);
    border-radius: 58px 58px 12px 12px;
    text-align: justify;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    line-height: 1.6;

}

#garis {
    border: none;
    height: 4px;
    background-color: rgb(56, 84, 145);
    width: 1100px;
    border-radius: 50px;
    margin-top: -10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

#layer1 {
    align-content: center;
    color: white;
    background-color: rgb(56, 84, 145);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px 50px 0px 0px;
    width: 602px;
    height: 40px;
    position: flex;
    margin: auto;
    margin-bottom: -20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}


#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 5px 20px;
    top: 0;
    position: sticky;
    background-color: rgba(56, 84, 145, 0.5);
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    font-size: 14px;
}

.logo-kiri img {
    height: 40px;
    border-radius: 10px;
    margin-right: 12px;
}

.logo-kanan a {
    color: white;
    font-size: 40px;
    margin-left: 12px;
    transition: color 0.3s, transform 0.2s;
}

.logo-kanan a:hover {
    color: #e0bf02;
    transform: scale(1.2);
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;

}


.profil {
    width: 60%;
    text-align: center;
    margin-bottom: 40px;
}


.profil img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 40px;
    margin-top: 45px;
    border: solid 4px #ffffff;
}


.galeri {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.galeri h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.kartu-aktivitas {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    flex-basis: 25%;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    width: 30%;

}

.kartu-aktivitas img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.kartu-aktivitas:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px var(--shadow);
}