html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	line-height: 1.5;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #EDEDED;
	font-family: 'Archivo', sans-serif;
	font-weight: 200;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--viewport-height: 100vh;
}

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

a[onclick]:not([href]) {
	cursor: pointer;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	margin-top: 5rem;
}

#main {
	--alignment: var(--site-language-alignment);
	--flex-alignment: var(--site-language-flex-alignment);
	--indent-left: var(--site-language-indent-left);
	--indent-right: var(--site-language-indent-right);
	--margin-left: var(--site-language-margin-left);
	--margin-right: var(--site-language-margin-right);
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
}

#main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 3rem;
	--spacing: 0rem;
	--width: 100vw;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#main > .inner > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

#main > .inner > :first-child {
	margin-top: 0 !important;
}

#main > .inner > :last-child {
	margin-bottom: 0 !important;
}

#main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

body.is-instant #main, body.is-instant #main > .inner > *,body.is-instant #main > .inner > section > *  {
	transition: none !important;
}

body.is-instant:after {
	display: none !important;
	transition: none !important;
}

.container {
	position: relative;
}

.container > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

#main .container.full:first-child > .wrapper {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container02 {
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-image: linear-gradient(360deg, rgba(94,23,37,0.871) 20%, rgba(0,0,0,0.871) 80%), url('images/container02.jpg');
	background-position: 0% 0%, 50% calc(0% - (((var(--scroll-y, 0) * 1px) - (var(--element-top, 0) * 1px)) * var(--background-parallax-intensity, 0)) );
	background-repeat: repeat, no-repeat;
	background-size: cover, cover;
}

#container02 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

body.is-touch #container02 {
	background-attachment: scroll;
	--background-parallax-intensity: 0 !important;
}

#container02.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

#container02.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

#container02.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

#container02.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

#container02.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

#container02.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

#container02.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

#container02.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

#container02.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

#container02.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#container02.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

#container02.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

#container02 > .wrapper {
	z-index: 90;
}

.copyright {
	margin-top: 2rem !important;
	font-weight: 200;
	font-size: .75rem;
	color: rgba(255,255,255,0.25);
}

.buttons {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons li a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

.buttons li a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 2px);
	padding: 0 1rem;
	vertical-align: middle;
	font-family: 'Archivo', sans-serif;
	font-size: 0.75em;
	font-weight: 200;
	border-radius: 3rem;
	border: 1px solid #c1c6c8;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button {
	
	color: #000;
}

.button:hover {

	background-color: #5d1725;
	color: #fff;
}

.button.alt {
	border: 1px solid #5d1725 ;
	background-color: #5d1725;
	color: #FFFFFF;
}

.button.alt:hover {
	background-color: #000000;
}

.button.active {
	background-color: #5d1725;
	color: #FFFFFF;
}

.button.active:hover {
	background-color: #000000;
}

.buttons.alt li a {
	background: rgba(255,255,255,0.05);
	color: #fff;
}

.buttons.alt li a:hover {
	background: rgba(255,255,255,1);
	color: #5d1725;
}

.buttons.alt .button {
	border: none !important;
	background
	color: #fff;
}

.buttons.alt .button.alt {
	background-color: #fff;
	color: #5d1725;
}

.buttons.alt .button.alt:hover {
	background-color: #000;
	color: #fff;
}

.image {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

.image.full:first-child .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image.full:last-child .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}



h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

.gallery .inner {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
}

.gallery ul li {
	position: relative;
}

.gallery ul li .thumbnail {
	border-radius: inherit;
	position: relative;
}

.gallery ul li .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.gallery ul li img {
	margin: 0;
	max-width: 100%;
	vertical-align: top;
	width: auto;
}

.gallery ul li .caption {
	width: 100%;
}

.gallery ul li .caption p {
	width: 100%;
}

.gallery ul li .caption a, .gallery ul li .caption spoiler-text {
	pointer-events: auto;
}

#gallery01 .inner {
	max-width: 100%;
}

