* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0099ff;
  color: black;
}

.container {
  width: 80%;
  margin-inline: auto;
}

.navbar {
  padding: 40px 0;
}

.navbar-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-box .menu {
  display: flex;
  align-items: center;
  gap: 45px;
}

.navbar-box .menu li {
  list-style-type: none;
}

.navbar-box .menu li a {
  font-weight: bold;
  text-decoration: none;
  color: black;
}

.hero {
  margin-block: 100px;
  padding-inline: 20px;
}

.hero-box,
.sejarah-box .box,
.tenun-box .box,
.lagu-item {
  background: white;
  box-shadow: 0 8px 32px 0 black;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  padding: 30px;
}

.hero-box {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-box img {
  width: 50%;
  max-width: 600px;
}

.hero-box h1 {
  text-align: left;
  font-size: 60px;
  line-height: 1.3;
  font-weight: bold;
}

.sejarah {
  padding-block: 100px;
}

.sejarah .container > h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.sejarah-box {
  display: grid;
  gap: 40px;
}

.sejarah-box .box {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}

.sejarah-box .box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.sejarah-box .box p {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 30px;
}

.sejarah-box .box a {
  background-color: #0099ff;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.sejarah-box .box a:hover {
  background-color: #006ab1;
}

.tenun {
  padding-block: 100px;
}

.tenun .container > h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.tenun-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tenun-box .box {
  display: flex;
  flex-direction: column;
}

.tenun-box .box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.tenun-box .box .box-body {
  padding-top: 25px;
  flex-grow: 1;
}

.tenun-box .box .box-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.tenun-box .box .box-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.lagu-daerah {
  padding-block: 100px;
}

.lagu-daerah .container > h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}

.lagu-list {
  display: grid;
  gap: 20px;
}

.lagu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lagu-item h3 {
  font-size: 20px;
}

.youtube-btn {
  display: inline-block;
  background-color: #ff0000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.youtube-btn:hover {
  background-color: #cc0000;
}

@media (max-width: 992px) {
  .container {
    width: 90%;
  }
  .hero-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-box h1 {
    text-align: center;
  }
  .hero-box img {
    width: 100%;
  }
  .sejarah-box .box {
    grid-template-columns: 1fr;
  }
  .tenun-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-box .menu {
    gap: 25px;
  }
  .hero-box h1 {
    font-size: 40px;
  }
  .sejarah .container > h1 {
    font-size: 32px;
  }
  .sejarah-box .box img {
    height: 250px;
    object-fit: cover;
  }
  .sejarah-box .box p {
    text-align: left;
  }
  .tenun-box {
    grid-template-columns: 1fr;
  }
  .lagu-item {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 475px) {
  .hero-box h1 {
    font-size: 32px;
  }
}

.footer {
  padding-block: 40px;
  background-color: white;
  color: black;
}

.footer p {
  text-align: center;
  font-size: 14px;
}
