/* =========================
   GLOBAL & ROOT
========================= */
:root {
  --red: #0E86D4;
  --bgColor: rgb(255, 196, 251);
}


/* =========================
   TEXT
========================= */
.bg-text {
  color: #fff;
  font-weight: bold;
  font-size: 45px;
  text-align: center;
  z-index: 2;
  width: 320px;
  margin: 55px auto 35px;
  padding-bottom: 10px;
}

.exp { color: #f00; }
p {
  font-size: 12px;

}

/* =========================
   EFFECT
========================= */
.blur {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom,
    from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* =========================
   NAVBAR
========================= */
.navbar {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1;
  height: 60px;
}

.navbar a {
  display: inline-block;
  padding-top: 18px;
  font-size: 17px;
  color: #2c2e31;
  text-decoration: none;
  border-radius: 5px;
}
.navbar a,
.dropdown .dropbtn {
  position: relative;
  transition: all 0.25s ease;
  display: inline-block;
}

.navbar a,
.dropdown .dropbtn {
  position: relative;
  display: inline-block;
  color: #fff;
  transition: all .25s ease;
}

/* =========================
   HOVER ELEGAN (SOFT GRADIENT SHIFT)
========================= */
.navbar a:hover,
.dropdown:hover .dropbtn {
  color: transparent;
  background: linear-gradient(120deg,#0f766e,#134e4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transform: translateY(-2px) scale(1.05);
}

/* =========================
   UNDERLINE MODERN (SMOOTH SLIDE)
========================= */
.navbar a::after,
.dropdown .dropbtn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(120deg,#0f766e,#134e4a);
  transform: translateX(-50%);
  transition: width .3s ease;
  border-radius: 10px;
  opacity: .9;
}

/* hover underline */
.navbar a:hover::after,
.dropdown:hover .dropbtn::after {
  width: 70%;
}

/* =========================
   LOGO
========================= */
.lambang,
.lambange {
  position: fixed;
  border-radius: 50%;
  overflow: hidden;
}

.lambang {
  width: 45px;
  height: 45px;
  top: 5px;
  left: 5px;
  background: #000;
}

.lambange {
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
  background: #fff;
}

/* =========================
   FRAME
========================= */
.framed,
.framedblj {
  border-radius: 15px;
  padding: 5px;
  margin: 5px 11px 15px 15px;
}

.framed {
  width: 300px;
  height: 200px;
  background: #3d88ce59;
  box-shadow: -42px -42px 0 -40px var(--red),
               42px 42px 0 -40px var(--red);
}

.framedblj {
  width: 200px;
  height: 300px;
  background: #ff620077;
  box-shadow: -45px -45px 0 -40px var(--red),
               45px 45px 0 -40px var(--red);
}

/* =========================
   LABEL
========================= */
.label { background: rgb(1, 103, 255); color: #fff; }
.labelblj { background: rgb(255, 149, 1); color: #fff; }

/* =========================
   FORM
========================= */
input, select {
  width: 100px;
  height: 30px;
  border-radius: 5px;
}
/* =========================
   ALERT PRO UI (GLOW + ANIMASI)
========================= */

:root{
  --bg-light:#ffffff;
  --bg-dark:#1c1c1c;

  --text-light:#111;
  --text-dark:#fff;
}

/* container */
.alert-box{
  position: relative;
  font-size: 13px;
  padding: 12px 18px;
  margin: 12px 0;
  border-radius: 10px;

  font-weight: 500;
  letter-spacing: 0.3px;

  backdrop-filter: blur(10px);

  border: 1px solid transparent;

  overflow: hidden;

  transition: 0.3s ease;
}

/* glow moving line */
.alert-box::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:2px;

  background: linear-gradient(90deg, transparent, currentColor, transparent);

  animation: slideGlow 2.5s linear infinite;
}

@keyframes slideGlow{
  0%{ left:-100%; }
  100%{ left:100%; }
}

/* text glow */
.alert-box span{
  font-weight:700;
  text-transform: uppercase;

  text-shadow: 0 0 6px currentColor,
               0 0 12px currentColor;
}

/* ================= COLORS ================= */

/* ERROR */
.error{
  color:#ff6b6b;
  background: rgba(255,0,0,0.08);
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 0 15px rgba(255,0,0,0.15);
}

/* SUCCESS */
.success{
  color:#2ecc71;
  background: rgba(0,255,100,0.08);
  border-color: rgba(0,255,100,0.3);
  box-shadow: 0 0 15px rgba(0,255,100,0.15);
}

/* WARNING */
.warning{
  color:#ffb703;
  background: rgba(255,183,3,0.08);
  border-color: rgba(255,183,3,0.3);
  box-shadow: 0 0 15px rgba(255,183,3,0.15);
}

/* NOTICE */
.notice{
  color:#4cc9f0;
  background: rgba(76,201,240,0.08);
  border-color: rgba(76,201,240,0.3);
  box-shadow: 0 0 15px rgba(76,201,240,0.15);
}

/* ================= HOVER EFFECT ================= */
.alert-box:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ================= LIGHT MODE SUPPORT ================= */
@media (prefers-color-scheme: light){
  .alert-box{
    background: rgba(0,0,0,0.05);
    color:#111;
  }

  .alert-box span{
    text-shadow: 0 0 4px currentColor;
  }
}
/* =========================
   FLOAT (DIPERTAHANKAN)
========================= */
.float-container {
  border: 3px solid rgba(255,255,255,0.2);
  padding: 20px;
  margin-bottom: 185px;
}

.float-child {
  width: 50%;
  float: left;
  padding: 20px;
  border: 1px solid #fbf0f0;
  border-radius: 15px;
}

/* =========================
   CONTAINER
========================= */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 115vh;
  overflow: auto;
}

#content {
  background: #fff;
  margin: 5px;
  border-radius: 10px;
  box-shadow: rgba(0,0,0,0.4) 0 2px 8px;
}

/* =========================
   BUTTON
========================= */
button,
.new-button,
.logbtn,
input[type="button"] {
  background: rgba(100, 148, 237, 0);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  margin: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

button:hover {
  background: orange;
}

/* =========================
   IMAGE STYLE
========================= */
.buletin {
  width: 150px;
  height: 150px;
  border: 3px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.gallery {
  width: 500px;
  height: 250px;
  border: 7px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

/* =========================
   ANIMATION
========================= */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
  float: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top:60px;
  background: #f9f9f9;
  min-width: 160px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   FOOTER
========================= */
.babatok {
  background: #252323;
  padding: 3em;
  color: rgba(255, 98, 0, 0.7);
}

.babatok p {
  color: #fff;
}

/* =========================
   MISC
========================= */
.notif {
  background: #fa3e3e;
  border-radius: 50%;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
}

.go { visibility: hidden; }