@charset "utf-8";


/* CSS Document */



@font-face{
	font-family: 'BPG Glaho';
	src: url("bpg-glaho-master/fonts/bpg-glaho-webfont.ttf");
}

@font-face{
	font-family: 'ALK Life';
	src: url("alk-life-master/fonts/alk-life-webfont.ttf");
}



h1, h2, p, li, div, button, input, span{
	font-family: "BPG Glaho", sans-serif;

}



body, html {
  margin: 0;
  padding: 0;
	background-image: linear-gradient(rgba(80, 80, 80, 0.8), rgba(0,0,0,0.7)40%),  url( "https://img.freepik.com/premium-vector/money-mafia-colorful-seamless-pattern_153969-206.jpg?w=2000");
 align-items: center;
  min-height: 100vh;
  text-align: center;
	background-size: 50%;
	
	/*height: 100vh;
	widht:100%;
    background-size:cover;
	background-position: center;*/
}

/*https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRkvDvChb47g6j3KiNF841Cg4l9OsZlvYSBVQ&usqp=CAU*/

/*https://img.freepik.com/premium-vector/money-mafia-colorful-seamless-pattern_153969-206.jpg?w=2000*/
/*https://files.123freevectors.com/wp-content/original/102178-red-circle-pattern.jpg*/


/*.pattern-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("https://img.freepik.com/premium-vector/money-mafia-colorful-seamless-pattern_153969-206.jpg?w=2000");
  background-repeat: repeat;
}


.pat{
    background: rgba(255, 255, 255, 0.5)(0,0,0,0.6);
	
}*/

.sat{
	  color: white;
  letter-spacing: 1.5px;
  text-shadow:
    2px 2px 0 #000,
    -1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000;
	margin: 10px auto 10px;
}

.no-highlight {
    outline: none;
}



.main-content {
  
  min-height: 100vh;
  padding: 20px;
}



/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:#191919; /*#333;*/
  color: white;
  padding: 2px 20px;
   position: relative;
  overflow: hidden;
}


.navcent{
    float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-grow: 1; 
}

.navbar-menu li {
  margin: 0 15px;
}




.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
	width:120px;
  max-width: 300px; 
  height:80px;
}

.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center; 
}

.navbar-menu li {
  margin-right: 10px;
}

.navbar-menu a{
    /*float: left;*/
  text-align: center;
  padding: 14px 6px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
	font-size: 20px;
	letter-spacing: 1px;
}


.navbar-menu a:hover {
  color:#881E1F;  /*#f39c12;*/
}



/* Filt st */
.filters {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; 
  flex-wrap: wrap; 
}

.filter-btn {
  background-color: #f2f2f2;
  border: 2px solid #191919;
  border-radius: 20px;
  padding: 8px 16px; 
  margin: 6px; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
	 /*transition: transform 0.3s, box-shadow 0.3s;
	 box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);*/
	
}

.filter-btn:hover {
  background-color: #ddd;
	/*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);*/
}

.filter-btn.active {
  border-color:#191919; /*#333;*/
  background-color:#191919; /*#333;*/
  color: white;
}
/* Main st */
.main-content {
  padding: 20px;
}

.character-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px;
  opacity: 0;
	animation: fadeIn 1s forwards; 
	 -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); 
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.character-cards.delayed {
  animation-delay: 1.5s ;
}

/**/
.character-card.slide-up {
  animation: slideUp 1.0s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.character-card {
  border: 2px solid black;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
  width: 200px; 
}

.character-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}




/*.character-card.srial:hover {
  animation: srial 0.2s ease forwards;
}

@keyframes srial {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(-5px);
  }
}
*/



.character-card img {
	 display: block;
  width: 100%;
  max-height: 200px; 
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Bullets */
.bullet {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
	border:1px solid black;
}



/*
.character-type {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
}
*/


/* Modal  */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
	
	 backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  border-radius: 10px;
  padding: 30px; 
  /*width: 90%; 
  max-width: 700px; */
  margin: auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  position: relative;

	/*  width: 90%; */
  max-width: 60%; 
	
 
 
}

.close {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
    color: #333; 
	transition: 1.0s;
}

.close:hover {
    color: #ff0000; 
	
}


/**/

.character-details {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 0px;
}

.character-image {
  flex: 1;
  margin-right: 20px;
  text-align: center;
}

.character-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.character-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin-top: 10px;
  text-align: center;
	
	
}

.character-description{
	color: blue;
}

.character-name {
  font-size: 24px;
  /*font-weight: bold;*/
  margin-bottom: 6px;
	
	
}

.character-type {
  display: flex;
  align-items: center;
  justify-content: center; 
  margin-top: 6px;
	
	
	
}
 

.character-info h2{
	font-weight: 700;
	letter-spacing: 1.2px;
}


.modal-description {
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
  max-height: 300px; 
  overflow-y: auto; 
	font-weight: 700;
    letter-spacing: 0.2px;
}


.modal-bullet {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 2px;
	border:2px solid black;
}

.modal-black {
  background-color: black;
}

