/* GLOBAL */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;


}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #c8dec7;
  color: #333;
  padding-top: 100px; 
  font-size: 12px;
}

main {
  flex: 1;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);                /* Sedikit lebih lembut */
  -webkit-backdrop-filter: blur(8px);        /* Untuk Safari */
  background-color: rgba(255, 255, 255, 0.07);/* Transparan lembut */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);     /* Shadow lebih halus */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}


.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.navbar-left .logo {
  height: 80px;
}

.navbar-center {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 20px;
}

.navbar-center a,
.navbar-right a {
  text-decoration: none;
  color: black ;
  font-weight: 600;
}

.contact-btn {
  background-color: #73c075;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
}


/* === Toggle Button (Hamburger) === */
.navbar-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: black;
  display: none; /* default disembunyikan */
  z-index: 2000;
 
}

/* === Fullscreen Overlay Menu === */
.navbar-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(220, 242, 220, 0.95); /* warna hijau muda semi transparan */
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
}

.navbar-fullscreen.show {
  transform: translateY(0%);
}

.navbar-fullscreen a {
  text-decoration: none;
  font-size: 22px;
  color: #333;
  margin: 15px 0;
  font-weight: 600;
}

.navbar-fullscreen .contact-btn {
  background-color: #73c075;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
}

/* === Responsive: Tablet & HP === */
@media (max-width: 992px) {
  .navbar-container {
    padding: 10px 20px;
  }

  .navbar-left .logo {
    height: 60px;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-center,
  .navbar-right {
    display: none !important;
  }
}

/* Desktop: nonaktifkan overlay */
@media (min-width: 993px) {
  .navbar-fullscreen {
    display: none;
  }
}




/* SECTION */

.section {
  padding: 20px 10px;
  margin-bottom: 20px;
}


h1 {
  font-size: 32px;
  font-weight: bold;
}
.project-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}
.gallery-filter-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.section h1,
.section h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px; /* Supaya heading tidak terlalu jauh ke bawah */
}
.project-section {
  background-color: #e7f3e7; /* Hijau lembut seperti bagian atas */
  padding: 40px 20px;
  text-align: center;
}
/* PROJECT CARDS */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding: 0 20px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.location-tag {
  font-size: 14px;
  background-color: #edf7ee;
  color: #198754;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.unit-count {
  color: #3D372F;
  font-size: 13px;
  padding: 4px 10px;
}

.project-title {
  font-size: 18px;
  font-weight: bold;
  color: #2F2F2F;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar-center {
    flex-direction: column;
     display: flex;
  }
}

@media (max-width: 600px) {
  .gallery-item {
    width: 150px;
    height: 220px;
  }

  .project-card img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  .project-card {
    border-radius: 16px;
  }

  .project-info {
    padding: 16px;
  }

  .project-title {
    font-size: 16px;
  }

  .unit-count {
    font-size: 12px;
  }

  .location-tag {
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media (max-width: 600px) {
  .project-card img {
    height: 140px;
  }
}


/* === PROJECT SECTION === */
.projects-section {
  background-color: #e3efe2;
  padding: 100px 20px 60px;
}

/* === DETAIL SECTION === */
.project-detail {
  background-color: #e3efe2;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project-detail h2 {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
}

.project-detail h2 span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 2px;
  margin-top: 4px;
}

.detail-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 30px;
  flex-wrap: wrap; /* agar otomatis turun saat layar kecil */
}