#gallery01 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery01 ul li .frame {
	border-radius: 0rem;
}

#gallery01 ul {
	gap: 3rem;
}

#gallery01 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery01 ul li img {
	height: auto;
	max-height: 3.25rem;
}

#gallery01 ul li .thumbnail img {
	transition: none;
}

.icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.icons li {
	position: relative;
	z-index: 1;
}

.icons li a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.icons li a svg {
	display: block;
	pointer-events: none;
	position: relative;
}

.icons li a + svg {
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	color: #000;
}

.icons li a .label {
	display: none;
}

#icons01 .logo img {
	height: 2em;
	width: 2em;
}

#icons01 {
	font-size: 1.5em;
	gap: 1.5rem;
}

#icons01 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons01 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}

#icons01 a svg {
	fill: #fff;
}

#icons01 a {
	background: rgba(255,255,255,0.05);
}

#icons01 a:hover {
	background: #fff !important;
}

#icons01 a:hover svg {
	fill: #5d1725 !important;
}

#icons01 li a + svg {
	transition: fill 0.25s ease, background 0.25s ease;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	background: #5d1725;
	position: fixed;
	top: 0;
	left: 0;
	height: 5rem;
	width: 100%;
	z-index: 99;
	
	box-shadow: 0rem 0.125rem 2rem 0rem rgba(0,0,0,0.6);
}


.fhs-wrapper .header {
	display: flex;
	margin-bottom: 2rem;
	align-items: center;
	justify-content: space-between;
}

.fhs-columns {
	display: flex;
	padding: 0;
	gap: 2rem;
	margin: 0 auto !important;
	align-items: stretch;
	justify-items: start; 
	width: 100%;            
  max-width: 80rem;
  flex-wrap: wrap;
}

.fhs-columns > .col-4 {
  flex: 4;            /* 4 parts of the remaining space */
}

.fhs-columns > .col-3 {
  flex: 3;            /* 3 parts of the remaining space */
}

.fhs-columns > .col-2 {
  flex: 2;            /* 2 parts of the remaining space */
}

.fhs-columns > .col-1 {
  flex: 1;            /* 1 part of the remaining space */
}

.fhs-wrapper .coaches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;           /* space between coaches */
}


