/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.menu-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  }
/* Left side background */
.menu-left {
  flex: 1;
  background-image: url(' ../images/Dochula.jpg'); /* your uploaded image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.9s ease-in-out;

}



/* Right side menu */
.menu-right {
  flex: 1;
  height: 100vh; /* ensures background is visible */
  background-image: url('../images/bg.jpg'); /* your uploaded pattern */
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
 
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 40px;
}

.menu-right::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

/* Header */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

/* MAIN MENUS */
.main-menus {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: rgba(255,255,255,0.63);
  margin-top: 90px !important;
}

/* CLOSE X */
.close-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
}

.close-link:hover {
  color: #ffcc00;
}

/* Menu list */
.menu-list {
  list-style: none;
}

.menu-list li {
  margin-bottom: 20px;
}

.menu-list li a {

  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 50px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  padding: 20px !important;
}

.menu-list li a:hover {
  color: #ffcc00; /* Hover color */
}

/* Responsive */
@media (max-width: 992px) {
  .menu-container {
    flex-direction: column;
  }

  .menu-left, .menu-right {
    flex: none;
    width: 100%;
    height: 50vh;
  }

  .menu-right {
    padding: 30px 20px;
  }

  .menu-list li a {
    font-size: 32px;
    line-height: 60px;
  }
}

@media (max-width: 576px) {
  .menu-list li a {
    font-size: 24px;
    line-height: 50px;
  }
}
