@font-face {
	font-family: "custom";
	src: url("./fonts/TOP\ GUN.ttf");
	font-weight: normal;
}

/* @import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rock+Salt&family=Sniglet:wght@400;800&display=swap"); */

:root {
	--primary-color: #64b435;
	--primary-color-hover: #aafc7b;
	--text-color: black;
}

html {
	scroll-behavior: smooth;
}

/* Reset some default browser styles */
body,
h1,
h2,
h3,
h4,
p,
ul,
li {
	margin: 0;
	padding: 0;
}

a {
	font-weight: 600;
}

p {
	font-weight: 500;
}

a,
button,
input,
textarea {
	cursor: url("../images/cursor-hover.png"), auto !important;
}

body {
	font-family: "custom", sans-serif;
	margin: 0 auto;
	max-width: 1300px;
	padding: 0 2rem;
	overflow-x: hidden;
	cursor: url("../images/cursor.png"), auto !important;
	background-color: #d4ffc3;
	/* background-image: url(../images/back.png); */
}

/* Animations */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

/* Classes styles */
.hidden {
	opacity: 0;
	filter: blur(5px);
	transform: translateY(-100%);
	transition: all 1s;
	transition-delay: 0.1s;
}

.show {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

/* Component styles */
.button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #8ad55f;
	color: var(--text-color);
	padding: 0.5rem 1.5rem;
	font-size: 1.5rem;
	text-decoration: none;
	border-radius: 20px;
	border: 5px solid black;
	transition: 0.3s ease;
}

.button:hover {
	color: var(--text-color);
	background-color: var(--primary-color-hover);
	transform: scale(1.1) rotate(3deg);
}

.mute-button {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: var(--text-color);
	padding: 0.5rem;
	text-decoration: none;
	border-radius: 0.75rem;
	border: none;
	transition: background-color 0.3s ease;
	animation: pulse 2s infinite;
}

.mute-button:hover {
	background-color: var(--primary-color-hover);
}

.mute-image {
	width: 2rem;
	height: auto;
}

/* Navbar styles */
nav {
	color: var(--text-color);
	padding: 2rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav img {
	height: 7rem;
	width: auto;
}

nav ul {
	list-style-type: none;
	padding: 0;
	display: flex;
	gap: 1rem;
	justify-content: space-around;
}

nav a {
	color: var(--text-color);
	font-weight: bold;
	text-decoration: none;
}

nav a:hover {
	color: var(--primary-color);
}

.copied-popup {
	position: fixed;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-color);
	color: black;
	border: 5px solid black;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 2rem;
	opacity: 0;
	transition: opacity 0.3s, bottom 0.3s;
	z-index: 1000;
}

.copied-popup.show {
	opacity: 1;
	bottom: 70px;
}

#address {
	background-color: #e7ffde;
	font-size: 2rem;
	color: black;
	display: flex;
	padding: 10px 30px;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	border: 10px solid var(--primary-color);
	transition: transform 0.2s ease-in-out;
}

#address::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url("../images/copy.svg");
	background-size: cover;
	margin-right: 20px;
	vertical-align: middle;
}

#address:hover {
	transform: scale(1.1);
}

.navbar-buttons {
	display: flex;
	gap: 0.75rem;
}

#dex {
	position: absolute;
	top: 40%;
	right: 2%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#dex img {
	width: 75px;
	height: 75px;
	transition: transform 0.2s ease-in-out;
}

#dex img:hover {
	transform: scale(1.1) rotate(10deg);
}

/* Section styles */
section {
	padding: 5rem;
	margin-bottom: 5rem;
}

/* Hero styles */
#hero {
	display: flex;
	align-items: center;
	height: 50vh;
	margin-bottom: 5rem;
	background-image: url(../images/background.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	justify-content: center;
	align-items: center;
}

.hero-image {
	flex: 1;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}

.hero-image img {
	width: 500px;
	height: auto;
	animation: bounce 2s infinite;
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
}

.hero-content h1 {
	color: #8ad55f;
	font-size: 10rem;
	-webkit-text-stroke: 3px black; /* For WebKit browsers */
	text-shadow: 3px 3px black; /* Shadow for a border effect */
}

.hero-content p {
	color: var(--primary-color);
}

.hero-buttons {
	display: flex;
	gap: 2rem;
}

.social-button img {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background-color: #8ad55f;
	border: 5px solid black;
	padding: 0.5rem;
	transition: 0.3s ease;
}

.social-button img:hover {
	background-color: var(--primary-color-hover);
	transform: scale(1.1) rotate(-4deg);
}

/* About styles */
#about {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
	color: var(--primary-color);
}

.brand-icons {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.brand-icons img {
	width: 100px; /* Adjust as needed */
	height: auto;
}

/* Buy styles */
#buy {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: var(--primary-color);
}

#buy h1 {
	font-size: 4rem;
}

.card-container {
	display: flex;
	justify-content: space-around;
	gap: 2rem;
	width: 100%;
	margin-top: 1rem;
}

.card {
	padding: 2rem;
	width: 100%;
}

.card h2 {
	margin: 1rem 0;
}

.card img {
	width: 10rem;
	height: auto;
}

/* Info Section */
#info {
	position: relative;
	text-align: center;
	background-color: #e7ffde;
	border: 15px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 2rem;
}

#info a {
	font-size: 1.7rem;
	text-decoration: none;
	color: black;
	background-color: var(--primary-color);
	padding: 20px;
	border: 6px solid black;
	border-radius: 20px;
	transition: 0.3s ease;
}

#info a:hover {
	transform: scale(1.1) rotate(-4deg);
	background-color: var(--primary-color-hover);
}

#info h1 {
	font-size: 3.5rem;
}

#info h2 {
	margin-bottom: 50px;
}

