/* General Reset */
* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Roboto', sans-serif; /* Choose a simple retro-like font */
	}
	
	/* Body Styling */
	body {
		background-color: #F5F1E1; /* Cream background for neutrality */
		color: #3A3A3A; /* Dark neutral for text readability */
		font-size: 16px;
		line-height: 1.5;
		height: 100%; /* Ensure the height of the html and body is 100% */
		/* text-transform: lowercase; */
	}
	
	#root {
		display: flex;
		flex-direction: column;
		min-height: 100%; /* Allow the root container to fill the viewport height */
	}

	.main-content {
		flex: 1; /* Takes up remaining space, pushes the footer down */
  	}

	/* Headings */
	h1, h2, h3, h4, h5, h6 {
		color: #D35400; /* Burnt orange for bold, warm headers */
		font-family: 'Oswald', sans-serif; /* Retro geometric font */
		margin-bottom: 0.5em;
		text-align: center;
	}
	
	h1 { 
		font-size: 2.5rem; 
		text-align: center;  
	}
	h2 { font-size: 2rem; }
	h3 { font-size: 1.75rem; }
	h4 { font-size: 1.5rem; }
	h5 { font-size: 1.25rem; }
	h6 { font-size: 1rem; }
	
	/* Paragraphs and Text */
	p {
		margin-bottom: 1em;
		color: #3A3A3A;
		text-align: center;
	}
	
	p.error {
		color: #D35400;
		border-left: 1px solid #D35400;
		border-bottom: 1px solid #D35400;
		border-bottom-left-radius: 10px;
		padding: 8px;
	}

	a {
		color: #17c7c5; /* Teal for links */
		text-decoration: none;
		font-weight: bold;
	}
	
	a:hover {
		color: #FF9900; /* Goldenrod for hover effect */
		text-decoration: underline;
	}
	
	/* Buttons */
	button {
		background-color: #F5F1E1; /* Goldenrod */
		padding: 10px 20px;
		border-radius: 5px;
		cursor: pointer;
		font-weight: bold;
		text-transform: lowercase;
		border-top-right-radius: 2px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 5px;
		border-top-left-radius: 1px;
		border-left: 5px solid #D35400;
		border-bottom: 1px solid #FF9900;
		border-top: 2px solid #001F54;
		border-right: 3px solid #17c7c5;
		margin-right: 20px; 
	}
	
	button:hover {
		background-color: #FFFFFF; /* Burnt orange */
	}
	
	/* Navigation */
	nav {
		background-color: #F5F1E1; /* Deep brown */ 	 
		display: flex;
		justify-content: space-around;
		padding: 10px 0;
	}
	
	nav ul {
		list-style: none;
		display: flex;
		justify-content: center;
		gap: 15px;
	}

	nav a {
		color: #4a362a;
		/* text-transform: uppercase; */
		font-size: 1rem;
		padding: 10px;
		margin-bottom: 1em;
		/* border-top-right-radius: 2px;
		border-bottom-left-radius: 3px;
		border-bottom-right-radius: 5px;
		border-top-left-radius: 1px;
		border-left: 5px solid #D35400;
		border-bottom: 1px solid #FF9900;
		border-top: 2px solid #001F54;
		border-right: 3px solid #17c7c5; 	 
		background-color: #F5F1E1;  */
				/* border: 2px solid;
		border-image: linear-gradient(to right, #D35400, #FF9900, #17c7c5) 1; 	 
		background-color: #F5F1E1; */
		/* box-shadow: 10px 10px 40px #3A3A3A; 		*/
    background-color: #fff;
    /* border: 1px solid #ddd;
    border-radius: 8px; */
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
      border-left: 3px solid #D35400;
      /* border-bottom: 5px solid #FF9900;
      border-top: 2px solid #001F54; */
      border-right: 5px solid #17c7c5;
	}
	
	nav a:hover {
		text-decoration: none;
		color: #FF9900;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Slight hover effect */
	}
	
	/* Forms */
	form {
		background-color: #FFFFFF;
		/* padding: 20px; */
		border-top-left-radius: 20px;
		border-bottom-right-radius: 30px;
		border-bottom-left-radius: 50px;
		border-top-right-radius: 10px;
		/* border-left: 10px solid #D35400;
		border-bottom: 5px solid #FF9900;
		border-top: 2px solid #001F54;
		border-right: 15px solid #17c7c5; 	  */
		/* border: 10px solid; */
		/* border-image: linear-gradient(to right, #D35400, #FF9900, #17c7c5) 1; 		*/
		max-width: 400px;
		margin: 40px auto;
		padding: 30px;
		/* border-radius: 20px; */
		box-shadow: 10px 10px 40px #3A3A3A;
		font-family: 'Roboto', sans-serif; 	 
    /* float: left; */
	    margin-left: 30px;
		margin-right: 30px;
		border: 5px solid #D35400;
	}
	
  form.filter-form {
    float: right;
    margin-right: 30px;
  }

  .form-holder {
    background-image: url('./../public/form_background.png'); /* Add your image URL */
    /* background-size: cover; /* Scale image to cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Avoid repeating the image */
    overflow: hidden; /* Clears the float */
    /* filter: blur(5px) brightness(0.8) grayscale(50%); */
  }

  .form-div {
	background-color: #FFFFFF;
	/* padding: 20px; */
	border-top-left-radius: 20px;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 50px;
	border-top-right-radius: 10px;
	/* border-left: 10px solid #D35400;
	border-bottom: 5px solid #FF9900;
	border-top: 2px solid #001F54;
	border-right: 15px solid #17c7c5; 	  */
	/* border: 10px solid; */
	/* border-image: linear-gradient(to right, #D35400, #FF9900, #17c7c5) 1; 		*/
	/* max-width: 400px; */
	/* margin: 40px auto; */
	padding: 30px;
	/* border-radius: 20px; */
	box-shadow: 10px 10px 40px #3A3A3A;
	font-family: 'Roboto', sans-serif; 	 
/* float: left; */
	/* margin-left: 30px;
	margin-right: 30px; */
	border: 5px solid #D35400;	
  }

	input, textarea, select {
		width: 100%;
		padding: 10px;
		margin-bottom: 1em;
		/* border: 1px solid #D35400;
		border-radius: 5px; */
		border-top-right-radius: 30px;
		border-bottom-left-radius: 10px;
		/* border-bottom-right-radius: 5px; */
		/* border-top-left-radius: 1px; */
		border-left: 5px solid #D35400;
		border-bottom: 1px solid #FF9900;
		border-top: 2px solid #001F54;
		border-right: 3px solid #17c7c5; 	 
		background-color: #F5F1E1; 
		/* height: 40px; */
	}
	
	input::placeholder {
		/* text-transform: lowercase; */
	}

	input[type="submit"] {
		background-color: #FFFFFF;
		color: white;
		border: none;
		cursor: pointer;
	}
	
	input[type="submit"]:hover {
		background-color: #FFFFFF;
	}
	
	input[type="checkbox"] {
		width:20%;
	}

	/* Tables */
	table {
		width: 100%;
		border-collapse: collapse;
		margin-bottom: 1em;
	}
	
	th, td {
		border: 1px solid #D35400;
		padding: 10px;
		text-align: left;
	}
	
	th {
		background-color: #FFFFFF;
		color: white;
	}
	
	tr:nth-child(even) {
		background-color: #FFFFFF;
	}
	
	/* Footer */
	footer {
		background-color: #FFFFFF;
		color: #F5F1E1;
		padding: 10px;
		text-align: center;
		position: relative; /* Normal positioning to allow flexbox to handle layout */
		width: 100%;
		box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional styling */
		margin-top: 100px;
	}
	
	/* List Styling */
	ul, ol {
		margin-left: 20px;
	}
	
	li {
		margin-bottom: 0.5em;
	}
	
	/* Special Retro Elements */
	.header-banner {
		background: linear-gradient(45deg, #D35400, #FF9900);
		color: white;
		padding: 20px;
		text-align: center;
		font-size: 1.5rem;
		font-weight: bold;
	}
	
	.card {
		background-color: #FFFFFF;
		border: 1px solid #D35400;
		border-radius: 5px;
		padding: 20px;
		margin: 10px;
	}
	
	.card:hover {
		background-color: #FFFFFF;
		color: white;
	}
	
	/* Grid Layout for Retro Patterns */
	.grid-container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}
	
	.grid-item {
		background-color: #FFFFFF;
		padding: 20px;
		color: white;
		text-align: center;
		border-radius: 10px;
	}

/**
HEADER.JS
*/
	/* General Header Styling */
.app-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	color: white;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-image {
		width: 100px; /* Adjust the size as needed */
		height: auto; /* Maintain aspect ratio */
		border-radius: 9px; /* Optional: Add rounded corners for a retro look */
    border: 5px solid #D35400;  
	}

/* Navigation Menu */
.nav {
	display: flex;
	gap: 20px;
}

.nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.nav ul li a {
	text-decoration: none;
	font-weight: bold;
}

.nav ul li a:hover {
	text-decoration: none;
}

/* Responsive Burger Menu */
.burger-menu {
	display: none; /* Hidden by default */
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.burger-menu {
		display: block; /* Show burger menu on smaller screens */
	}

	.nav {
		display: none; /* Hide nav menu by default */
		flex-direction: column;
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%; /* Full-width for mobile menu */
		padding: 20px;
		gap: 10px;
		border-top: 1px solid #fff;
	}

	.nav.open {
		display: flex; /* Show menu when burger is clicked */
	}

	.nav ul {
		flex-direction: column;
		gap: 10px;
	}

	.nav ul li a {
		font-size: 1.2rem; /* Larger text for mobile */ 	 
	}
}

.blurred {
	filter: blur(100px);
	pointer-events: none;
  }