.fhs-wrapper .coaches .col-3 {
  overflow: hidden;   
  text-align:center; 
  background: #5d1725;
  border-radius: 0.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.fhs-wrapper .coach-image img {
  display: block;
  width: 100%;         
  height: auto; 
  border-radius: 0.5rem 0.5rem 0 0;       
}

.fhs-wrapper .coaches h3 {
	color: #fff;
	margin-bottom: 1rem !important;
}
.fhs-wrapper .coaches p {
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
}

.fhs-wrapper .coach-info {
	padding: 1rem;
}

.fhs-wrapper {

	background-color: rgba(255,255,255,0.85);
	box-shadow: 0rem 0.125rem 2rem 0rem rgba(0,0,0,0.478);
	width: 100%;            
  max-width: 80rem;  
	margin: 0 auto 2rem auto !important;
	padding: 1.5rem 2rem;
	border-radius: 0.5rem;
	overflow: hidden;
}

.fhs-wrapper h1 {
	color: #000;
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 0;
	letter-spacing: -0.025rem;
}

.fhs-wrapper h2 {
	color: #000;
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 0;
	letter-spacing: -0.025rem;
}

.fhs-wrapper h3 {
	color: #000;
	font-weight: 400;
	font-size: 1.25rem;
	margin-bottom: .0;
}

.fhs-wrapper.intro h1 {
	margin-bottom: 1.75rem;
}

.fhs-wrapper.intro p {
	margin-bottom: 2rem;
}

.fhs-wrapper.intro img {
	max-width: 50%;
	height: auto;
	margin-left: auto;
	margin-right: auto;	
	margin-bottom: 1rem;
	text-align:center;
	display:block;
}


.events-container > .event {
 	display: grid;
  	grid-template-columns: 8rem 1fr;   /* left column fixed, right fluid */
	padding: 0;
	border: 1px solid #5d1725;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	align-items: stretch;
	justify-items: start;    
}

.events-container > .event:last-child {
	margin-bottom: 0;
}

.events-container.small > .event {
  	grid-template-columns: 4rem 1fr;   /* left column fixed, right fluid */
	margin-bottom: 1rem;
}

.events-container.small .event .date {
	padding: 1rem;
}

.events-container.small .event .month,
.events-container.small .event .year {
	font-size: .5rem;
}

.events-container.small .event .day {
	font-size: 1.5rem;
}

.events-container.small .event .info {
	padding: 1rem;
}

.events-container.small .event .info h3 {
	font-size: 1rem;
}

.events-container.small .event .info .description {
	font-size: 0.65rem;
	margin-bottom: 0.5rem;
}

.events-container.small .event .info .location {
	font-size: 0.65rem;
}


.events-container.small .event {
  position: relative;

}

.events-container.small .event.practice::before {
  content: "Practice";
  position: absolute;
  top: 0rem;
  right: 0rem;
  background: #000000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.35rem;
  
  border-radius: 0 0.5rem 0 0.5rem;
  text-transform: uppercase;
  z-index: 10;
}

.events-container.small .event.match::before {
  content: "Match";
  position: absolute;
  top: 0rem;
  right: 0rem;
  background: #000000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.35rem;
  
  border-radius: 0 0.5rem 0 0.5rem;
  text-transform: uppercase;
  z-index: 10;
}

.events-container.small .event.tournament::before {
  content: "Tournament";
  position: absolute;
  top: 0rem;
  right: 0rem;
  background: #000000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.35rem;
  
  border-radius: 0 0.5rem 0 0.5rem;
  text-transform: uppercase;
  z-index: 10;
}


.event .date {
	background: #5d1725;
	padding: 2rem;
	text-align:center;
	height: 100%;
	border-radius: 0.5rem 0 0 0.5rem;
  	display: grid;
  	place-content: center;    /* shorthand for align-items + justify-items */
}

.event .month {
	color: rgba(255,255,255,0.5);
	font-size: .75rem;
	line-height: 1;
}

.event .day {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.25;
}

.event .year {
	color: rgba(255,255,255,0.5);
	font-size: .75rem;
	line-height: 1;
}

.event .info {
	padding: 2rem;
  	display: grid;
  	place-content: center;    /* shorthand for align-items + justify-items */
}

.event .info .time {
	font-size: 0.75rem;
	color: #5d1725;
	margin-bottom: 1rem;
}

.event .info .description {
	margin-bottom: 1rem;
}

.event .info .description a {
	color: #5d1725;
}

.event .info .location {
	font-size: 0.75rem;
	color: #5d1725;
	margin-bottom: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.pagination a {
  display: block;
  padding: 0.4rem 0.9rem;
  border: 1px solid #c1c6c8;
  border-radius: 100%;
  text-decoration: none;
  color: #000;
  user-select: none;
}
.pagination a.active {
  background-color: #5d1725;
  color: #fff;
}
.pagination a:hover:not(.active) {
  background-color: #5d1725;
  color: #fff;
}


.fhsgallery {
 	column-count: 5;
	column-gap: 1em;
  	padding: 1em;
}

.gallery-item {
    break-inside: avoid;
	margin-bottom: 1em;
}
    
.gallery-item img {
	width: 100%;
	display: block;
	border-radius: 8px;
}

#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 4px;
}

#lightbox .prev,
#lightbox .next,
#lightbox .close {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  user-select: none;
}

#lightbox .prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
#lightbox .next  { right: 1rem; top: 50%; transform: translateY(-50%); }
#lightbox .close { top: 1rem; right: 1rem; font-size: 2.5rem; }

.menu-icon,
.close-icon {
  display: none;
  background: #5d1725;
  color: #fff;
  border: none;
  border-radius: 100%;
  font-size: 2rem;
  padding: 0.5rem 0.75rem;
}

