@font-face {
	font-family: 'SkullBones';
	src: url('fonts/SkullBones-Bold.otf') format('opentype');
	font-style: normal;
}

/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'SkullBones', Arial, sans-serif;
	background-color: #f0f0f0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: #1769ff;
	padding: 20px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 5%;
}

.logo img {
	height: 80px;
}

.nav-links {
	display: flex;
	justify-content: space-around;
	width: 40%;
}

.nav-links li {
	list-style: none;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 18px;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px;
	transition: all 0.3s ease;
}

/* Hero Section Styles */
#hero {
  background-image: url('https://www.wastedapes.xyz/wastedbanner.jpg');
  background-size: cover;
  background-position: center;
  height: 858px;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding-bottom: 610px;
}

.coinmarketcap-widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 24px;
	margin-bottom: 40px;
}

.cta-button {
	display: inline-block;
	background-color: #1769ff;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 20px;
	border-radius: 5px;
}

/* About Section Styles */
#about {
	padding: 80px 0;
	background-image: url('https://www.wastedapes.xyz/banner2.jpg');
	background-size: cover;
	background-position: center;
}

.about-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about-text {
	flex-basis: 50%;
}

.about-image {
	flex-basis: 40%;
}

.image-slider-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
  }
  
  .image-slider {
	position: relative;
	width: 100%;
	height: 500px; /* Adjust the height as needed */
	overflow: hidden;
  }
  
  .image-slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
  }
  
  .image-slider img.active {
	opacity: 1;
  }
  
  .image-slider-nav {
	display: flex;
	justify-content: center;
	margin-top: 10px;
  }
  
  .nav-item {
	width: 50px;
	height: 50px;
	background-size: cover;
	background-position: center;
	margin: 0 5px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s ease-in-out;
  }
  
  .nav-item:hover {
	opacity: 1;
  }
  
  .nav-item.active {
	opacity: 1;
	transform: scale(1.2);
  }

/* Contract Section Styles */
#contract {
	background-color: #1769ff;
	padding: 40px 0;
	color: white;
	text-align: center;
}

.contract-address {
	font-size: 15px;
	font-weight: bold;
	margin-top: 20px;
}

/* Tokenomics Section Styles */
#tokenomics {
	padding: 80px 0;
	background-image: url('https://www.wastedapes.xyz/bannerwasted.jpg');
	background-size: cover;
	background-position: center;
	height: 858px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tokenomics-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.token-distribution {
	flex-basis: 50%;
}

.token-distribution h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.token-distribution ul {
	list-style: none;
	margin-top: 20px;
}

.token-distribution li {
	font-size: 10px;
	margin-bottom: 10px;
}

.pie-chart {
	flex-basis: 40%;
}

/* FAQ Section Styles */
#faq {
	background-image: url('https://www.wastedapes.xyz/banner1.jpg');
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	color: #ffffff;
}

.faq-item {
	margin-bottom: 40px;
}

.faq-item h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.faq-item p {
	font-size: 12px;
}

/* Footer Styles */
footer {
	background-color: #333;
	color: white;
	padding: 20px 0;
	text-align: center;
}

/* Media Queries */
@media screen and (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.burger {
		display: block;
	}

	.nav-active {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		position: absolute;
		top: 80px;
		left: 0;
		background-color: #1769ff;
		padding: 20px;
	}

	.nav-active li {
		margin-bottom: 20px;
	}

	.about-content {
		flex-direction: column;
	}

	.about-text, .about-image {
		flex-basis: 100%;
		margin-bottom: 40px;
	}
}