/* Global CSS ======================================================================================= */

main {
	background: white;
}

body {
	margin: 0 ;
}

header {
	z-index: 99;
	position: relative;
	width: 100%;
	height: 100px;
	background-color: #E9ECEF;
}

/* Text CSS ======================================================================================= */
h1, h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.2rem; 
	font-weight: 600;
	line-height: 1;  
	text-transform: uppercase;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h3, h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem; 
	font-weight: 600;
	line-height: 1;  
	text-transform: uppercase;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-bottom: 0;
}

p, nav, form, a, label, input, button {
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	list-style: none;
	line-height: 1.6;
	font-weight: 600;
	font-size: 1.2em;
	margin-bottom: 1.5em;
}

/* Nav CSS ======================================================================================= */
.Icon {
	transform: scale(0.55);
}

.NavHeader {
	width: 100%;
	height: 100px;
	background: white;
	border-radius: 0 0 25px 25px;
}

.nav a {
	color: black;
	text-decoration: none;
}

.nav li{
	list-style-type: none;
	color: white;
	text-decoration: none;
	padding: 8px 12px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav{
	text-transform: uppercase; 
	padding: 5px;
	display:flex;
	justify-content: center;
	margin-top: 0;
	background-color: #E9ECEF;
	border-radius: 0 0 25px 25px;
	box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.5);
}

.nav a:focus {
	outline: 2px solid #0F5132;
	outline-offset: 3px;
}

.nav li:hover,
.nav li:focus-within {
	transform: translateY(-2px);
	background-color: rgba(0,0,0,0.2);
	border-radius: 10px;
}

.boxed{
	padding: 10px 20px;
	color: white;
	background-color: #0F5132;
	border-radius: 10px;
}

@media (max-width: 768px) {   
	.nav {
        flex-direction: column;
		align-items: flex-start;
		padding-left: 50px;
    }
	
	header {
		height: 250px;
	}
}	

@media (max-width: 1000px) {   
	.Hidden {
		display:none;
	}
}	
	

/* Donate Hero CSS =============================================================== */

