html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #fff0f5;
  color: #333;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADER WRAPPER */
.hero-header {
  height: 100vh;
  background: linear-gradient(
      rgba(255, 192, 203, 0.3),
      rgba(255, 182, 193, 0.3)
    ),
    url("img/landingpage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
}

.nav-menu a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #ffebf0;
}

.toggle-btn {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* NAVBAR RESPONSIVE */
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu a {
    color: #111;
    margin: 10px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .navbar {
    flex-wrap: wrap;
  }
}

/* HERO */
.hero {
  padding: 140px 0 100px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* ANIMASI */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.muncul {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON */
.btn-book {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #e075a0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 5px 10px rgba(224, 117, 160, 0.2);
}

.btn-book:hover {
  background-color: #d76094;
  box-shadow: 0 8px 20px rgba(224, 117, 160, 0.4);
}

.btn-book:active {
  transform: scale(0.96);
}

.btn-wa,
.btn-katalog {
  background-color: #ff69b4;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* SECTIONS LAYOUT */
.about,
.reviews,
.menu,
.lokasi,
.konsultasi,
.galeri,
footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.btn-patner {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #e075a0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 5px 10px rgba(224, 117, 160, 0.2);
}

.btn-patner:hover {
  background-color: #d76094;
  box-shadow: 0 8px 20px rgba(224, 117, 160, 0.4);
}

.btn-patner:active {
  transform: scale(0.96);
}

.btn-wa,
.btn-katalog {
  background-color: #ff69b4;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* about */
.about {
  background-color: #fff0f5;
  padding: 60px 20px;
}

.about-wrapper {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h2 {
  font-size: 28px;
  color: #e075a0;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.about-emoji {
  font-size: 64px;
  opacity: 0.8;
}

/* REVIEW */
.reviews {
  background-color: #ffeef5;
  text-align: center;
  padding: 60px 20px;
}

.review-container {
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.review-track {
  display: flex;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
  gap: 20px;
}

.review-card {
  min-width: 300px;
  max-width: 320px;
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.03);
}

.review-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.review-card span {
  display: block;
  font-weight: bold;
  color: #e075a0;
  font-size: 14px;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.services {
  padding: 60px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #d63384;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  color: #e83e8c;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

.catalog-link {
  margin-top: 40px;
  text-align: center;
}

.catalog-link a {
  display: inline-block;
  background: #ff69b4;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.catalog-link a:hover {
  background: #ff4d9a;
}

/* MAP + KONSULTASI */
.map-placeholder {
  background: #ffd1dc;
  padding: 40px;
  border-radius: 16px;
  margin-top: 20px;
}

.lokasi {
  padding: 60px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.maps-container {
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

/* konsul+patner */
.konsultasi {
  padding: 40px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.konsultasi-card {
  background-color: #fffafc;
  padding: 20px;
  border-radius: 16px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.konsultasi-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #d63384;
}

.konsultasi-card p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #5a5a5a;
}

.btn-wa {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f78da7;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-wa:hover {
  background-color: #fcd6df;
  color: #d63384;
}

/* GALERI */
.galeri {
  padding: 60px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.galeri h2 {
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 30px;
}

.galeri-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 20px;
}

.galeri-grid img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.galeri-grid img:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #ffc0cb;
  text-align: center;
  color: #fff;
}

.sosmed-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
}

.footer {
  background-color: #ffd5e5;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  color: #555;
}

.footer .sosmed {
  margin-top: 10px;
}

.footer .sosmed a {
  margin: 0 10px;
  text-decoration: none;
  color: #e075a0;
  font-weight: bold;
}

.footer .sosmed a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .nav-menu {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 24px;
  }
}
.lang-en {
  display: none;
}

.language-switch {
  position: fixed;
  top: 15px;
  right: 20px;
  font-size: 14px;
  cursor: pointer;
  z-index: 1000;
}

