/* === NAVBAR BASIC === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #f9f9fb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  font-family: "Cinzel Decorative", "Playfair Display SC", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #a55b5b; /* warna lembut feminine */
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.header .brand img {
  height: 50px;
}

#navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}

#navbar a, 
.dropbtn {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* ✨ Hover Line Animation */
#navbar a::after, 
.dropbtn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #d8a7b1; /* pastel pink */
  transition: width 0.3s ease;
}

#navbar a:hover::after,
.dropbtn:hover::after {
  width: 100%;
}

/* Active page underline */
#navbar a.active::after {
  width: 100%;
  background-color: #c47d93;
}

/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  top: 35px;
  z-index: 99;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f5e6ea;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #navbar {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #fff;
    display: none;
    padding: 20px 0;
  }

  #navbar.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown .dropbtn:focus + .dropdown-content {
    display: block;
  }
}


/* RESPONSIVE MENU */
.menu-icon {
  display: none;
  font-size: 25px;
  cursor: pointer;
  color: #8b3a62;
}

#menu-toggle {
  display: none;
}

@media (max-width: 850px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fce4ec;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    max-height: 400px;
    padding-bottom: 20px;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #fce4ec;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../image/wallpaper1.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.hero-text p {
  margin-top: 10px;
  color: #ffe9c5;
  font-size: 1.2rem;
}

.book-btn {
  background: #c59a91;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #4b5d75;
  transform: scale(1.05);
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
}

/* ===== SERVICES ===== */
.services h2 {
  font-size: 2rem;
  color: #4b5d75;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fdfdfd;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.service-item img {
  width: 200px;  /* besarkan sikit */
  transition: all 0.3s ease;
}

.service-item:hover {
  background-color: #fde6eb; /* pastel pink hover */
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service-item h3 {
  color: #c59a91;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.center-btn {
  margin-top: 35px;
}

.btn-3d {
  background: #4b5d75;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-3d:hover {
  background: #c59a91;
  transform: scale(1.05);
  box-shadow: 0 0 20px 5px rgba(197, 154, 145, 0.6);
}

/* ===== ABOUT ===== */
.about-section {
  background-color: #f2e4dc; /* pastel brown lembut */
  padding: 60px 5%;
  border-radius: 20px;
  margin: 60px auto;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  border-radius: 20px;
  overflow: hidden;
}

.about-text {
  flex: 1 1 45%;
  color: #3e2f2f;
}

.about-text h2 {
  font-size: 2rem;
  color: #5a3c35;
  margin-bottom: 15px;
}

.about-text span {
  color: #c47d93;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  width: 100%;
  height: 300%;
  border-radius: 20px;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* supaya gambar tak herot */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}


/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-image, .about-text {
    flex: 1 1 100%;
  }

  .about-text h2 {
    text-align: center;
  }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #fff5f8;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-left img {
  width: 100%;
  max-width: 400px; 
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-right h2 {
  font-size: 2rem;
  color: #b76e79;
  margin-bottom: 10px;
}

.contact-right h3 {
  margin-top: 20px;
  color: #333;
  font-size: 1.1rem;
}

.contact-right p, 
.contact-right li {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.social-links a {
  display: flex;           /* guna flex biasa */
  align-items: center;
  justify-content: center;
  width: 60px;             /* width = height */
  height: 60px;            /* turunkan sikit dari 65px supaya lebih bulat */
  border-radius: 50%;      /* bulat sempurna */
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  line-height: 0;          /* buang garisan bawah */
  border: none;
  text-decoration: none;
}

.social-links a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Warna platform */
.social-links a:nth-child(1) {
  background-color: #1877F2; /* FB */
}
.social-links a:nth-child(2) {
  background: linear-gradient(45deg, #FCAF45, #E4405F, #833AB4); /* IG */
}
.social-links a:nth-child(3) {
  background-color: #25D366; /* WhatsApp */
}

/* ===== FOOTER ===== */
.footer {
  background: #4b5d75;
  color: white;
  text-align: center;
  padding: 25px;
  border-top: 3px solid #c59a91;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left img {
    max-width: 100%;
  }
}

