/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  /* 🌿 Gradasi putih ke hijau muda */
  background: linear-gradient(to bottom, #ffffff, #b8f5b0);
}

/* Struktur dasar */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #004d26; /* hijau tua */
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Under Construction Body */
.under-construction {
  flex: 1; /* biar body isi ruang di tengah */
  text-align: center;
  padding: 60px 20px 3px;
}

.under-construction h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #004d26;
}

.under-construction p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.under-construction a {
  color: #004d26;
  text-decoration: none;
  font-weight: bold;
}

.under-construction a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #003d1f;
  color: #d8ffd3;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto; /* biar nempel di bawah */
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.footer-nav a {
  color: #d8ffd3;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ... kode sebelumnya tetap sama ... */

/* Logo di halaman under construction */
.uc-logo {
  width: 200px;
  max-width: 40%;
  height: auto;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* 🌿 efek lembut tanpa kotak */
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  mix-blend-mode: multiply; /* bantu logo nyatu dg bg */
  background: transparent; /* hilangkan background tambahan */
  padding: 0; /* hilangkan padding penyebab kotak */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uc-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Kontak info */
.contact-info {
  /*margin-top: 40px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  /*gap: 12px;*/
  color: #004d26;
  font-size: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}


/* ... lanjutkan kode lain (h1, p, footer dll sama seperti sebelumnya) ... */

