/* Base theme variables */
:root {
  --bg: #1a1a1a; /* Cod Grey */
  --text: #fff; /* White */
  --h1: #e3cc00; /* Corn */
  --h2: #e89f00; /* Orange Peel */
  --h3: #f8e273; /* Marigold Yellow */
  --sideNav: #222; /* Mine Shaft */
  --NavLink: #ccc; /* Silver */
  --activeNav: #222; /* Silver */
  --linkHover: #222;  /* Scorpion */
  --collapseHover: #575757; /* Scorpion */
  --nav: #000; /*  */
  --bottomBar: #000; /*  */
  --burgerBar: #fff; /* White */
  --active: #e89f00; /* Orange Peel */
  --hover: #e3cc00; /* Corn */
  --dangerButton: #d22828; /* Persian Red */
  --clickButton: #007823; /* Fun Green */
  --hoverButton: #337823; /* Forest Green */
  --highlight: #ffcc00; /* Supernova */
  --note: #999; /* Dusty Gray */
  --mainContainer: #f8e273; /* Marigold Yellow */
  --subContainer: #00f2ff; /* Aqua */
  --gradStart: #000; /* Black */
  --gradEnd: #1a1a1a; /* Cod Grey */
  --boxShadow: rgba(0, 0, 0, 0.5); /* Black with Alpha Adjust */
  --twitch: #9147ff; /* Electric Violet */
  --twitchHover: #772ce8; /* Purple Heart */
  --footerContent: " 2022 - 2025 aiFuzzBot. All Rights Reserved.";
  --header: #000;
  --gLink: #22f7de;
}

/* Light mode overrides */
.light {
  --bg: #fff;
  --text: #fff;
  /* you can reassign accents here if needed, e.g. dim them */
}

/* universal reset selector */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	font-family: Arial;
	color:  var(--text);
	margin: 0;
	padding: 0;
	background-color: var(--bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

nav {
	width: 100%;
	position: fixed;
	top: 0;	
	background-color: var(--nav);
	padding: 5px 0;
	text-align: center;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 10px; /* Add padding to the nav for spacing around the boxes */
	display: flex;
	justify-content: center;
}

nav ul li {
	margin: 0 15px;
}

nav ul li a.nav-item {
	text-decoration: none;
	color: var(--text);
	padding: 14px 5px;
	display: block;
	text-transform: uppercase;
	transition: color 0.3s, text-shadow 0.3s, background-color 0.3s;
	font-weight: 600;
	width: 220px; /* Fixed width for consistency */
	text-align: center;
	background-color: var(--bg); /* Background color of the box */
	border-radius: 8px; /* Rounded corners for the boxes */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Add a subtle shadow to the boxes */
}

nav ul li a.nav-item:hover {
	color: var(--active);
	background-color: var(--linkHover); /* Darker background on hover */
	text-shadow: 0 0 2px var(--active);
}

nav ul li a.nav-item.active {
	color: var(--active); /* Highlight color for active item */
	background-color: var(--activeNav); /* Different background for the active item */
	text-shadow: 0 0 2px var(--active);
	font-weight: 600;
}

textarea, select, input {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
}

.burger-menu {
	display: none;
	cursor: pointer;
	flex-direction: column;
	height: 30px;
	width: 100%;
	gap: 5px;
	margin-left:20px
}

.burger-menu .bar {
	width: 25px;
	height: 3px;
	background-color: var(--highlight);
}
		
.google-translate {
	font-size: 18px;
	position: absolute;
	top: 10px;
	right: 20px;
}

.header {
	padding: 20px;
	font-size: 18px;
	text-align: center;
	background-color: var(--header);
	color: var(--text);
	width: 100%;
	max-width:1160px;
	border-radius: 15px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
	margin-top: 110px;
}

.header p {
	font-size: 24px;
	margin-top: 10px;
}

.main-content {
	width: calc(100% - 210px);
	max-width: 1260px;
	padding: 20px;
	padding-top: 90px;
	display: flex;
	flex-direction: column;
}

.main-content h2 {
	color: var(--h2);
	font-size: 32px;
	margin-bottom: 20px;
	text-transform: uppercase;
	text-shadow: 0 0 5px var(--h2);
}

.container {
	background: linear-gradient(145deg, var(--gradStart), var(--gradEnd));
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
	max-width: 1160px;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

.cta {
	margin: 40px 0;
	text-align: center;
}

.cta a {
	color: var(--text);
	background-color: var(--clickButton);
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	border-radius: 5px;
	box-shadow: 0px 5px 10px rgba(60, 179, 113, 0.3);
}

.cta a:hover {
	background-color: var(--hoverButton);
	box-shadow: 0px 5px 10px rgba(60, 179, 113, 0.5);
}

a {
	color: var(--gLink);
}

h1 {
	color: var(--h1); /* light blue: 00f2ff, dark green: 007823, swamp green: 399469, forrest green: 749D3C, light green: C6DD00, Orange: E89F00, Mustard: E3CC00, cream: F8E273, ligter blue: 22F7DE  */
	font-size: 36px;
	margin-bottom: 5px;
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 2px var(--h1) /* light blue: F8E273 */
}

h2 {
	color: var(--h2);
	font-size: 28px;
	margin-top: 30px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-shadow: 0 0 2px var(--h2);
}

h3 {
	color: var(--h3);
	font-size: 22px;
	text-transform: uppercase;
	text-shadow: 0 0 3px var(--h3);
}

p, ul {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 15px;
}

ul {
	margin-left: 20px;
	list-style-type: disc;
}

.highlight {
	color: var(--highlight);
	font-weight: bold;
}

.note {
	font-size: 14px;
	color: var(--note);
	margin-top: 10px;
}

footer {
	width: 100%;
	background-color: var(--bottomBar);
	padding: 15px 0;
	text-align: center;
	box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
	margin-top: auto;
}

footer p {
	margin: 0;
	font-size: 16px;
	color: var(--text);
}

footer a {
	margin: 0;
	font-size: 12px;
	color: var(--gLink);
}

.copy p::after {
	content: var(--footerContent);
    color: var(--text);
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
	.container {
		flex-direction: column;
		align-items: center;
	}

	.column {
		width: 80%;
		margin-bottom: 20px;
	}

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: var(--nav);
    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a.nav-item {
        width: 100%;
    }
	
	.header {
		margin-top: 70px;
	}

/* Control Panel shared */
	.burger-menu {
		display: flex;
		margin-right: 50px;
		margin-top: 15px;
	}

	.main-content {
		margin-left: 0;
		width: 100%;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: var(--nav);
		position: absolute;
		left: 0;
		padding: 5px;
	}

	.nav-links.active {
		display: flex;
		width: 100%;
	}

	.nav-links li {
		padding: 5px 0;
	}
}