header{
    padding-top: 60px;
}

.background-destination {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6; 
}

nav {
    background-color: #2e5363; 
}

body.halaman-destination main {
    padding-top: 80px; 
    position: relative;
    z-index: 1;
}

header .intro h3 {
    font-size: 48px;
    line-height: 1.2;
    word-wrap: break-word;
}

#destination > h3{
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.destination{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.destination .area{
    flex: 0 1 47%;
    box-shadow: 0px -10px 30px #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    margin-bottom: 20px;
}

.destination div.area div{
    width: 50%;
}

.destination .area .gambar{
    border-radius: 5px 0px 0px 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
}

.destination .area .text article{
    padding: 40px;
}

.destination .area .text article h4{
    margin: 0px;
}

.destination .area .text article a{
    color: #333;
    text-decoration: none;
    transition: color 0.5s ease;
}

.destination .area .text article a:hover{
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .destination .area {
      flex: 0 1 100%; 
      flex-direction: column; 
    }
  
    .destination div.area div {
      width: 100%;
    }
  
    .destination .area .gambar {
      border-radius: 5px 5px 0px 0px; 
    }
  }
