/* General Styles */
body {
  margin: 0;
  font-family: 'Inria Serif', serif;
  background: #f9f9f9;
  color: #333;
  padding-top: 110px;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #e5e1de;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 20px;
}

.topbar .hamburger {
  position: absolute;
  left: 15px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #5a4633;
  display: none;
  line-height: 1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  text-decoration: none;
  color: #5a4633;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links li a:hover { color: #a07d58; }

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 80px;
  padding: 0 5%;
}

.contact-left {
  flex: 1;
  position: relative;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.contact-right {
  flex: 1;
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}

/* Overlay Content */
.overlay-content {
  display: none;
}

.brand-logo img {
  width: 180px;
  height: auto;
  margin: 0 auto 15px auto;
}

.brand-name {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.thanks-text {
  font-size: 16px;
  margin: 20px 0 30px 0;
  color: #222;
}

/* Sosial Media */
.social-links {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.social-links img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.social-links span {
  display: inline-block;
  border: 1px solid #333;
  padding: 6px 18px;
  border-radius: 20px;
  transition: 0.3s;
}

.social-links span:hover {
  background: #f5f5f5;
  border-color: #a07d58;
  color: #a07d58;
}

/* Maps */
.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.map-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.map-btn {
  display: inline-block;
  border: 1px solid #333;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 10px;
}

.map-btn:hover {
  background: #f5f5f5;
  border-color: #a07d58;
  color: #a07d58;
}

.note {
  font-size: 14px;
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #c4b6a6;
  color: #3a2f2f;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .topbar .hamburger { display: block; }

  .navbar {
    justify-content: flex-start;
    padding: 0;
  }

  .nav-links {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #eee;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.show { transform: translateY(0); }

  .contact-section { flex-direction: column; gap: 15px; }
  .contact-right { padding: 20px; }

  .contact-left {
    position: relative;
  }

  .contact-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    z-index: 1;
    border-radius: 12px;
  }

  .overlay-content {
    display: block;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f0e6d2;
    width: 90%;
    z-index: 2;
  }

  .overlay-content .brand-logo img {
  width: 120px;
  margin-bottom: 8px;
  filter: brightness(1.4) drop-shadow(0 0 6px rgba(255,255,255,0.8));
}


  .overlay-content .brand-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #e7d4b5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  }

  .overlay-content .thanks-text {
    font-size: 13px;
    line-height: 1.6;
    background: rgba(255,255,255,0.1);
    padding: 10px 14px;
    border-radius: 10px;
    color: #f9f5ef;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  /* Sembunyiin duplikat desktop */
 .contact-right .brand-logo,
.contact-right .brand-name,
.contact-right .thanks-text {
  display: none;
}
}
