* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: white;
  background-color: #000;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('coverpompa.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(to bottom right, rgba(0, 128, 128, 0.6), rgba(0, 64, 64, 0.7));
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  position: relative;
  z-index: 2;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  border-radius: 25px;
  overflow: hidden;
  background: white;
  padding: 5px 10px;
}

.search-box input {
  border: none;
  outline: none;
  padding: 5px;
  color: black;
}

.search-box button {
  background: olive;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
}

.login-btn {
  background: #111;
  padding: 8px 15px;
  border: none;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
}

.hero-content {
  z-index: 2;
  padding: 0 50px 100px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #a9ffbd;
}

.hero-content p {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.book-btn {
  padding: 12px 25px;
  background: olive;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.carousel {
  position: relative;
  padding: 80px 0;
  background:  #00434E;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  color: black;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.card p {
  font-size: 0.9rem;
  margin: 10px 0 15px;
  color: #333;
}

.read-btn {
  background: #333;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.card.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: olive;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.nav-btn.left {
  left: 20px;
}

.nav-btn.right {
  right: 20px;
}
.btn {
  background-color: olive; /* Warna hijau khas WhatsApp */
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: olive;
  transform: scale(1.05);
}

.btn:active {
  background-color: olive;
  transform: scale(0.98);
}