.modal-red {
  background-color: red;
}

.modal-yellow {
  background-color: yellow;
}

.character-type p {
  margin: 0;
}

.character-description {
  text-align: center;
}



@media screen and (max-width: 708px) {
  .navbar {
    flex-direction: column;
	  padding-bottom: 10px ;
  }

  .navbar-menu {
    margin-top: 80px;
	   margin-bottom: 10px;
	  margin-right: 0px;
	  margin-left: -10px;
  }
  
	.navbar-menu a{
		font-size: 15px;
	}
  
	.navbar-menu li {
  margin-right: 0px;
}
	.navbar-logo {
  display: flex;
  align-items: center;
	margin-bottom: 50px;
}


	


  .filters {
    margin-top: 10px;
  }

  .character-cards {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .character-card {
    padding: 10px;
	  /*flex:1;*/
  }

  .character-type {
    bottom: 8px;
    right: 8px;
    font-size: 12px;
  }
  
    .character-image {
    display: none; 
  }

  .character-info {
    flex: 1; 
  }
  .footer-text-right span{
	font-size: 14px;
	letter-spacing: 0.7px;
}
  .nm{
	font-size: 13px !important;
	
	}

}

@media screen and (max-width: 545px) {
	.character-card {
      width: 170px; 
}
	.character-card img {
	 margin-bottom: -10px;
}
	.character-cards h3{
		margin-bottom: 13px;
	}
}
@media screen and (max-width: 475px) {
	.character-cards {
      gap:10px;
}
	.main-content {
  padding: 0px;
}
}
@media screen and (max-width: 455px) {
	.character-card {
      width: 150px; 
}
}
@media screen and (max-width: 414px) {
	.character-card {
      width: 140px; 
}
}

@media screen and (max-width: 386px) {
	.character-card {
      width: 136px; 
		font-size: 14px;
		
}	
}
@media screen and (max-width: 346px) {
	.character-card {
      width: 190px;
		
}	
}

@media screen and (max-width: 315px) {
	
	.navbar-menu {
  list-style:none;
  display:block;
  align-items: center; 
		margin-top: 70px;
	   margin-bottom: 10px;
	
	margin-right: 10px;
}
	 .navbar-logo {
  display: flex;
  align-items: center;
		margin-bottom: 100px;
}
	.navbar-menu li{
		margin-bottom: 10px;
	}
	.navbar-menu ul{
		margin-bottom: 0px;
		
	}

	.navbar-menu a{
        padding: 0px 6px;
}

	
	
	.filter-btn {
 
  border: 2px solid #333;
  padding: 8px 10px; 
  margin-top: 5px; 
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
	
	.character-info h2{
	font-weight: 700;
	letter-spacing: 1px;
		font-size: 95%;
}

	.modal-description {
  font-size: 13px;
  margin-top: 0px;
  max-height: 700px;
    letter-spacing: 0.1px;
}

	
.modal-content {
  background-color: white;
  border-radius: 10px;
  padding: 20px; 
	padding-left: -5%;
  /*width: 90%; 
  max-width: 700px; */
  margin: auto;
  margin-top: 50px;
  display:block;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  position: relative;

	/*  width: 90%; */
  max-width: 60%; 

 
}
	
	
}


    

.nm{
	font-family: 'ADLaM Display', sans-serif; 

}



.gl{
	font-size: 1px;
	color:#191919;
}



.modal-description::-webkit-scrollbar {
    width: 8px;
	
}

.modal-description::-webkit-scrollbar-thumb {
    background-color: #474747; 
    border-radius: 6px; 
}

.modal-description::-webkit-scrollbar-track {
    background-color:#191919; 
    border-radius: 6px;
}

.modal-description::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
}


body::-webkit-scrollbar {
    width:10px;
	height:10px;
	
}

body::-webkit-scrollbar-thumb {
    background-color: #881E1F; 
    border-radius: 6px; 
}

body::-webkit-scrollbar-track {
    background-color:#191919; 
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #a11515; 
}


/**/

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  color: #fff;

  background-color: #191919;
	font-weight: 550;
	margin-top: 50px;
  padding: 20px 0;
  font-size: 14px;
  
}



.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding: 0 5px;
}

.footer-text-left, 
.footer-text-right {
  display: inline-block;
  margin: 0 20px; /* Adjust margin as needed for spacing */
}

.footer-line {
  border-top: 1px solid #fff;
  margin: 10px;
 
    width: 1px;
    height: 30px;
    background-color: white;
    
 
}

.fb {
  text-decoration: none;
  color: #fff;
}

.fb i {
  font-size: 20px;
}

.fb{
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.c{
	
	font-size: 14px;
	/*font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";*/
	
}
.t{
	font-size: 1.1rem;
	letter-spacing: 0.7px;
	font-family: 'Rubik Burned', sans-serif;
	
}

.wb{
  font-family: cursive;
}
.wb2{
  font-family: 'Rubik Burned', sans-serif;
  font-size: 1.1rem;
}

a{
  text-decoration: none;
  color: white;
}