.HeroContainer {
	z-index: 50;
	position: relative;
	border-radius: 25px;
	background-image: url('Assets/Hero.jpeg');
	background-position: center;
	background-size: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.HeroBox {
	min-height: 100%;
	width: 50%;
	background: #0F5132;
	border-radius: 0px 200px 200px 25px;
}


@media (max-width: 768px) {   /*ChatGPT Code */
    .HeroBox {
        width: 100%;
        border-radius: 25px;
    }
}	/*End of ChatGPT Code */



.HeroText {
	padding-top: calc(59.6px + 2vh);
	color: white;
	padding-left: 3vh;
	padding-bottom: 2vh;
	padding-right: 3vw;
}

@media (max-width: 768px) {   
    .HeroText {
        text-align:center;
    }
}	

/* Button CSS ======================================================================================= */
.LearnMore {
	background: #0F5132;
	border-radius: 5px;
	padding: 10px 20px;
	color: white;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	margin-top: auto;
	align-self: flex-start;
	margin-bottom: 0;
}

@media (max-width: 768px) {   
    .LearnMore {
        justify-content: center;
		margin: auto;
    }
}	

a.LearnMore:hover {
	transform: translateY(-2px);   
}

.LearnMoreWhite {
	background: white;
	border-radius: 5px;
	padding: 10px 20px;
	color: #0F5132;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
}

a.LearnMoreWhite:hover {
	transform: translateY(-2px) !important;   
}

/* Column / Card CSS ============================================================*/

.MainColumnWrap {
	flex-wrap: wrap;
	z-index: 25;
	position: relative;
	margin-top: -25px;
	height: auto;
	display: flex;
	background: white;
	border-radius: 0 0 25px 25px;
}

.MainColumn {
	margin: 5px;
	border-radius: 25px;
	background-color: #E9ECEF; 
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	flex:1;
	display: flex;
    flex-direction: column;
}

.InternalGrid { /* used within components to create rows cards*/
	display: flex;
    flex-direction: row;
	
}

@media (max-width: 1000px) { /*ChatGPT Code */
    .MainColumn {
        flex: 0 0 100%; 
        margin: 10px 0;
    }
	
	.InternalGrid {
	display: block;
	}
	
} /*End of ChatGPT Code */


.ImgContainer {
	height: 25vh;
	margin: 15px;
}	

.ImgContainerTall {
	height: 40vh;
	margin: 15px;
}	

.CalendarContainer, .BadgeContainer {
	height: auto;
	width: auto;
	margin: 15px;
}	

.BadgeContainer img {	
	width: 100%;
	height: 100%;
	object-fit: fit;
	border-radius: 10px;
}


.ImgContainer img, .ImgContainerTall img, .CalendarContainer img  {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.VideoContainer {
	min-height: 50vh;
	margin: 15px;
}	

.VideoContainer iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	display: block;
	border: none;
}

.TextContainer {
	min-height: 10vh;
	margin: 15px;
	background: white;
	padding: 10px;
	overflow: hidden;
	border-radius: 10px;
	
	display: flex;
	flex-grow: 1;
    flex-direction: column; 
}	

@media (max-width: 768px) {   
    .TextContainer {
        text-align:center;
		margin: 5px;
		border-radius: 20px;
    }
	
	.ImgContainer {
		margin: 5px;
		align-content: center;
	}	
	
	.ImgContainer img, .BadgeContainer img {
		border-radius: 20px;
	}
	
	.ImgContainerTall {
		height: 25vh;
		margin: 5px;
	}	
	
	.ImgContainerTall img {
		border-radius: 20px;
	}
	
	.CalendarContainer, .BadgeContainer, .VideoContainer {
		margin: 5px;
	}	
	
	.CalendarContainer img {
		border-radius: 20px;
	}	
	
	.VideoContainer iframe {
		border-radius: 20px;
	}
}	

.TextContainer h3, 
.TextContainer p {
    margin-top: 0;        
    margin-bottom: 15px;  
}

/* Form CSS ======================================================================================= */

.CheckboxRow {
    display: flex;
    align-items: center; 
    gap: 10px;           
    margin-bottom: 10px; 
}

.CheckboxRow input {
    margin: 0;           
    width: auto;  
}

.CheckboxRow label {
    margin: 0;           
}

.CustomInput {
	border-radius: 10px;
}

label {
	margin-bottom: 2px;
	display: block;
}

.CustomInput:focus {
    outline: none; 
    border: 2px solid #0F5132;
    box-shadow: 0 0 8px rgba(15, 81, 50, 0.2);
    box-sizing: border-box; 
}


@media (max-width: 768px) { 
	.CheckboxRow {
		display: block;
		flex-direction: column;	
		text-align:left !important;
	}
}
/* Title Card ======================================================================================= */

.TitleCard {
	position: relative;
	margin-top: -25px;
	margin-bottom: 25px;
	height: auto;
	padding-top: calc(59.6px + 2vh);
	background: white;
	color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}	

.Title {
	position: relative;
	z-index: 20;
	margin-top: -20px;
	margin-bottom: 5px;
	background: white;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px 40px;
	text-align: center;
	border-radius: 0 0 25px 25px;
	box-shadow: 0 8px 12px -6px rgba(0, 0, 0, 0.5);
}


/* InfoCard CSS ================================================================================== */

.InfoWrap {
	position: relative;
	margin-top: -30px;
	min-height: 5vh;
	background: #0F5132;
	border-radius: 0 0 25px 25px;
	text-align: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.InfoContent {
	padding-top: 25px;
	color: white;
}


/* Footer CSS ======================================================================================= */

footer {
	margin-top: -25px;
	height:auto;
	background-color: black;
	color: white;
}

footer p, h2 {
	margin-bottom: 0;
}

.UpperFooter {
	display: flex;
	justify-content: space-around;
	z-index: 5;
	background: #373e4a;
	min-height:10vh;
	border-radius: 0 0 25px 25px;
	width: 100%;
	gap: 20px;
}

@media (max-width: 768px) {   
    .UpperFooter {
        display: none;
    }
	
	.LowerFooter {
		margin-top:5px;
	}
}	

.FooterColumn {
	margin: 10px;
	border-radius: 25px;
	flex:1;
	display: flex;
    flex-direction: column;
	height:auto;
}

.FooterText {
	position: relative;
	text-align: center;
	justify-content: center;
	text-decoration: underline;
}	

.LowerFooter {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}


/* WCAG CSS ======================================================================================= */

.ScreenReader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
