<style type="text/css">
/* Copyright: Ron Mazier */
 
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --primary-color: 		#ffffff;
    --secondary-color: 		#ccffff;
    --accent-color: 		#E63946;
	--nav-color: 			#FFD700; /* Gold*/ 

    --text-color: 			black;
    --hover-border-color: rgba(0, 0, 0, 1);
    --hover-shadow-color: rgba(0, 0, 0, 0.5);
    --border-color: rgba(0, 0, 0, 0.5);
    --input-bg-color: #ffefef;
    --values-color: blue;
}


/**** Body *********************/
	body {
		margin: 0px;
		padding: 0px;
        }
	#all {
		background-color: 	#FAF9F6;
		width:				100%;
		margin-left:		auto;
		margin-right: 		auto;
		margin-top: 		0px;
		margin-bottom: 		0px;
		padding: 			0px;
		text-align:			center;
		font-family: 		Lato;
	}
	video {
		width: 300px;}	
 header h1 {

		font-family: 'Pacifico', sans-serif;
 }

h1,h2,h3 {
        margin-left: auto;
        margin-right: auto;
        text-align:center;
		width:100%;
}
 
/**** Header *******************/

#header { 
    display: 			flex;
    justify-content: 	space-between;
    align-items: 		center;
	flex-wrap:			wrap;
    background-size: 	cover;
    background-position: center;
    background-repeat: 	no-repeat;
    border: 0;
    border-bottom: 5px solid var(--accent-color);
    margin: 0;
    padding: 0;
    width: 100%;
	background-image: 	url(bg_bridge2.png); 
		background-size: 	100% 100%;
		background-position: center;
		background-repeat: no-repeat;

} 

#header #logo-container,
#header #header-title,
#header #top-right {
    flex: 1;
    text-align: center;
}

#header img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    object-fit: cover;
}

@media screen and (max-width:600px) {
    #header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #header img {
        height: 60px;
        width: 60px;
    }
}

/**** Navbar ****/
#navbar {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--nav-color);
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}
#nav {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
#nav li {
    margin: 0 10px; /* Add spacing between links */
	text-align:center;
}

.fdl {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fdl li {
    position: relative;
    padding-left: 25px; /* Space for the fleur-de-lis */
    margin-bottom: 10px; /* Add spacing between items */
}
.fdl li::before {
    content: '\269C'; /* Unicode for fleur-de-lis */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px; /* Adjust size */
    color: #008080; /* Customize color */
}
#nav li a {
    font-size: 14px; /* Smaller font size */
    padding: 5px 10px; /* Reduce padding */
    border-radius: 4px; /* Rounded edges for softer appearance */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
    color: #28334A;
	text-decoration: none;
	text-align:center;
}
#nav li:hover > ul {
    visibility: visible;
    opacity: 1;
}
#nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: rgba(255, 200, 255, 0.5);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
}
#nav li a:hover {
    background-color: #EEEEEE; /* Subtle hover effect */
    color: #333333; /* Slightly darker text on hover */
}

@media screen and (max-width: 600px) {
    #nav {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    #nav li {
        margin: 5px 0;
    }
}
/* END: Nav bar */
 
/**** Wrap **********************/
	#wrap		{
			box-sizing:		border-box;
			width: 			100%;
			margin: 		0px;
			padding:		20px;
			border: 		0px;
			display:		block;
			color: 			#333333;
		}
	#content	{
			box-sizing:		border-box;
			max-width: 			1000px;
			margin: 		0px;
			padding:		0px; 
			border: 		0px;
			display:		block;
			margin-left: 	auto;
			margin-right: 	auto;
		}
	#homepage	{
			box-sizing:		border-box;
			width: 			100%;
			background: 	transparent;
			float: 			none;
			clear: 			both;
			display:		inline-block;
			padding: 		20px;
			margin-left: 	auto;
			margin-right: 	auto;
			min-height:		500px;
			font-family:	Lato;
		}

