
/* ================= GLOBAL RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('../img/body-bg7.png');
  background-color: #000;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  overflow-x: hidden;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  color: black;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

/* ================= CONTAINER ================= */
.container {
  width: 70%;      
  margin: auto;
}

/* ================== HEADER ================== */
#site-header { 
  width: 70%;
  margin: 0 auto;
  position: relative; 
  background: #ffffff;
  border-bottom: 5px solid #bf7301;
}

/* ===========================
   HEADER CONTAINER
   =========================== */
.header-container {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===========================
   LOGO
   =========================== */
.header-container .logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 600px) {
  #site-header {
    width: 100%;
    border-radius: 0;
  }

  .header-container {
    height: 65px;
  }

  .header-container .logo img {
    height: 45px;
  }
}
#bottom-bar .container {
  background: linear-gradient(to bottom, #bf7301, #000);
  border-top: 2px solid #222;
  color: #fff;
  padding: 15px 0;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}
.center-box {
    width: 100%;
    display: flex;
    flex-direction: column;   
    align-items: center;      
    gap: 12px;                
    margin-top: 20px;
}
/* ======= NAVIGASI UTAMA ======= */
.nav {
  background: #bf7301;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5px 15px;
  z-index: 10;
  width: 70%;
  margin: 20px auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ======= MENU UL ======= */
.nav ul#menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.nav ul#menu li {
  margin: 0;
  padding: 0;
}

.nav ul#menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 15px;
}

.nav ul#menu li a:hover {
  background: rgba(0,0,0,0.2);
  color: #fff;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
}

.menu-toggle div {
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav ul#menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #bf7301;
    border-top: 1px solid #000;
  }

  .nav ul#menu li a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    font-size: 14px;
  }

  .nav ul#menu.show {
    display: flex;
  }

  /* animasi toggle */
  .menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active div:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ================= CONTENT ================= */
.content .container { 
  background: #ffffff;
  border-top: 5px solid #bf7301;
  border-bottom: 5px solid #bf7301;
  border-radius: 6px;
  padding: 5px;
  margin-top: 20px;
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .content p {
    font-size: 15px;
  }
}

/* ================= HEADINGS ================= */
h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 32px;
  color: black;
}

h2, h3 {
  text-align: center;
  margin: 25px 0;
  font-size: 26px;
  color: black;
}

h4 {
  text-align: center;
  margin: 20px 0;
  font-size: 20px;
  color: black;
}

.title-head {
  font-size: 24px;
  color: black;
}

.title-footer {
  font-size: 26px;
  color: black;
}

.iklan {
  width: 100%;
  border: 2px solid #ff6600;
  box-sizing: border-box;
  overflow: hidden;
}
.iklan img {
  width: 100%;
  display: block;
  border: 2px solid #ff6600;
}

.footer_container { width: 100%; display: block; }
.inside_footer_container { width: 100%; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; }
.footer_button {
  width: 22%;
  min-width: 120px;
  display: inline-block;
  margin: 1% 0 0 0;
  padding: 10px 0;
  background-color: #d3d3d3;
  box-shadow: 0 0 10px 1px #141414;
  font-size: 15px;
  font-weight: bold;
  color: black;
  letter-spacing: 0.2px;
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .footer_button { width: 48%; min-width: auto; }
}
.nav-container {
    width: 100%;
  }


#color-selector { display: flex; align-items: center; gap: 10px; border: none; padding: 0; }
.color {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 2px solid #fff; box-shadow: 0 0 4px rgba(0,0,0,0.3); transition: transform .2s;
}
.color:hover { transform: scale(1.2); }

.color.eraser {
  background: #333 url('data:image/svg+xml;utf8,<svg fill="white" height="20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M16.24 3.76a3 3 0 0 0-4.24 0L2 13.76V18h4.24l10-10a3 3 0 0 0 0-4.24zM5.66 16H4v-1.66l8.12-8.12 1.66 1.66L5.66 16z"/></svg>') center/70% no-repeat;
}
@media (max-width: 480px) {
  .colormenu { gap: 6px; padding: 4px 6px; }
  #color-selector { gap: 6px; }
  .color { width: 24px; height: 24px; }
  #btnSubmit { padding: 5px 12px; font-size: 12px; border-radius: 16px; }
}

.intro td { background: #ffffff !important; color: #000; }

/* html helpers used by some scripts */
#toggle-tracing-mode { display: none; }
#html-wrap textarea { height: 50px; margin: 0 0 10px; overflow: auto; width: 100%; }


.iklan {
  width: 100%;
  border: 2px solid #ff6600;
}

.iklan img {
  width: 100%;
  border: 2px solid #ff6600;
}

/* ================= FOOTER BUTTONS ================= */
.footer_container { width: 100%; display: block; }
.inside_footer_container {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer_button {
  width: 22%;
  min-width: 120px;
  margin: 1% 0 0 0;
  padding: 10px 0;
  background-color: #d3d3d3;
  box-shadow: 0 0 10px 1px #141414;
  font-size: 15px;
  font-weight: bold;
  color: black;
  text-align: center;
  border-radius: 6px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .container { width: 100%; padding: 0 10px; }
  #top-bar .container { padding: 40px 0; }
  .nav-container {
    width: 100%;
  }
  h1 { font-size: 26px; }
  h2, h3 { font-size: 22px; }
  p { font-size: 15px; }
  .lassres { width: 100%; }
}

/* ================= SMALL SCREENS ================= */
@media (max-width: 480px) {
  .colormenu { gap: 6px; padding: 4px 6px; }
  #color-selector { gap: 6px; }
  .color { width: 24px; height: 24px; }
  #btnSubmit { padding: 5px 12px; font-size: 12px; border-radius: 16px; }
}
 