.detail-image {
  flex: 1;
  max-width: 350px;
  object-fit: cover;
  border-radius: 40px;

  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.detail-container p {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

/* === RESPONSIVE MEDIA QUERY === */
@media (max-width: 768px) {
  .project-detail {
    padding: 40px 15px;
    margin: 30px 10px;
  }

  .project-detail h2 {
    font-size: 22px;
  }

  .project-detail h2 span {
    font-size: 12px;
  }

  .detail-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detail-image {
    width: 100%;
    max-width: 100%;
  }

  .detail-container p {
    font-size: 13px;
    margin-top: 20px;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .project-detail {
    padding: 30px 10px;
  }

  .project-detail h2 {
    font-size: 20px;
  }

  .project-detail h2 span {
    font-size: 11px;
  }

  .detail-container p {
    font-size: 12.5px;
  }
}


/* === PROJECT 1 === */
.project1 {
  background-color: #e3efe2;
  padding: 20px 20px;
  margin: 10px auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project1 {
    padding: 16px 15px;
    margin: 8px 12px;
  }
}

@media (max-width: 480px) {
  .project1 {
    padding: 14px 10px;
    margin: 6px 10px;
  }
}

/* GALLERY */
.gallery-filter-group .filter-btn {
  padding: 10px 20px;
  border: none;
  background-color: #a8dc9d;
  color: #333;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-filter-group .filter-btn:hover {
  background-color: #64bf7e;
}

.gallery-filter-group .filter-btn.active {
  background-color: #58c14e;
  color: white;
}
.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  overflow: hidden;
  gap: 0;
  position: relative;
  margin-top: 20px;
  height: 450px;
}

.carousel-item {
  flex: 0 0 auto;
  transition: transform 0.5s ease, scale 0.5s ease, z-index 0.5s;
  cursor: pointer;
  margin: 0 -80px;
  transform-origin: center center;
}

.carousel-item img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-item.active {
  transform: scale(1.2);
  z-index: 10;
  margin: 0;
}

.carousel-item.left {
  transform: scale(0.8) translateX(-100px) rotateY(20deg);
  z-index: 5;
}

.carousel-item.right {
  transform: scale(0.8) translateX(100px) rotateY(-20deg);
  z-index: 5;
}

.carousel-item.show {
  display: block;
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

.filter-buttons {
  text-align: center;
}

.filter-btn {
  padding: 8px 16px;
  margin: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  background: #91d953;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #59ba60;
  color: #fff;
}
#gallery-section {
  background-color: #e3efe2;
    margin-bottom: 10px;
}

#tarumanagara-detail {

  padding: 60px 20px; /* opsional agar tidak terlalu rapat */
  padding-top: 40px;
}

#vresidence-detail{

  padding: 60px 20px; /* opsional agar tidak terlalu rapat */
  padding-top: 40px;
}

#senopati-detail{

  padding: 60px 20px; /* opsional agar tidak terlalu rapat */
  padding-top: 40px;
}
.contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 40px;
    }

    .contact-form, .newsletter {
      flex: 1 1 300px;
      background-color: #d5e5e2;
      border-radius: 12px;
      padding: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .newsletter input {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: none;
      border-radius: 8px;
      background-color: #c8dcd8;
    }

    .contact-form button,
    .newsletter button {
      background-color: #2b4f4a;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
    }

    .newsletter {
      background-color: #577e7a;
      color: white;
    }

    .newsletter input {
      background-color: white;
      color: black;
    }

    .info-boxes {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin: 30px 0;
      flex-wrap: wrap;
    }

    .info-box {
      flex: 1 1 250px;
      background-color: #e1f0ee;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .info-box i {
      font-size: 24px;
      color: #2b4f4a;
      margin-bottom: 10px;
      display: block;
    }
/* === MAP SECTION === */
.map-container {
  margin: 0;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 40px;
}

.map-container h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* === INTEREST SECTION === */
.interest-container {
  background-color: #ffffff;
  border: 2px solid #d4d4d4;
  border-radius: 20px;
  padding: 30px 40px;
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.interest-content h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
}

.interest-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* === BUTTON GROUP === */
.button-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  min-width: 160px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* === BUTTON COLORS === */
.btn.green {
  background-color: #5ac147;
  color: white;
}

.btn.green:hover {
  background-color: #439d35;
}

.btn.dark {
  background-color: #4a4035;
  color: white;
}

.btn.dark:hover {
  background-color: #2f2a23;
}

/* === GLOBAL === */
* {
  box-sizing: border-box;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .map-container h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .map-container iframe {
    height: 300px;
  }

  .interest-container {
    padding: 24px 20px;
    margin: 30px 15px;
  }

  .interest-content h3 {
    font-size: 20px;
  }

  .interest-content p {
    font-size: 14px;
  }

  .btn {
    min-width: 140px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 240px;
  }

  .interest-container {
    padding: 20px 16px;
    margin: 20px 10px;
  }

  .interest-content h3 {
    font-size: 18px;
  }

  .interest-content p {
    font-size: 13px;
  }

  .btn {
    min-width: 120px;
    padding: 8px 14px;
    font-size: 12.5px;
  }
}

  
.bottom-footer {
  background: #dcf2dc;
  padding: 40px 60px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 0.9em;
  color: #333;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.15);
}

.footer-col {
  flex: 1 1 150px;
  margin: 10px 20px;
  min-width: 150px;
}

.footer-col.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col.logo img {
  height: 180px;
  margin-bottom: 3px;
}

.footer-col.logo div {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}

.copyright {
  text-align: center;
  background-color: #dcf2dc;
  font-size: 0.8em;
  margin-top: 10px;
  padding: 10px 10px;
  border-top: 1px solid #3D372F;
  color: #3D372F;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInCopyright 1.5s ease 1s forwards;
}

@keyframes fadeInCopyright {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 8px;
}

.social-links a {
  text-decoration: none;
  color: #3D372F;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a:hover {
  color: #000;
}

/* === Tablet (max-width: 992px) === */
@media (max-width: 992px) {
  .footer-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
  }

  .contact-box {
    padding: 30px 20px;
    max-width: 100%;
  }

  .contact-box h2 {
    font-size: 36px;
  }

  .contact-box p {
    font-size: 16px;
    margin-bottom: 80px;
  }

  .instagram-preview {
    max-width: 90%;
    height: 400px;
  }

  .bottom-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .footer-col.logo img {
    height: 140px;
  }

  .footer-col.logo div {
    font-size: 16px;
  }

  .footer-col {
    margin: 10px 0;
    
  }
}

