@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-VariableFont_wght.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}

:root {
    --font-tiny: 100;    /* Thin */
    --font-extra-light: 200; /* Extra Light */
    --font-light: 300;   /* Light */
    --font-regular: 400; /* Regular */
    --font-medium: 500;  /* Medium */
    --font-semi-bold: 600; /* Semi Bold */
    --font-bold: 700;    /* Bold */
    --font-extra-bold: 800; /* Extra Bold */
    --font-black: 900;   /* Black */

    --global-font-family: 'Roboto Condensed', sans-serif;
}

body {
    font-family: var(--global-font-family);
    padding: 0;
    margin: 0;
}

/* Line-height paragraf khusus jika mau tetap 1.5 */
p {
    line-height: 1.5; /* tema hanya mengatur line-height paragraf */
    margin-bottom: 1em;
}
/* ===== Styling Minimal Form Komentar WordPress ===== */

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  font-family:var( --e-global-typography-text-font-family ), Sans-serif;
  color:var( --e-global-color-text );
  background-color:#FFFFFF14;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Sembunyikan field URL */
.comment-form-url {
  display: none !important;
}


.box {
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

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