@charset "UTF-8";
/* CSS Document */

<style>
	body {
		font-family: 'league spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
		font-size: 18px;
	}
    :root {
        --fsi-bg-image: url(images/toss20-hero-bg.jpg);
        --fsi-min-height: 60vh;
        --fsi-padding: 2rem 1.5rem;
        --fsi-text-color: #ffffff;
        --fsi-overlay-color: rgba(0, 0, 0, 0.4);
        --fsi-cta-border-color: #ffffff;
		--bottom-bg: #233140;
		--bottom-text-color: #bdc3c7;
		--bottom-link-hover: #ffffff;
    }
/*
	h1,h2,h3,h4,h5,h6,p {
		font-family: 'league spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	}
	*/
	
	.header {
		background-color: #ffffff;	
	}
	div.logo {
		margin: 0 auto;
		text-align: center;
		max-width: 780px;
		width: 80%;
		height: auto;
		text-align: center;
		padding: 1%;
	}
	h2 {
		font-size: 1.8rem;
		text-align: center;
	}
    .fsi-hero {
        box-sizing: border-box;
        font-family: 'league spartan', Roboto, Helvetica, Arial, sans-serif;
        position: relative;
        width: 100%;
        min-height: var(--fsi-min-height);
        padding: var(--fsi-padding);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-image: var(--fsi-bg-image);
        background-attachment: fixed;
        background-size: cover;
        background-position: center bottom;
/*		background-repeat: no-repeat;*/
}
Use code with caution.
    }
    .fsi-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--fsi-overlay-color);
        z-index: 1;
    }
    .fsi-hero * {
         box-sizing: border-box;
    }
    .fsi-hero-content {
        position: relative;
        z-index: 2;
        max-width: 1600px;
    }
    .fsi-hero-title {
        color: var(--fsi-text-color);
        margin: 0 0 0.5rem 0;
        font-size: clamp(3rem, 8vw, 5.5rem);
        font-weight: 700;
        line-height: 1.1;
    }
    .fsi-hero-tagline {
        color: var(--fsi-text-color);
        margin: 0 0 2.5rem 0;
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 1px;
    }
    .fsi-hero-cta {
        display: inline-block;
        background: #d1060e;
        color: var(--fsi-text-color);
/*        border: 2px solid var(--fsi-cta-border-color);*/
        padding: 1.2rem 2rem 1rem;
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-transform: uppercase;
		letter-spacing: .0125em;
    }
/*
    .fsi-hero-cta:hover {
        background-color: var(--fsi-cta-border-color);
        color: #000000;
    }
*/
	
/* CARD SECTION */
.cards-section {
	 background: url(images/grass-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 3%;
}
	.intro {
		text-align: center;
		font-family: 'league spartan', Roboto, Helvetica, Arial, sans-serif;
	}
	div.intro h2 {
		margin: 1.5em 0 0;
		color: #fff;
		letter-spacing: .0125em;
	}
	div.intro p {
		font-size: 1.3rem;
		margin: 0;
		padding: 0;
	}
	
/* === Grid Container for the Cards === */
.cards-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem; /* Optional: provides spacing from the viewport edges */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
	margin: 0 auto;
	
}

/* === General Card Styles === */
.it-card-container {
    --it-card-padding: 1.5rem;
    --it-card-border-radius: 12px;
    --it-card-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
	background-color: #fff;
/*
	background: url(images/grass-bg.jpg);
	 Blends a 60% opaque white overlay over the image 
  background-color: rgba(0, 0, 0, 0.1); 
  background-blend-mode: darken; 
*/

/*    background: #f3f1d3;*/
    border-radius: var(--it-card-border-radius);
    overflow: hidden;
    box-shadow: var(--it-card-shadow);
    transition: transform 0.2s ease-in-out;
}

.it-card-container:hover {
    transform: translateY(-5px);
}

.it-card-container a.it-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* === Card Image === */
.it-card-container .it-card-image {
    width: 90%;
    height: auto;
/*    object-fit: cover;*/
    display: block;
	text-align: center;
	margin: 4% auto 0;
}

/* === Card Content === */
.it-card-container .it-card-content {
/*    padding: var(--it-card-padding);*/
	padding: 2.1em 1.5em 1.5em;
}
/*
div.it-card-content:first-child {
	margin-top: 20;
	border: red 1px solid;
}
*/
.it-card-content.junior {
	padding: 0em 1.5em 1.5em;
}