/* === HP (max-width: 600px) === */
@media (max-width: 600px) {
  .contact-box h2 {
    text-align: center;
    font-size: 28px;
  }

  .contact-box p {
    font-size: 14px;
    margin-bottom: 60px;
  }

  .btn-contact {
    font-size: 14px;
    padding: 5px 14px;
  }

  .instagram-preview {
    height: 300px;
  }

  .instagram-button {
    font-size: 0.6em;
    padding: 5px 12px;
  }

  .footer-col.logo img {
    height: 120px;
  }

  .footer-col.logo div {
    font-size: 14px;
  }

  .copyright {
    font-size: 0.75em;
    padding: 8px;
  }
}

@media (max-width: 992px) {
  .footer-col {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .social-links {
    display: inline-block;
    padding: 0;
  }

  .social-links li {
    margin-bottom: 10px;
  }

  .social-links a {
    justify-content: center;
  }
}

/* =====================
   ANIMASI SECTION MASUK
========================= */
.scroll-fade,
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible,
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}



.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
	background: linear-gradient(
		to bottom,
		rgb(8 42 123 / 35%) 30%,
		rgb(255 255 255 / 0%) 76%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin: 80px auto 0;
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: rgb(87, 142, 60);
	border-radius: 20px;
	overflow: hidden;
  margin-top: 0px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}   


.dot.active {
	background: rgba(123, 16, 8, 0.6);
	transform: scale(1.2);
}
/* Efek hover (zoom sedikit) */
.card img:hover {
  transform: scale(1.05);
}

/* Efek klik (zoom besar 30%) */

.nav-arrow {
	background-color: #62c165; /* hijau tua */
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  position:center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.nav-arrow:hover {
	background: rgba(9, 88, 21, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	
}

/* ==== RESPONSIVE TWEAKS ==== */
@media (max-width: 1024px) {
  .contact-box h2 {
    font-size: 32px;
  }
  .contact-box p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .instagram-preview {
    max-width: 100%;
    height: auto;
  }
  .hero h1 {
    font-size: 2em;
    padding: 0 20px;
  }
  .hero a {
    font-size: 0.9em;
  }
  .hero-logos img {
    height: 60px;
  }
  .hero-logos img:nth-child(2) {
    height: 100px;
  }
  .hero-logos img:nth-child(3) {
    height: 110px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
  }

  .contact-box, .instagram-preview {
    max-width: 100%;
    margin: 20px 0;
  }

  .bottom-footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-col {
    margin: 10px 0;
  }

  .navbar-container {
    padding: 10px 20px;
  }

  .hero {
    height: auto;
    padding: 100px 0 50px;
  }

  .hero-logos {
    position: static;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 40px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .instagram-button {
    position: static;
    transform: none;
    margin: 20px auto 0;
  }
}
.hero a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero a.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   DROPDOWN MENU
========================= */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 180px;
  z-index: 1001;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

/* Tampilkan menu saat hover */
.dropdown:hover .dropdown-menu {
  display: block;
}