#dexscreener-embed {
	border-radius: 20px;
	border: 15px solid #64b435;
	position: relative;
	padding-bottom: 125%;
}
@media (min-width: 1400px) {
	#dexscreener-embed {
		padding-bottom: 65%;
	}
}
#dexscreener-embed iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0;
}

#community-art {
	text-align: center;
	padding: 75px 0;
	background-color: #e7ffde;
	overflow: hidden; /* Prevent horizontal scrolling */
	width: 100vw;
	margin-left: calc((100% - 100vw) / 2);
}
#community-art h1 {
	font-size: 3.5rem;
}

.art-container {
	overflow: hidden; /* Prevent horizontal scrolling */
}
.art-row {
	display: flex;
	justify-content: center;
	margin: 20px 0;
	animation-duration: 40s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.art-row img {
	width: auto;
	height: 200px;
	margin: 0 10px;
}
#art-row-1 {
	animation-name: pan-left-to-right;
}
#art-row-2 {
	animation-name: pan-right-to-left;
}
@keyframes pan-left-to-right {
	0% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes pan-right-to-left {
	0% {
		transform: translateX(100%);
	}
	50% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.content-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin: 5rem 0;
}

.image-content {
	flex: 1;
}

.image-content img {
	width: 100%;
	height: auto;
	border-radius: 2rem;
}

.text-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: start;
}

.text-content h2 {
	font-size: 2rem;
}

.text-content p {
	margin: 1rem 0;
}

/* Tokenomics Section */
#tokenomics {
	background-color: var(--primary-color);
	background-image: url(../images/back.png);
	background-size: contain;
	color: white;
	border-radius: 2rem;
	position: relative;
}

.stats-content {
	gap: 1rem;
	width: 50%;
	margin-bottom: 2rem;
}

.stats-content h1 {
	font-size: 3.5rem;
}

.stats-row h2 {
	font-size: 3rem;
}

.stats-row {
	display: flex;
	gap: 2rem;
	width: 30%;
	margin-bottom: 2rem;
}

.tokenomics-button {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background-color: white;
	color: var(--primary-color);
	padding: 0.5rem 1.5rem;
	text-decoration: none;
	border-radius: 0.75rem;
	transition: background-color 0.3s ease;
}

.tokenomics-button:hover {
	background-color: rgba(255, 243, 243, 0.7);
}

#tokenomics img {
	border-radius: 2rem;
	position: absolute;
	height: auto;
	width: 30rem;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#mute-button {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	padding: 15px;
	background-color: #64b435;
	color: black;
	border: 4px solid black;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	border-radius: 20px;
	margin-top: 2rem;
	animation: bounce 2s infinite;
}

#mute-image {
	width: 30px;
	height: auto;
}

#mute-button:hover {
	transform: scale(1.1);
}

/* Video styles */

#info video {
	width: 95%;
	border-radius: 20px;
	border: 10px solid var(--primary-color);
	margin-bottom: 50px;
}

/* Gif styles */
.gif-background {
	position: absolute;
	left: 0;
	right: 0;
	background: url("media/background.gif") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	max-width: none;
	padding: 0;
	height: 55vh;
	z-index: -1;
	transform: translateY(-65vh);
}

/* Footer styles */
footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5rem 0;
}

.footer-left,
.footer-right {
	display: flex;
	align-items: center;
}

.footer-left nav ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	margin: 0 2rem;
}

.footer-left a {
	color: var(--primary-color);
}

.footer-left a:hover {
	color: var(--primary-color-hover);
}

.footer-left img {
	height: 3rem;
	width: auto;
}

.footer-right a {
	margin-left: 1rem;
}

.footer-right img {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	padding: 0.5rem;
	transition: background-color 0.3s ease;
}

.footer-right img:hover {
	background-color: var(--primary-color-hover);
}

@media screen and (max-width: 1300px) {
	.hero-content h1 {
		font-size: 9rem;
	}
}

@media screen and (max-width: 1100px) {
	#tokenomics img {
		border-radius: 2rem;
		position: absolute;
		height: auto;
		width: 30rem;
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(90deg);
	}
	section {
		padding: 5rem 1rem;
	}

	#tokenomics img {
		display: none;
	}

	.card-container {
		flex-direction: column;
	}

	.card {
		padding: 0;
	}

	.content-row {
		flex-direction: column;
	}

	nav {
		flex-direction: column;
		gap: 1rem;
	}

	nav ul {
		display: none;
	}

	.footer-left nav ul {
		display: none;
	}

	.stats-content {
		width: 100%;
	}

	.stats-content h1 {
		font-size: 2em;
	}

	.stats-row h2 {
		font-size: 2rem;
	}

	#hero {
		flex-direction: column;
	}

	.hero-content h1 {
		font-size: 7rem;
		transform: translateY(-50%);
	}

	#hero img {
		width: 500px;
		height: auto;
	}

	#address {
		font-size: 1rem;
	}
}

@media screen and (max-width: 600px) {
	#hero img {
		width: 350px;
		height: auto;
	}

	.hero-content h1 {
		font-size: 5rem;
	}

	#hero {
		margin-bottom: 0;
	}

	#address {
		font-size: 1rem;
	}

	.button {
		font-size: 1.25rem;
	}

	.footer-left {
		display: none;
	}

	#community-art h1 {
		font-size: 2rem;
	}

	#dex {
		position: static; /* Treat as a normal div */
		top: auto; /* Reset top position */
		right: auto; /* Reset right position */
		margin: 0 auto; /* Center the div horizontally */
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-bottom: 15px;
	}

	#info a {
		font-size: 1rem;
	}
}

@media screen and (max-width: 400px) {
	.button {
		font-size: 1rem;
	}
}
