/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  line-height: 1.6;
}
header {
  background: #cc0000;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}
.hero {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  display: block;
}
.content {
  padding: 20px;
  text-align: center;
}
.paket {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.paket img {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}
.paket img:hover {
  transform: scale(1.03);
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  z-index: 200;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp:hover {
  background: #20c35b;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-content img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.modal-wa {
  margin-top: 20px;
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.modal-wa i {
  margin-right: 6px;
}
.modal-wa:hover {
  background: #20c35b;
}
@media(max-width: 768px) {
  nav a {
    margin-left: 10px;
    font-size: 14px;
  }
}
