/* ==========================================
   1. BASE STYLES & SHARED ELEMENTS
   ========================================== */
   
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
body { 
    font-family: 'Roboto Condensed','Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    background: #F0B01B; 
    color: #003031; 
	margin: 0;
	padding: 0;
}
a {
	color:#307A7A;
	
}
a:hover{
	color:#91B7B7; 
	
}
h2 { border-bottom: 2px solid #307A7A; padding-bottom: 10px; color: #307A7A; }
p{
	margin:.5rem 0;
	font-size:1.1rem;
}
.hidden { display: none; }

.logo {
	width: clamp(280px, 80vw, 550px);
    height: auto; 
    display: block;
	margin:0 auto;
}

.about-content{
	background:#fff;
	padding: .2em 1em;
    border-radius: 1em;
	position:relative;
}
.about-content::after {
  content: "";
  position: absolute;
  
  /* Position it at the bottom center */
  left: 66%;
  margin-left: -15px; /* Pull it back by half its width to center */

  /* The Triangle Logic */
  border-width: 30px 30px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.about-hero{
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    font-style: oblique;
	
}
.about-image{
    border-radius: 50%;
    margin-top: 25px;
	overflow:hidden;
	
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;	
	
}
.path-card h3{
    font-size: 1.5rem;
    font-style: oblique;
    font-weight: 500;
    margin: 0;
	
}

.button{
	/* 1. Structural Styles */
	display: inline-block;    /* Allows padding and margin to work correctly */
	padding: 12px 24px;       /* Top/Bottom and Left/Right spacing */
	text-decoration: none;    /* Removes the default underline */

	/* 2. Visual Styles */
	background-color: #307A7A;
	color: #ffffff;
	border-radius: 10px;       /* Rounds the corners */
	font-weight: bold;

	/* 3. The "Button" Feel */
	transition: background-color 0.3s ease; /* Smooth hover effect */
	cursor: pointer;          /* Ensures the "hand" icon appears */
	text-align:center;
	margin: .5rem 0;
}

/* 4. Hover State */
.button:hover {
  background-color: #008899;
  text-decoration: none;    /* Ensures underline stays gone on hover */	
	
}

.primary-button{
	
	
}

.secondary-button{
	
	
}
section{
	margin: 3% auto; 
    padding: 0 15px;

	
}
nav ul{
	list-style-type:none;
	padding:0;
	margin:0;
	display:flex;
	flex-direction:row;
	justify-content:center;
	font-size:clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    font-style: oblique;
	background: #EA9D13;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0px;
    z-index: 1000;
	width:100%;
	border-top: 3.5px solid #005051;
	align-items:center;
}

nav ul li{
	margin: .25rem 0;
	padding: .25em;
}


.nav-cta{
	background-color:#307A7A;
	color:#F8F8F8;
}
.nav-cta:hover{
	translateY(-2px);

	
}
header nav ul li a {
    text-decoration: none;
    padding: .25em 1em;
    border-radius: 10px;
}
header nav ul li a:hover {
	background: #fff;

}
#hero{
	background-image: url("/images/hero-bg-v3.png");
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 34vh;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	margin-top:0;
}

#hero h1 {

    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
	color: #F8F8F8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	width: 80%;
    margin: .5em auto;
    font-weight: 500;
}
#hero p {
    /* Min: 1.1rem (17px)
       Val: 2vw
       Max: 1.5rem (24px) */
	font-size: clamp(1.6rem, 3vw, 2.5rem);
    width: 80%;
    margin: .5em auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #F8F8F8;

}
.header_logo{
	margin:.5em;
	
}
.hero-btns{
	display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 15px;
    align-items: center;
    margin-top: 20px;	
	
}
.hero-btns a{
	min-width:175px;
	
}
.btn-primary{
	
	
}
.btn-secondary{
	background-color: #B5B5B5;
	
}

.container{
	width: 80%;
	max-width: 1100px;    
    margin: 2em auto;      
}
#pathways{
	display: grid;
	grid-template-columns: 1fr; /* Stacked in one column */
	gap: 1.5em;                 /* Space between the cards */
	padding: 0;	
}
#about{
	display:grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items:center;
}
.path-card {
	background: var(--gray-light, #F8F8F8);
	padding: 30px;
	/* border-radius: var(--radius, 10px); */
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* Keeps buttons aligned at the bottom */
	box-shadow: 10px 10px 0px 0px #004546;
}
/* ==========================================
   FORM STYLING
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacks vertically */
    gap: 1em;
}
.contact-grid ol{
	
	font-size:1.2rem;
}
.contact-explainer{
	margin:0;
	
}
#contact form {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 10px 10px 0px 0px #004546; /* Matches your path-card style */
}

#contact label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #003031;
}

#contact input, 
#contact textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #307A7A;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus state makes the form feel interactive */
#contact input:focus, 
#contact textarea:focus {
    outline: none;
    border-color: #F0B01B;
    box-shadow: 0 0 8px rgba(240, 176, 27, 0.3);
}

#contact textarea {
    min-height: 120px;
    resize: vertical; /* Allows user to grow the box but not mess up width */
}

/* The Submit Button */
#contact button[type="submit"] {
    background-color: #307A7A;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contact button[type="submit"]:hover {
    background-color: #005051;
    transform: translateY(-2px); /* Slight lift on hover */
}

#contact button[type="submit"]:active {
    transform: translateY(0);
}
footer{
	margin-bottom: 5em;
	text-align:center;
}
.footer_social_icons{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	list-style-type:none;
	gap: 15px;
	margin:0;
	padding:0;
}
.social-icon{
	filter: brightness(0) saturate(100%) invert(42%) sepia(12%) saturate(1928%) hue-rotate(131deg) brightness(94%) contrast(87%);
}
.social-icon:hover{
	filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(7500%) hue-rotate(155deg) brightness(97%) contrast(101%);
	transform: translateY(-2px);
}
.footer_social_icons li a img{
	width:100%;
	
	
}

@media(min-width:800px){
	body{
	}
	header ul {
        /* Reset the fixed mobile position */
        position: static; 
        width: auto;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
		border-top:none;
    }
	#pathways{
		grid-template-columns: 1fr 1fr; 
	}
	#about{
		grid-template-columns: 1fr 2fr;
		grid-template-areas: "image text";		
	}
	.about-image {
        grid-area: image;
    }

    .about-content {
        grid-area: text;
    }
	.about-content::after{
		left:0;
		margin-left:-25px;
		border-width: 30px 0 0 30px;
		top:80%;
		bottom: auto;
		margin-top: -15px;
		
	}
	.hero-btns {
        flex-direction: row; /* Side-by-side on desktop */
        justify-content: center;
    }
	.contact-grid {
        /* Text takes 1 part, Form takes 1.2 parts for extra room */
        grid-template-columns: 1fr 1.5fr; 
        align-items: start;
    }
	footer{
		margin-bottom: 0;
		
	}	
	.footer_social_icons{
		grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;
	}
}

@media (min-width:1024px){
	
	
}