/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Raleway;
  background: #f7f3e8;
  color: #333;
}
.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.footer-contact a {
  color: #3E2F1C;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/*---------------------- Footer Atas ----------------------------*/
.navbar {
  position: fixed;
  font-family: Raleway;
  top: 0;
  width: 100%;
  background: #ede2cca9; /* transparan footer */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  backdrop-filter: blur(6px); /* efek blur lembut */
  z-index: 1000;
  color: #8A724C;
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color:#3E2F1C;
  display: flex;
  align-items: center;
  gap: 10px; /* jarak antara logo dan teks */
}

.logo-img {
  width: 35px;  /* ukuran logo bisa diubah sesuai kebutuhan */
  height: 35px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #3E2F1C;
  font-weight: 1000;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #8A724C;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  font-family: Raleway;
  cursor: pointer;
  user-select: none;
}

/* Konten */
.content {
  margin-top: 100px;
  font-family: Raleway;
  text-align: center;
  padding: 60px 20px;
}


.footer {
  text-align: center;
  padding: 20px;
  background: #8A724C;
  backdrop-filter: blur(6px);
  color: #3E2F1C;
  font-size: 0.9rem;
  margin-top: 60px; /* memberi jarak dari konten atas */
}


/* Responsif */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 71px;
    right: 0;
    align-items: center;
    background: #ede2cca9; /* Warna Hamburger */
    width: 200px;
    text-align: right;
    text-emphasis-position: center;
    padding: 20px;
    border-radius: 10px 0 0 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/*---------------------- Footer Atas ----------------------------*/


.konten-info {
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:120px;
  margin-bottom:60px;
}

.konten-box {
  display:flex;
  gap:40px;
  background:#ede2cc;
  padding:40px;
  border-radius:20px;
  max-width:1100px;
  width:95%;
  box-shadow:0 8px 22px rgba(0,0,0,0.15);
}

.konten-kiri {
  flex:1;
  color:#000;
}

.konten-kiri h2 {
  margin-bottom:18px;
  color:#000;
  font-weight:700;
  font-size:2.5rem;
  letter-spacing:0.5px;
}

.konten-kiri p {
  margin:10px 0;
  display:flex;
  gap:10px;
  align-items:center;
  font-size:20px;
}

.konten-kiri a {
  color:#000;
  text-decoration:none;
  font-weight:600;
}

.konten-kiri a:hover {
  text-decoration:underline;
}

.konten-map {
  flex:1;
  height:290px;
  min-width:300px;
  border-radius:15px;
  overflow:hidden;
}

.konten-map iframe {
  width:100%;
  height:100%;
  border: 50px;
  border-radius:15px;
}

@media(max-width:768px){
  .konten-box{
    flex-direction:column;
  }
  .konten-map{
    height:250px;
  }
}

/*---------------------- Footer Bawah ----------------------------*/
footer {
  background: url("../bg/bg.jpg") center/cover no-repeat; /* 🔹 Ganti dengan path fotomu */
  color: #3E2F1C;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

/* Lapisan gelap agar teks tetap terbaca */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Semua isi footer di atas lapisan gelap */
.footer-content,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.footer-info,
.footer-contact {
  flex: 1 1 45%;
  margin-bottom: 20px;
}

.footer-info h3,
.footer-contact h3 {
  color: #3E2F1C;
  margin: 8px 0;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.footer-contact i {
  font-size: 18px;
  min-width: 20px;
}

.footer-contact a {
  color: #3E2F1C;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #3E2F1C;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}


/* Responsif untuk HP & Tablet */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 30px 15px;
    background-position: center;
    background-size: cover;
  }
}
.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 6px;
}

.footer-contact a {
  color: #3E2F1C;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}
/*---------------------- Footer Bawah ----------------------------*/

/*---------------------- Gelembung WhatsApp  ----------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
/*---------------------- Gelembung WhatsApp  ----------------------*/