
body{
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

/*Navbar*/
nav{
    background-color:#89a194;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

nav ul{
   gap: 3rem;
   display: flex;
   justify-content: center;
}
li{
    list-style: none;
    text-decoration: none;
}
nav a {
    padding: 0.5rem;
}

nav a:hover{
    background-color: black;
    color: white;
}
/*hero*/
#hero{
    display: flex;
    align-items: center;
    background-color: #dec584;
    padding: 5rem 1rem 3rem 2rem ;
    

}

.kiri{
    width: 60%;
    
}

.kanan{
    display: flex;
    justify-content: flex-end;
    width: 40%;
}

.kanan img{
    width: 300px;
     border-radius: 2rem 5rem 2rem 5rem;

     
}

.button{
    display: flex;
    gap: 2rem;

}
.button a{
    text-decoration: none;
    color: rgb(51, 146, 224);
    border: 2px solid RGB(51, 146, 224);
    padding: 0.6rem;
    margin-right: 1rem;
    border-radius: 10px;
    
}
.button a:hover{
    background-color: cornflowerblue;
    color: crimson;
}

#skills{
    text-align: center;
    background-color: #f3e6e6;
    padding: 5rem 0rem 10rem 0 ;

}

#skills h2{
    font-size: 35px;
    
}

.skill img{
    width: 30px;

}


.skill{
    border: 2px solid rgb(255, 255, 255);
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px;
}
 .skills-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
 }

 /*testimoni*/
 #testimoni h2{
    font-size: 35px;
    margin-bottom: 30px;
    
}

.testimoni-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    
}


.profil-card img{
    width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    
}

.profil-card{
    background-color: ghostwhite;
    border: 1rem;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimoni-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.profile-card img {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 1rem;
}

.profile-card {
  text-align: center;
  background-color: cornsilk;
  box-shadow: 0 4px 12px rgba (0, 0, 0, 0.1);
  padding: 2rem;
  width: 300px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-info h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.2rem;
}

.profile-info .title {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.profile-info .message {
  font-size: 0.9rem;
  color: #444;
  font-style: italic;
}

.profile-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/*responsive*/
@media screen and (max-width: 768px) {
    .nav{
        flex-direction: column;
    }

    .menu a{
        font-size: small;
        margin: 4rem;
    }

        #hero{
            flex-direction: column-reverse;
            padding: 1rem;

        }

        .kiri{
            width: 100%;
        }

        .kanan{
            width: 100%;
            justify-content: center;
        }

        .menu{
            display: flex;
            flex-direction: column;
        }

        .button{
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 2rem;
        }
    
    }
    
    /*maps*/
    iframe{
        width: 100%;
        height: 300px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10rem 9 rem 10rem 1rem;
        background-color: brown;
        box-shadow: #89a194;
       
    }

    /*fotograph*/
    .fotograph-container{
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .fotograph-container img {
        width: 300px;
        height: auto;
        border-radius: 10px;
    }

    
    
    