/**** Footer *******************/
/* Footer Styling */
#footer {
    background-color: #FAF9F6;
    border-top: 5px solid #008080;
    border-left: 5px solid #008080;
    border-right: 5px solid #008080;
    border-bottom: 5px solid #28334A;
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
    font-family: "Arial", sans-serif;
    color: #333333;
}

.footer-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-images img {
    width: 60px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.footer-images img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555555;
} 

.footer-text p {
    margin: 0 0 10px;
}

.footer-bottom {
    font-size: 12px;
    color: #888888;
}

.footer-bottom a {
    color: #008080;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-bottom a:hover {
    color: #005959;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-images img {
        width: 50px;
    }

    #footer {
        padding: 20px 10px;
    }
}


/**** BUTTONS and HTML ELEMENTS ****/
	a:hover {
		text-decoration: underline;
	}

	input {
		border-radius: 		5px;
		padding:			5px;
		height:				32px;
		font-size:			16pt;
		margin: 		 	5px;
		width: 		  	100%;
		max-width:  	112px;
	}
	input[type="button"], input[type="submit"] {
		box-sizing:		border-box;
		display:		in-line;
		margin-left: 	auto;
		margin-right: 	auto; 
		word-wrap: 		normal;
		white-space: 	normal;
		border:			1px;
		transition: 	width 2s;
		transition-timing-function: linear;
		text-align: 	center;
		background-color: rgba(255, 165, 0, 1);
		box-shadow: 	1px 2px 4px rgba(0,0,0,0.6);
	}
	
	input[type="button"]:hover,	input[type="submit"]:hover {
		text-decoration: underline;
		box-shadow: 	2px 2px 2px rgba(0,0,0,0.6);
		transform: 		translateY(-1px);
		background-color: 	rgba(255, 165, 0, 0.9);
		}

	.iw	{
		border-radius: 	100px;
		float:			left;
		height: 		200px;
		margin: 		20px;
		width: 			200px;
	}
	.ix	{
		border-radius: 	8px;
		float:			left;
		height: 		100px;
		margin: 		20px;
		width: 			100px;
	}
	.imright	{
		border-radius: 	100px;
		float:			right;
		height: 		200px;
		margin: 		20px;
		width: 			200px;
	}

	@media screen and (max-width:900px)	{
	.iw	{
		border-radius: 	50px;
		height: 		100px;
		width: 			100px;
	}
	.imright	{
		border-radius: 	50px;
		height: 		100px;
		width: 			100px;
	}
		}




	textarea {
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 5px;
		margin-right:auto;
		margin-left:auto;
		background-color: #f8f8f8;
	}


#gameCanvas {
        border: 2px solid black; /* Add a black border of 2px */
        display: block; /* Ensure proper alignment and spacing */
        margin: 20px auto; /* Center it with margin */
    }

/* Table Properties ******************/
	table {
        margin-left: auto;
        margin-right: auto;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		}

	table tr {
        min-height: 32px;
		}

	th {
		background-color: rgb(60,190,255,0.5);
		text-align: center;
		font-size:	120%;
		font-weight:	bold;
		border-bottom: 1px solid white;
		padding:	10px;
		}
	tr:nth-child(even) {background-color: rgba(60,190,255,0.2)}
	
	td {
		padding: 5px;
	}

	form .inputer {text-align:center;} 
	.button:active {
			box-shadow: 	1px 1px rgba(0,0,0,0.6);
			transform: 		translateY(2px);
	}
	#HomeButton {
		float: right;
		position:absolute;
		top:100;
		left:200;
		}
	form {
		margin: 0px;
		border: 0px;
		padding: 0px;
		}
	video {
		width: 300px;
		}	

