/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #64b67254; /* Menambahkan background hijau tua */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .header {
    background-color: #013009cf; /* Warna hijau tua */
    padding: 10px 0; /* Padding atas dan bawah */
  }
  
  .header .logo {
    margin-left: 20px; /* Add margin to adjust spacing */
  }
  
  .nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin-right: 20px; /* Add margin to adjust spacing */
  }
  
  .nav-link {
    color: #fff;
    text-decoration: none;
  }
  
  .bar {
    height: 4px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
  }
  
  /* Home Section */
  .home {
    background: url('../image/home.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .head_container .box {
    background: rgba(255, 255, 255, 0);
    padding: 20px;
    text-align: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 50px;
      left: 0;
      background-color: #333;
    }
  
    .nav-menu.active {
      display: flex;
    }
    
    .header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .head_container {
      flex-direction: column;
      text-align: center;
    }
  
    .head_container .box, .head_container .image {
      width: 100%;
    }
  }
  
  /*--------------header--------*/
  /*--------------home--------*/
  .home .image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  
  .home .text {
    max-width: 50%;
    color: rgb(255, 255, 255);
    margin: 20% 0 0 10%;
  }
  
  .home h1 {
    font-size: 80px;
    font-weight: 400;
  }
  
  .home p {
    font-weight: 400;
    line-height: 25px;
    font-family: sans-serif;
    font-size: 17px;
    margin: 50px 0 0 50px;
  }
  
  button {
    padding: 20px 40px;
    background: none;
    outline: none;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    margin-top: 20px;
  }
  
  .home button {
    margin-left: 50px;
  }
  
  .home .image_item {
    position: absolute;
    top: 20%;
    right: 20%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  
  .home .image_item img {
    width: 140px;
    height: 94px;
    margin: 10px;
    transition: 0.5s;
  }
  
  .home .image_item img.active {
    border: 2px solid white;
  }
  
  .home .box .text {
    position: relative;
  }
  
  .home .box .text::after {
    position: absolute;
    content: '';
    font-size: 500px;
    top: -120%;
    font-weight: bold;
    opacity: 0.1;
  }
  
  /*--------------home--------*/
  /*--------------book--------*/
  .flex {
    display: flex;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
  }
  
  .book {
    margin-top: 5%;
    width: 100%;
    height: 20vh;
    color: white;
  }
  
  .book .input {
    background: #242e5a;
    padding: 20px 20px 40px 20px;
  }
  
  .book .search {
    background: #3f9cc1;
    padding: 20px;
  }
  
  input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    outline: none;
    background: #263760;
    margin-top: 20px;
    color: white;
  }
  
  ::placeholder {
    color: white;
  }
  
  .book .search {
    width: 20%;
  }
  
  .book .search input {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 20px;
    margin-top: 40px;
  }
  
  /*--------------book--------*/
  /*--------------about--------*/
  .top {
    margin-top: 10%;
  }
  
  .mtop {
    margin-top: 5%;
  }
  
  .left, .right {
    width: 50%;
  }
  
  .about {
    margin-bottom: 50px;
  }
  
  .about .img {
    position: relative;
  }
  
  .about .image1 {
    width: 310px;
    height: 450px;
  }
  
  .about .image2 {
    width: 325px;
    height: 220px;
    position: absolute;
    bottom: 5px;
    z-index: 2;
    right: 30%;
  }
  
  .heading {
    position: relative;
  }
  
  .heading::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100px;
    height: 4px;
    background: #C1B086;
  }
  
  .heading h5 {
    font-weight: 400;
    letter-spacing: 2px;
    padding-top: 20px;
    color: #5f5f5f;
  }
  
  .heading h2 {
    font-size: 30px;
    font-weight: 400;
    margin: 20px 0 40px 0;
    color: #222222;
  }
  
  .heading p {
    margin-bottom: 20px;
    line-height: 25px;
    color: #5f5f5f;
    margin: 0 0 20px 50px;
  }
  
  .heading .btn1 {
    margin: 50px 0 20px 50px;
  }
  
  .btn1 {
    background: #C1B086;
    color: white;
  }
  
  /*--------------about--------*/
  /*--------------wrapper--------*/
  .wrapper {
    padding: 50px 0;
    background: #f9f9f9; /* Light background for the wrapper */
  }
  
  .wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .wrapper .text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .wrapper h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .wrapper p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
  }
  
  .wrapper .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .wrapper .box {
    flex: 0 1 calc(33.333% - 20px); /* Three boxes per row with some space between */
    background: #e0f7fa; /* Light greenish background */
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .wrapper .box i {
    font-size: 24px;
    color: #009688; /* Darker green for icons */
    margin-bottom: 10px;
  }
  
  .wrapper .box span {
    font-size: 16px;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .wrapper .box {
      flex: 0 1 calc(50% - 10px); /* Two boxes per row on smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .wrapper .box {
      flex: 0 1 100%; /* One box per row on extra small screens */
    }
  }
  
  /*--------------wrapper--------*/
  /*--------------room--------*/
  .flex1 {
    display: flex;
    justify-content: space-between;
  }
  
  .room .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .room .box {
    box-shadow: 0 13px 43px 0 rgb(37 46 89 / 10%);
    text-decoration: none;
    color: inherit;
    transition: transform 
  }