/*
.it-card-container .it-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
*/

.it-card-container .it-card-description {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
    color: #333; /* A muted gray */
}

/* === Optional "Read More" Button === */
.it-card-container .it-card-action {
    display: inline-block;
    background-color: #f3f4f6;
    color: #111827;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.it-card-container .it-card-action:hover {
    background-color: #e5e7eb;
}
	
@media (min-width: 768px) {
.cards-grid-container {
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
    max-width: 1280px;                      /* Caps the maximum grid width to 900px */
    margin: 4em auto;                        /* Centers the 900px grid on the webpage */
    padding: 0;                            /* Optional: clears mobile padding if desired */
  }
}
	
/* END CARD SECTION */

/* CONTACT SECTION START */

.contact {
		text-align: center;
/*		background-color: #f3f1d3;*/
		background-color: #fff;
		padding: 2%;
		margin: 0;
	}
	div.contact h2 {
		margin: .5em 0 .5em;
		color: #0504aa;
		letter-spacing: .0125em;
		font-weight: 800;
		font-family: 'league spartan', Roboto, Helvetica, Arial, sans-serif;
		font-size: 2.2rem;
	}
	div.contact p {
		font-size: 1.3rem;
		margin: 0;
		padding: 0;
		font-weight: 400;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
	}

/* CONTACT SECTION END */
	
	
/* FORM SECTION START */
	
/* A container to give the form context and center it */
.newsletter-form-outside-container {
    max-width: 100%;
    margin: 0px auto 0;
    padding: 30px;
    background: #d1061e; /* A red background for contrast */
	border-radius: 0;
}
.newsletter-form-container {
    max-width: 500px;
    font-family: sans-serif;
    color: white;
	margin: auto;
}
/*
.newsletter-form-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #2c3e50;  A dark background for contrast 
    border-radius: 8px;
    font-family: sans-serif;
    color: white;
}
*/
.newsletter-form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
	font-size: 2.2rem;
}
.newsletter-form-container p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    opacity: 0.8;
	color: #fff;
}

/* The form itself, using flexbox for alignment */
.newsletter-form {
    display: flex;
    justify-content: center;
}
.newsletter-form .form-group {
    flex-grow: 1; /* Allows the input to take up available space */
}

/* Style for the "screen-reader only" class to hide labels visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Input field styling */
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #7f8c8d;
    background-color: #ff	;
    color: #222;
    font-size: 1rem;
    border-radius: 4px 0 0 4px; /* Round left corners */
    box-sizing: border-box;
}
.newsletter-form input[type="email"]::placeholder {
    color: #95a5a6;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    z-index: 10;
    position: relative;
}

/* Submit button styling */
.newsletter-form .submit-btn {
    padding: 12px 20px;
    border: none;
    background-color: #00AEEF;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0; /* Round right corners */
    margin-left: -1px; /* Overlaps the input slightly for a joined look */
    transition: background-color 0.2s;
}
.newsletter-form .submit-btn:hover {
    background-color: #2980b9;
}
	
/* FORM SECTION END */
	
/* FOOTER SECTION START */
	
 /* Bottom bar section */
div.footer-newsletter__bottom {
		background-color: var(--bottom-bg);
		color: var(--bottom-text-color);
		padding: 1.5rem;
		font-size: 0.875rem;
		margin: 0;
	}

	.footer-newsletter__bottom-container {
		display: flex;
		flex-direction: column; /* Mobile-first stack */
		align-items: center;
		gap: 1.5rem;
	}

	.footer-newsletter__copyright { margin: 0; }

	.footer-newsletter__social ul {
		margin: 0;
		padding: 0;
		list-style: none;
		display: flex;
		gap: 1.5rem;
	}
	.footer-newsletter__social a { color: var(--bottom-text-color); transition: color 0.2s; }
	.footer-newsletter__social a:hover { color: var(--bottom-link-hover); }
	.footer-newsletter__social svg { width: 20px; height: 20px; fill: currentColor; }

	@media (min-width: 576px) {

		.footer-newsletter__input {
			flex-grow: 1; /* Allow input to take up available space */
		}
	}

	@media (min-width: 768px) {
		.footer-newsletter__bottom-container {
			flex-direction: row;
			justify-content: space-between;
		}
	}
	
/* FOOTER SECTION END */
	
	
</style>