/* 2. Style the overlay: */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}
.menu-overlay.open {
  opacity: 1; pointer-events: auto;
}
.menu-overlay .buttons {
	flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.menu-overlay .buttons li {
  margin: 1rem 0;
  width: 100%;
}
.menu-overlay .buttons a {
  font-size: 1.5rem;
  color: white;
  width: 100%;
  height: 2rem;
  text-decoration: none;
  	height: 4.5rem;
	line-height: calc(4.5rem - 2px);
}
.menu-overlay .close-icon {
  position: absolute;
  top: 2rem; right: 2rem;
  display: block;
  color: white;
}

/* Roster */

	.roster-wrapper {
	 	display: flex;
	  	align-items: center;
	  	position: relative;
	}

	.roster-container {
	  	overflow: hidden;
	  	width: 100%;
	}

	.roster {
	  	display: flex;
	  	transition: transform .3s ease;
	}

	.roster .card { 
	  	flex: 0 0 20%;    
	  	box-sizing: border-box;
	  	padding: .5rem;
	}

	.roster .card .photo {
	  	position: relative;
	  	overflow: hidden;
	  	border: 2px solid #5d1725;
	  	margin-bottom: 1rem;
	  	border-radius: 0.5rem;
	}

	.roster .card .photo::after {
	  	content: "";
	  	position: absolute;
	  	top: 0; left: 0; right: 0; bottom: 0;
	  	pointer-events: none;
	  	background: url("images/cardoverlay.png") no-repeat center center;
	  	background-size:	cover;
	  	z-index: 2;
	}

	.roster .card img {
			aspect-ratio: 2 / 3;
			object-fit: cover; 
	  	display: block;      /* remove inline gap */
	  	width: 100%;         /* fill the card’s width */
	  	height: auto;        /* keep aspect ratio */
	  	margin-bottom: 0;
	  	z-index: 1;
	}


	.roster .card .name {
		font-weight: 400;
		color: #000;
		text-align: center;
	}

	.roster .card .title {
		color: #5d1725;
		font-size: 0.75rem;
		text-align: center;
		
	}

	.roster-btn {
	  	background: none;
	  	border: none;
	  	font-size: 2rem;
	  	cursor: pointer;
	  	user-select: none;
	  	padding: 0 .5rem;
	}

	.prev  { 
		margin-right: .25rem; 
	}

	.next  { 
		margin-left:  .25rem; 
	}

/* Blog / News */

	.fhs-wrapper.blog-wrapper {
		display:flex;
		gap: 2rem;
		width: 100%;
		box-sizing: border-box;
		margin-bottom: 0 !important;
	}

	.fhs-wrapper > .blog-image {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.fhs-wrapper > .blog-info {
		flex: 0 0 75%;
		max-width: 75%;
	}

	.fhs-wrapper > .blog-image img {
	  	display: block;
	  	width: 100%;
	  	height: auto;
	}

	.blog-info h3 {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.blog-info p {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}


/* Sponsors */

	#sponsors {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		background-color: #000;
		color: #fff;
	}

	#sponsors > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		padding: var(--padding-vertical) var(--padding-horizontal);
	}

	#sponsors > .wrapper {
		max-width: var(--width);
		width: 100%;
	}

	#sponsors.default > .wrapper > .inner > * {
		margin-bottom: var(--spacing);
		margin-top: var(--spacing);
	}

	#sponsors.default > .wrapper > .inner > *:first-child {
		margin-top: 0 !important;
	}

	#sponsors.default > .wrapper > .inner > *:last-child {
		margin-bottom: 0 !important;
	}

	#sponsors.default > .wrapper > .inner > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		max-width: none !important;
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#sponsors.default > .wrapper > .inner > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}

	#sponsors.default > .wrapper > .inner > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}

	#sponsors h2 {
		font-size: 1.25rem;
		margin-bottom: 2rem!important;
		color: rgba(255,255,255,0.5);
	}

	#sponsors h2 small {
		font-size: 0.75rem;
		font-weight: 200;
		color: rgba(255,255,255,0.35);
	}

