/* =============== RESET =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fafafa;
  color: #333;
}

/* =============== NAVBAR =============== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #ff4861;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5em;
  font-weight: 600;
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
  text-decoration: underline;
}

/* =============== JUMBOTRON =============== */
.jumbotron {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  flex-wrap: wrap;
  background: linear-gradient(to right, #ffd1dc, #ff9bb1);
}

.jumbotron .text h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.jumbotron img {
  width: 350px;
  transition: 0.3s;
}

.jumbotron img:hover {
  transform: scale(1.1);
}

/* =============== CARD DESTINASI =============== */
.content {
  padding: 60px 50px;
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  flex: 1;
}

.detail-btn {
  padding: 12px;
  border: none;
  background: #ff4861;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
}

.detail-btn:hover {
  background: #cc3a50;
}

/* =============== MAP =============== */
.map-section iframe {
  border-radius: 15px;
  margin-top: 30px;
}

/* =============== FOOTER =============== */
footer {
  text-align: center;
  padding: 25px;
  background: #333;
  color: white;
  margin-top: 60px;
}

footer .socials img {
  width: 28px;
  margin: 0 10px;
  transition: 0.3s;
}

footer .socials img:hover {
  transform: scale(1.2);
}

/* =============== CONTACT PAGE =============== */
.contact-page {
  padding: 60px 50px;
  text-align: center;
}

.contact-img {
  width: 250px;
  margin: 20px 0;
}

/* Floating Form */
.floating-form {
  max-width: 450px;
  margin: auto;
  text-align: left;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #777;
  background: transparent;
  font-size: 16px;
  outline: none;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 0;
  bottom: 8px;
  color: #777;
  transition: 0.3s;
}

.filled ~ label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
  transform: translateY(-22px);
  font-size: 14px;
  color: #ff4861;
}

#submitBtn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ff4861;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#submitBtn:hover {
  background: #cc3a50;
}

/* =============== MODAL =============== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

/* =============== ABOUT PAGE =============== */
.about-page {
  text-align: center;
  padding: 60px 50px;
}

.about-photo {
  width: 230px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.about-page ul {
  list-style: none;
  margin-top: 10px;
  line-height: 1.8;
}
