/* ===== GLOBAL ===== */
body{margin:0;font-family:'Poppins',sans-serif;background-color:#f4f4f4;}
html{
  scroll-behavior:smooth;
}

/* ===== NAVBAR ===== */
.navbar{display:flex;align-items:center;justify-content:space-between;background-color:#DE0136;padding:10px 20px;position:relative;box-shadow:0 2px 6px rgba(0,0,0,0.15);}
.navbar-left{display:flex;align-items:center;gap:25px;}
.navbar-left img{height:45px; transition: transform 0.35s ease, filter 0.35s ease;}
.navbar-left:hover img{
    transform: scale(1.5);
    filter: brightness(1.1);
}
.navbar-left a{color:#fff;text-decoration:none;font-weight:600;border-bottom:2px solid gold;}
.navbar-right{display:flex;gap:25px;}
.navbar-right a{color:#fff;text-decoration:none;position:relative;}
.navbar-right a::after{content:'';position:absolute;left:0;bottom:-5px;width:0;height:2px;background:gold;transition:0.3s;}
.navbar-right a:hover::after{width:100%;}

/* ===== PROFILE DROPDOWN ===== */
.profile-dropdown{position:relative;}
.profile-btn img{width:40px;height:40px;border-radius:50%;border:2px solid #fff;cursor:pointer;object-fit:cover;}
.dropdown-content{display:none;position:absolute;right:0;top:55px;background:#fff;min-width:170px;border-radius:6px;box-shadow:0 8px 20px rgba(0,0,0,0.25);overflow:hidden;z-index:99;}
.dropdown-content a,.dropdown-content button{padding:12px 15px;display:block;width:100%;border:none;background:none;text-align:left;color:#DE0136;cursor:pointer;text-decoration:none;}
.dropdown-content a:hover,.dropdown-content button:hover{background:#f1f1f1;}
.dropdown-content.show{display:block;}

/* ===== HAMBURGER ICON ===== */
.hamburger{display:none;flex-direction:column;cursor:pointer;}
.hamburger span{height:3px;width:28px;background:#fff;margin:4px 0;}

/* ===== NAVBAR MOBILE ===== */

/* Default hide */
.mobile-notification{
  display:none;
}

/* ===== NAVBAR MOBILE CUSTOM (SISKUL) ===== */
@media(max-width:768px){

/* hide desktop menu */
.navbar{
  min-height:70px;
}


.navbar-left a,
.navbar-right{
  display:none;
}

/* profile always left */
.profile-dropdown{
  position:absolute;
  /* position:static;              yo thapeko */
  left:15px;
}

/* center logo */
.navbar-left{
  position:absolute;
  left:50%;
  top:30%;        
  transform:translateX(-50%);

}

/* notification icon right */
/* ===== MOBILE NOTIFICATION ===== */
.mobile-notification{
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  text-decoration:none;
}

.notif-badge{
  position:absolute;
  top:-6px;
  right:-8px;
  background:red;
  color:#fff;
  font-size:11px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}



/* ===== MOBILE DRAWER ===== */
.mobile-drawer{
  position:fixed;
  top:0;
  left:-260px;
  width:260px;
  height:100%;
  background:#DE0136;
  color:#fff;
  z-index:999;
  transition:0.3s;
  padding:20px;
}
.mobile-drawer.active{
  left:0;
}

/* ===== DRAWER HEADER===== */
.drawer-header{
  padding:10px 0 20px;
  border-bottom:1px solid rgba(255,255,255,0.25);
}

.drawer-user-row{
  display:flex;
  align-items:center;
  gap:14px;
}

/* profile image */
.drawer-avatar{
  width:56px;
  height:56px;
  border-radius:50%;
  border:2px solid #fff;
  object-fit:cover;
}


/* ===== LOGIN / REGISTER BUTTON STYLE ===== */

.drawer-btn{
  display:block;
  text-align:center;
  padding:10px;
  margin-top:10px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
}

/* Login button */
.login-btn{
  background:#fff;
  color:#DE0136;
}

/* Register button */
.register-btn{
  background:gold;
  color:#000;
}

/* name + username */
.drawer-user-info{
  display:flex;
  flex-direction:column;
  flex:1;
}

.drawer-name{
  font-size:16px;
  font-weight:600;
  line-height:1.2;
}

/* username + arrow */
.drawer-username-row{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  opacity:.9;
  cursor:pointer;
}

.drawer-username-row i{
  font-size:12px;
  opacity:.8;
}
.drawer-username-row{
  text-decoration:none;
  color:#fff;
}

/* ===== DRAWER LINKS ===== */
.drawer-links{
  margin-top:15px;
}

.drawer-links a{
  display:block;
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.25);
  text-decoration:none;
}

/* ===== LOGOUT BUTTON ===== */
.drawer-logout button{
  width:100%;
  margin-top:20px;
  background:gold;
  border:none;
  padding:10px;
  font-weight:bold;
  border-radius:6px;
}
}
@media(min-width:769px){
  .mobile-drawer{display:none;}
  .hamburger{
    display:none;
  }



}




/* ===== FOOTER BASE ===== */
.siskul-footer{background-color:#690101;color:#fff;padding:60px 0 20px;}

/* ===== FOOTER CARD ===== */
.footer-card{background:rgba(9,1,1,0.08);box-shadow:0 10px 25px rgba(0,0,0,0.35),inset 0 1px 0 rgba(255,255,255,0.15);border-radius:14px;padding:20px;height:100%;transition:all 0.3s ease;}
.footer-card:hover{box-shadow:0 10px 25px rgba(0,0,0,0.35),inset 0 1px 0 rgba(255,255,255,0.15);transform:translateY(-6px);background:rgba(255,255,255,0.12);}

/* ===== FOOTER TEXT ===== */
.siskul-footer h5{margin-bottom:15px;}
.siskul-footer p,.siskul-footer a{color:#fff;font-size:15px;text-decoration:none;}
.siskul-footer a:hover{color:gold;padding-left:4px;}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social{display:flex;gap:14px;margin-top:10px;}
.footer-social a{width:36px;height:36px;background:rgba(255,255,255,0.15);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;transition:0.3s;}
.footer-social a:hover{background:gold;color:#DE0136;transform:translateY(-3px);}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom{font-size:13px;color:#ffe4ea;padding-top:10px;}

/* ===== FOOTER MOBILE ===== */
@media(max-width:768px){
   .hide-footer-mobile{
    display:none;
  }
.footer-card{text-align:center;}
.footer-social{justify-content:center;}
}
@media(max-width:991px){
  .mobile-notification{
    display:block;
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    text-decoration:none;
  }
}


/* ===== MOBILE NAVBAR PERFECT CENTER FIX ===== */

.navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    height: 60px;
    position: relative;
}

.navbar img {
    display: block;
}

.navbar-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .navbar {
        height: 55px;
    }
}
