*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}

body{
    color: #fff;
    background-color: #fff;
}


section{
    padding: 70px 10% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url(../assets/img/cave.jpg);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-text h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
}

.home-text h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#f1683a;
}

.home-text p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 30px;
    color: #ffffffd3;
    margin-bottom: 35px;

}

.btn{
    display: inline-block;
    padding: 13px 30px;
    background-color: #ffffff6c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
}

.btn:hover{
    transform: translateX(5px);
    border: 2px solid;
    background: transparent;
    color: #f1683a;
}

/* SELAYANG PANDANG */
.Selayang {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
    color:#f1683a;
    width: 1500px;
    height: 600;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
  }
 
  .selayang-text h5 {
    font-size: 30px;
    font-weight: 600;
    color: #0B2447;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    margin-left: 2rem;
  }

  .selayang-text h2 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    margin-left: 2rem;
  }

  .selayang-text p {
    font-size: var(--p-font-);
    font-weight: 400;
    line-height: 30px;
    color: #0B2447;
    margin-bottom: 35px;
    margin-left: 2rem;
    text-align: justify;
  }



/* VIDEO SELAYANG PANDANG */
.main-container {
  width: 600px;
  margin: 40px auto;
  font-family: "Roboto", sans-serif;
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 3px solid #0B2447;
}

.video-container {
  position: relative;
}

.video-container video {
  width: 100%;
}

.video-container .hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 24px), -50%);
  background: #0B2447;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 4px 4px 50px -4px rgba(0, 0, 0, 0.8);
  opacity: 0;
  letter-spacing: 0.8px;
  transition: all 400ms ease;
}

.video-container .hover-text.active {
  opacity: 1;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}

.btn-video-desc {
  padding: 16px;
  line-height: 1.7;
  background: #0B2447;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}

.btn-video-desc a{
  color: #eee;
}

/* END SELAYANG PANDANG */