/* Donation Overlay */
	
	.donation-overlay {
	  	position: fixed;
  		inset: 0;                      
  		background: rgba(0,0,0,0.85);
  		overflow-y: auto;               
  		display: flex;                   
  		justify-content: center;        
  		align-items: flex-start;        
  		padding: 2rem;             
  		opacity: 0;
  		pointer-events: none;
  		transition: opacity 0.3s ease;
  		z-index: 10000 !important;
	}

	.donation-overlay.open {
	  	opacity: 1;
	  	pointer-events: auto;
	}

	.donation-content {
	  	background: #fff;
	  	padding: 3rem;
	  	padding-top: 6rem;
	  	width: 80rem;
	  	max-width: 90%;
	  	border-radius: 0.5rem;
	  	text-align: center;
	  	position: relative;
	  	max-height: calc(100vh - 4rem); 
  		overflow-y: auto;   
	}

	.donation-overlay .close-icon {
	  	position: absolute;
	  	top: 2rem; right: 2rem;
	  	background: #5d1725;
	  	border: none;
	  	font-size: 1.5rem;
	  	color: #fff;
	  	cursor: pointer;
	  	z-index: 99999;
	  	display: block;
	}

	.donation-content h2 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.donation-content .subheading {
		font-size: 1rem;
		margin-bottom: 3rem;
	}

	.donation-content ul {
		list-style: none;
	}

	.donation-content ul li {
		text-align: left;
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
		padding: 0 0 0.5rem 0;
		border-bottom: 1px solid rgba(255,255,255,0.25);
	}

	.donation-content ul li:last-child {

		border-bottom: none;
	}

	.color1 {
		background-color: #c1c6c8;
		box-shadow: none;
	}

	.color2 {
		background-color: #a2aaad;
		color: #fff;
		box-shadow: none;
	}

	.color3 {
		background-color: #777777;
		color: #fff;
		box-shadow: none;
	}

	.color4 {
		background-color: #5d1725;
		color: #fff;
		box-shadow: none;
	}

	.color2 h3, .color3 h3, .color4 h3 { 
		color: #fff; 
	}

	.amount {
		font-weight: 600;
		font-size: 3rem;
		margin: 1rem 0;
	}

	.qr img{
		margin: 0 auto 2rem auto;
		width: 8rem;
		height: 8rem;
	}



/* Mobile Settings */

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	#container02 {
		background-attachment: scroll;
		--background-parallax-intensity: 0 !important;
	}

	.fhs-columns {
    	flex-direction: column;
    	gap: 1.5rem;
  	}

	.fhs-columns > .col-4,
	.fhs-columns > .col-3,
	.fhs-columns > .col-2,
	.fhs-columns > .col-1 {
	  flex: 1 !important;          
	}	
}

@media (max-width: 1024px) {
	
	html {
		font-size: 11pt;
	}

  	.roster .card {
    	flex: 0 0 50%;
  	}	

	.fhsgallery { 
		column-count: 2; 
	}	

  	.fhs-wrapper .coaches {
    	grid-template-columns: 1fr;
  	}

  	.menu-icon { 
  		display: block; 
  	}

  	#mainMenu.buttons { 
  		display: none; 
  	}


}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
		
	#sponsors > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	#sponsors.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#sponsors.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#sponsors.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#sponsors.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#sponsors.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#sponsors.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#sponsors.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#sponsors.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div:first-of-type, #sponsors.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#sponsors.columns > .wrapper > .inner > div:last-of-type, #sponsors.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#sponsors.columns > .wrapper > .inner > div:first-of-type, #sponsors.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#sponsors.columns > .wrapper > .inner > div:last-of-type, #sponsors.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#sponsors.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#sponsors.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#buttons01 {
		gap: 0.75rem;
	}
	
	#buttons01 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#gallery01 ul li img {
		max-height: 2.4375rem;
	}
	
	#icons01 {
		font-size: 1rem;
		gap: 0.75rem;
	}

	.fhsgallery { column-count: 1; }

  .fhs-wrapper.blog-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .fhs-wrapper > .blog-image,
  .fhs-wrapper > .blog-info {
    flex: 0 0 100%;
    max-width: 100%;
  }		

