/**
 *					CUSTOM CSS
 * @author			TRUEVAL LLC
 * @copyright		2024 TRUEVAL LLC
 * @license			none, all rights reserved
 */

body {
	font-family:Arial, Helvetica, sans-serif;
	font-family: sans-serif;
	font-size:1rem;
	background:#fff;
    line-height: 1.6;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ----- navbar -------------------------------------------------------------------------------- */
/* Base Navbar Styles (Desktop First) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  /* Responsive Width Control */
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #212121;
	font-weight: 500;
	padding:.5rem;
	border:1px solid #aecdc2;
}

.nav-links a:hover {
	background-color: #fff;
	border:1px solid #000;
}

.hamburger {
  display: none; /* Hidden on desktop */
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
}



/* ----- brand --------------------------------------------------------------------------------- */
a.brand {
	display: flex;
	justify-content: flex-start;
	font-size:2rem;
	color:#52917b;
	padding:1rem 0;
	text-decoration:none;
	outline:none;
}
a.brand:hover {cursor:pointer;text-decoration:none;color:#6d837d !important;}
a.logo {
	display: flex;
	justify-content: flex-start;
	text-decoration:none;
	outline:none;
}
a.logo:hover {cursor:pointer;text-decoration:none;background-color:#eee;}

/* ----- general ------------------------------------------------------------------------------- */
a {text-decoration:none;}
.top24{padding-top:24px;}
.top36{padding-top:36px;}
.top48{padding-top:48px;}

/* Header & Footer */
.topBar {padding: 1rem 30%;font-size:36px;color:black;width: 100%;flex:4;}
.fullContainer {width:100%;background-color:#aecdc2;padding:1.5rem;}
.fullContainer02 {width:100%;background-color:#fafafa;padding:1.5rem;text-align:center:}

.header, .footer {
    background: #000;
    color: white;
    padding: 1rem 30%;
    width: 100%;
}

/* ----- Flex Container ----------------------------------------------- */
/* Container to hold the image and text columns */
.container {
    display: flex; /* Aligns items horizontally */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
	max-width:1440px;
	margin: 0 auto;
    align-items: center; /* Vertically centers content */
}

/* Base style for both columns */
.column {
    flex: 1; /* Both columns take equal width */
    padding: 20px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Image styling */
.column img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- form --------------------------------------------------------- */
.formHdr {text-align:center;}

.form-row {margin:1rem;}

.radio-row {
	display: flex; /* Arranges items in a row */
	flex-direction: row; /* Default, but explicit */
	gap: 15px; /* Adds space between the buttons */
	align-items: center; /* Vertically centers the radio button with the text */
}

label {
	display: flex;
	justify-content: flex-start; /* Moves items to the left */
	font-weight: 700;
}

/* ----- input style -------------------------------------------------- */
input[type=text], input[type=password], input[type=number],  input[type=email],  input[type=tel] {
	width: 100%;
	padding: 12px 20px;
	margin: 0 0 12px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box; /* Includes padding in width */
}

/* Changing border color when the field is clicked */
input[type=text]:focus {
	border: 2px solid #555;
	outline: none; /* Removes the default browser blue outline */
}

/* ----- buttons ------------------------------------------------------ */
.btn01, .btn01:visited {
	width:100%;
	font-size:1rem;
	font-weight:700;
	margin: 12px 0;
	padding:1rem 3rem;
	background:#121212;
	color:#fff;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	cursor: pointer;
	border:1px solid #000;
	border-radius: 4px;
}
.btn01:hover, .btn01:focus {background:#4a90e2;border:1px solid #000;}

/* ----- form control ------------------------------------------------- */
.form-control {
	border: 1px solid #ccc;
	background-color:#fff;
	margin: 0 0 12px 0;
	border-radius: 4px;
	box-sizing: border-box;
}
.form-control:focus {box-shadow:none;}
.form-control {height:50px;padding:.75rem;}

/* --- colors --------------------------------------------------------- */
.graygreenBG {background-color: #aecdc2;}
.lightBlueBG {background-color: #d9e0e6;}
.lightBlue {color: #4a90e2;}
.lightGrayBG {background-color: #eee;}
.lightBeigeBG {background-color: #ffefd8;}



/* ===== sliding text over background image =========================== */
.heroText {
	display: flex;
	align-items: center; /* Vertically centers */
	justify-content: center; /* Optional: Horizontally centers */
	height: 560px; /* Requires a defined height */	
    font-family: sans-serif;
    color: #212121;
    line-height: 1.6;
	font-size: 2rem;
}
.sliding-text {
    opacity: 0;
    transform: translateX(150px);
    animation: slideIn 1s forwards;
}

.heroText02 {
	display: flex;
	align-items: center; /* Vertically centers */
	justify-content: center; /* Optional: Horizontally centers */
	font-family: sans-serif;
    color: #212121;
    line-height: 1.6;
	font-size: 2rem;
}
.sliding-text02 {
    opacity: 0;
    transform: translateX(-150px);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== media queries ================================================ */
@media (max-width: 1100px) {
	.container {
		flex-direction: column;
	}
    .column {
        flex: 100%; /* Stacks columns on smaller screens */
    }
	.heroText {
		font-size: 1.33rem;
		height: 200px;
	}
}

/* MOBILE STYLES (Under 768px) */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show hamburger */
    z-index: 1001;

  }
  .nav-links {
    position: fixed;
    top: 187px;
    right: 0; /* Align to right side */
    width: 280px;
    height: 100vh;
    background: #ffefd8;
    flex-direction: column;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
	/* THE SLIDE LOGIC */
    visibility: hidden;      /* Prevents phantom clicks when hidden */
    transform: translateX(100%); /* Pushes it fully off-screen to the right */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 1000;
	margin: 0 0 0 2rem;
  }
  .nav-links li {padding-left:2rem;}
  .nav-links li a {border:none;}
  /* Triggered by JS */
  .nav-links.active {
    visibility: visible;
    transform: translateX(0); /* Slides in from right to left */
  }
  /* Hamburger to X Animation */
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}


/* ===== accordion ==================================================== */
.accordion-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 800px; /* Optional constraint */
	margin: 0 auto;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	font-family: sans-serif;
}
/* Individual Items */
.accordion-item {
	width: 100%;
	border-bottom: 1px solid #e2e8f0;
}
.accordion-item:last-child {
	border-bottom: none;
}
/* Header Trigger Button */
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 18px 24px;
	background-color: #ffffff;
	border: none;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	color: #1a202c;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.accordion-header:hover {
	background-color: #f7fafc;
}
/* Chevron Icon Animation */
.chevron {
	width: 24px;
	height: 24px;
	fill: #4a5568;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header[aria-expanded="true"] .chevron {
	transform: rotate(180deg);
}
/* Content Panel Animation Core */
.accordion-content {
	max-height: 0;
	overflow: hidden;
	background-color: #f8fafc;
	transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-header[aria-expanded="true"] + .accordion-content {
	/* Set to a value higher than your expected content height */
	max-height: 300px; 
}
/* Inner padding avoids jumpy animation bugs */
.content-inner {
	padding: 20px 24px;
	color: #4a5568;
	line-height: 1.6;
}
