/* Navbar Style */
.comic-navbar {
  background: #fff; /* white navbar */
  border-bottom: 3px solid #000;
  padding: 0;
  height: 90px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

/* .brand-title {
  font-family: "Bangers", system-ui;
  font-size: 1.3rem;
  font-weight: bold;
  color: #52AE47;
} */

.navbar-brand {
  border: 3px solid #000;
  width: 25%;
  padding: 0 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-icon img.social-logo {
  width: 28px;   /* adjust size */
  height: 28px;  /* keep square */
  object-fit: contain; /* keeps aspect ratio */
  display: block;
}


@media (max-width:768px){
  .navbar-brand {
  border: 0px solid #000 !important;  
  padding: 0 10px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px !important;
  width: auto;
}
}

/* Nav Links */
.navbar-nav {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.navbar-nav .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}



.navbar-nav .nav-link {
  background: #fff;
  border: 3px solid #000;
  font-weight: lighter;
  color: #000 !important;
  transition: 0.2s ease-in-out;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
}

.navbar-nav:hover {
  color: #fff !important;
}

.nav-link:hover{
  background: #000;
  color: #fff !important;
}

/* Special Button (FAQ) */
.navbar-nav .nav-link.special {
  background: #000;
  color: #fff !important;
}
.navbar-nav .nav-link.special:hover {
  border: 3px solid #52AE47 !important;
  color: #000 !important;
}

/* Social Bar */
.social-bar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-icon {
  text-decoration: none;
  width: 45px;
  height: 45px;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.2s;
}
.social-icon.discord { background: #fff; }
.social-icon.twitter { background: #fff; }
.social-icon.telegram { background: #fff; }
.social-icon.pump { background: #fff; }


.social-icon:hover {
  transform: translateY(-4px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }
  .social-bar {
    flex-direction: column;
    bottom: 15px;
    top: auto;
    right: 15px;
    transform: none;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.center-img{
  width: 120px;
}