/* Donation Overlay */
	


	.donation-content {
	  	padding: 1rem;
	  	padding-top: 6rem;
	}

	.donation-overlay .close-icon {
	  	position: absolute;
	  	top: 2rem; right: 2rem;
	  	background: #5d1725;
	  	border: none;
	  	font-size: 1.5rem;
	  	color: #fff;
	  	cursor: pointer;
	  	z-index: 99999;
	  	display: block;
	}

	.donation-content h2 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.donation-content .subheading {
		font-size: 1rem;
		margin-bottom: 3rem;
	}

	.donation-content ul {
		list-style: none;
	}

	.donation-content ul li {
		text-align: left;
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
		padding: 0 0 0.5rem 0;
		border-bottom: 1px solid rgba(255,255,255,0.25);
	}

	.donation-content .fhs-wrapper {
		margin-bottom: 0.25rem !important;
	}

	.fhs-columns {
    	flex-direction: column;
    	gap: 0.5rem;
  	}


	.amount {
		font-size: 2rem;
	}

	.qr img{
		position: relative;
		top: 0;
		margin: 0 auto 1rem auto;
		left: 0;
		right: 0;
		width: 6rem;
		height: 6rem;
	}

	  /* Stack roster cards vertically */
  .roster {
    flex-direction: column;
    align-items: center; /* optional: center cards horizontally */
  }

  .roster .card {
    flex: 0 0 100%; /* each card takes full width of container */
    max-width: 300px; /* optional: limit width for nicer look */
  }

  /* Hide navigation arrows */
  .roster-btn {
    display: none;
  }

	.rosterhead, .eventhead {
		flex-wrap: wrap;
	}

	.rosterhead h2, .eventhead h2 {
		margin-bottom: 1rem;
	}

	.events-container.sort .event {
		grid-template-columns: 1fr;
	}

	.events-container.sort .event .date {
        width: 100%;
        border-radius: 0.5rem 0.5rem 0 0; /* top-rounded corners */
        height: auto;
  }

}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0rem;
	}
	
	#buttons01 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons01 li a {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
		--spacing: 0rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
	}
	
	#sponsors > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	#buttons01 {
		gap: 0.5625rem;
	}
	
	#gallery01 ul {
		gap: 0.375rem;
	}
	
	#icons01 {
		gap: 1.125rem;
	}
}

#contact {
    background: #f4f6f9;
}
 
#contact h2 {
    margin-bottom: 0.4em;
}
 
#contact > .wrapper > .inner > p {
    margin-bottom: 2em;
    opacity: 0.75;
}
 
#contactForm .fhs-wrapper {
    margin-bottom: 1.25rem;
}
 
#contactForm label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}
 
#contactForm label span {
    color: #c0392b;
}
 
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #ccd1d9;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
 
#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.18);
}
 
#contactForm input:invalid:not(:placeholder-shown),
#contactForm textarea:invalid:not(:placeholder-shown) {
    border-color: #c0392b;
}
 
#contactForm textarea {
    resize: vertical;
    min-height: 130px;
}
 
.contact-cols {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
 
.contact-cols .fhs-wrapper.col-2 {
    flex: 1 1 240px;
}
 
.contact-submit {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
 
.contact-submit .button {
    min-width: 160px;
    flex-shrink: 0;
}
 
.contact-status {
    font-size: 0.9rem;
    font-weight: 500;
}
 
.contact-status.success {
    color: #27ae60;
}
 
.contact-status.error {
    color: #c0392b;
}
 
@media (max-width: 600px) {
    .contact-cols {
        flex-direction: column;
        gap: 0;
    }
}
 