/* Reset dan dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #f08080;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar h1 {
  color: #fff;
  font-size: 20px;
}

.menu {
  display: flex;
  gap: 16px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Baris 3 logo atas */
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px;
  flex-wrap: wrap;
}

.logo-row img {
  height: 60px;
  max-width: 100px;
}

/* Ilustrasi tengah */
.middle-illustration {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.middle-illustration img {
  width: 90%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo utama Sajojo */
.main-logo {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.main-logo img {
  width: 90%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsif */
@media (max-width: 600px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo-row img {
    height: 50px;
    max-width: 80px;
  }
}