/*** LoginBox	********************/
	#LoginBox		{
		box-sizing:		border-box;
		display: 		none;
		text-align:		center;
		float: 			right;
		padding: 		30px;
		margin: 		0px;
		clear:			both;
		width:			300px;
		border: 		1px solid rgba(90,90,90,0.4);
		background-color: rgba(90,90,90,0.2);
		z-index: 		+1;
		position: 		fixed;
		top:			10px;
		right:			10px;
	    box-shadow: 	8px 8px 10px rgba(90,90,90,0.4);
		}
	#LoginBox input {	
		margin-left: 	auto;
		margin-right: 	auto;
		width:			100%;
		clear:			both;
		}
	#LoginBox a {	
		z-index: 		+1;
		position:		absolute;
		top:			3px;
		right:			3px;
		float:			right;
		color: 			white;
		font-weight: 	bold;
		font-size: 	150%;
		}
/* CRM **/ 
	#CRMBox {
		text-align: left;
	}
 

/*** bbox ***/
.bbox {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin: 15px auto;
    padding: 20px;
    max-width: 1024px;
    width: 100%;
    gap: 20px; /* Add spacing between elements */
}

.bbox:hover {
    border: 1px solid var(--hover-border-color);
    box-shadow: 1px 1px 2px 2px var(--hover-shadow-color);
    transition: box-shadow 0.3s ease-in-out;
}

.bbox .cell {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    justify-content: space-around;
    text-align: left;
    flex: 1 1 auto; /* Flexible width */
    min-width: 150px; /* Prevent shrinking */
}

.bbox .img {
    flex: 1 1 auto; /* Flexible width */
    max-width: 300px;
    padding: 20px;
    min-width: 150px; /* Prevent shrinking */
}

.bbox .img img {
    width: 100%; /* Responsive image scaling */
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bbox {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }
    .bbox .img, .bbox .cell {
        max-width: 100%; /* Full width on smaller screens */
    }
    .bbox .cell {
        padding: 10px;
    }
}

.card {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 15px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.card .card-text {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.panel {
    background-color: var(--secondary-color);
    border-left: 5px solid var(--accent-color);
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
}

.panel p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.panel a {
    font-size: 1rem;
    color: var(--values-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.panel a:hover {
    color: var(--hover-border-color);
}

.notification {
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.notification.warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 5px solid #ffc107;
}

.notification .icon {
    font-size: 1.5rem;
}


.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: var(--values-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--hover-border-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}



.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.grid-item {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.grid-item img {
	max-height:300px;
	max-width:100%;


}
.grid-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.hero {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.hero .btn {
    margin-top: 10px;
}





/* Parade Game Section */
#parade-game-section {
    background-color: #FFF7E6; /* Light, festive background */
    border: 2px solid #FFB400; /* Bright border to match a parade theme */
    border-radius: 12px;
    margin: 30px auto;
    padding: 30px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.parade-game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.parade-game-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parade-game-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.parade-game-text {
    text-align: center;
}

.parade-game-text h2 {
    font-family: "Playfair Display", serif;
    color: #FF5733;
    font-size: 24px;
    margin-bottom: 10px;
}

.parade-game-text p {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.parade-game-button {
    display: inline-block;
    background-color: #FF5733;
    color: #FFFFFF;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.parade-game-button:hover {
    background-color: #E14D2A;
    transform: translateY(-3px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .parade-game-content {
        flex-direction: column;
    }
    
    .parade-game-image {
        max-width: 250px;
    }
}



/* YouTube Section */
#youtube-section {
    background-color: #F9F9F9;
    padding: 30px;
    text-align: center;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

.youtube-header h2 {
    color: #E63946;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.youtube-header p {
    color: #555555;
    font-size: 16px;
    margin-bottom: 20px;
}

.youtube-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.youtube-thumbnail {
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.youtube-thumbnail:hover {
    transform: scale(1.05);
}

.youtube-description {
    text-align: center;
    margin-top: 20px;
}

.youtube-description p {
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.subscribe-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #E63946;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.5s ease;
}

.subscribe-button:hover {
    background-color: #D62839;
}



/* Copyright: Ron Mazier */
</style>