/* About Page Specific Styles */
.about-hero {
	padding: 100px 0 80px;
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	position: relative;
	text-align: center;
}

.about-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.about-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: var(--white);
	font-weight: 800;
}

.about-hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 30px;
	color: var(--white);
	opacity: 0.9;
}

.jf-mission-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #10141a 0%, #182c37 70%, #1e606e 100%);
}

.mission-container {
	display: flex;
	gap: 40px;
	align-items: center;
}

.mission-content {
	flex: 1;
}

.mission-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--white);
	font-weight: 700;
}

.mission-content p {
	margin-bottom: 20px;
	color: var(--light-color);
	font-size: 1.1rem;
}

.mission-image {
	flex: 1;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.values-section {
	padding: 80px 0;
	background-color: var(--dark-secondary);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.jf-value-card {
	background-color: var(--dark-tertiary);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.jf-value-card:hover {
	transform: translateY(-5px);
	background-color: rgba(40, 40, 40, 0.9);
}

.value-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.jf-value-card h3 {
	margin-bottom: 15px;
	color: var(--white);
	font-weight: 600;
}

.jf-value-card p {
	color: var(--light-color);
}

.jf-team-section {
	padding: 80px 0;
	background-color: var(--dark-color);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.team-member {
	background-color: var(--dark-tertiary);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-5px);
}

.team-photo {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.team-info {
	padding: 20px;
	text-align: center;
}

.team-info h3 {
	margin-bottom: 5px;
	color: var(--white);
	font-weight: 600;
}

.team-info p {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-weight: 500;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.team-social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: var(--transition);
}

.team-social a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

@media (max-width: 768px) {
	.about-hero h1 {
		font-size: 2.5rem;
	}

	.mission-container {
		flex-direction: column;
	}

	.mission-image {
		order: -1;
	}
}

/**/
/* Contact Page Specific Styles */
.jf-contact-section {
	padding: 100px 0 80px;
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	position: relative;
}
/* 
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/noise.png");
    opacity: 0.05;
    mix-blend-mode: overlay;
} */

.contact-container {
	display: flex;
	gap: 40px;
	margin-top: 50px;
}

.jf-contact-info {
	flex: 1;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: var(--border-radius);
	padding: 30px;
	backdrop-filter: blur(5px);
}

.jf-contact-info h3 {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: var(--white);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	color: var(--white);
}

.contact-icon {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-right: 15px;
	min-width: 30px;
}

.contact-text h4 {
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-text p,
.contact-text a {
	color: var(--light-color);
}

.contact-text a:hover {
	color: var(--primary-color);
}

.jf-contact-form {
	flex: 1;
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--box-shadow);
}

.jf-contact-form h3 {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: var(--white);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--white);
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border-radius: 4px;
	border: 1px solid var(--dark-tertiary);
	background-color: var(--dark-tertiary);
	color: var(--white);
	font-family: var(--font-family);
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(29, 185, 84, 0.3);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
	}
}

/**/
.policy-content {
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	padding: 40px;
	margin: 40px 0;
	box-shadow: var(--box-shadow);
}

.policy-content h2 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.policy-content h3 {
	color: var(--white);
	margin: 30px 0 15px;
	font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
	color: var(--light-color);
	margin-bottom: 15px;
	line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

.policy-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.policy-content a:hover {
	color: var(--white);
}

.policy-content .highlight {
	background-color: var(--dark-tertiary);
	padding: 20px;
	border-radius: var(--border-radius);
	margin: 20px 0;
}

.policy-content .highlight p:last-child {
	margin-bottom: 0;
}

.jf-section-header {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.jf-section-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.jf-section-header h1 {
	font-size: 2.5rem;
	color: var(--white);
	position: relative;
	z-index: 1;
}

.last-updated {
	color: var(--light-color);
	font-style: italic;
	margin-top: 20px;
}

.table-container {
	overflow-x: auto;
	margin: 20px 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--dark-tertiary);
}

th {
	background-color: var(--dark-tertiary);
	color: var(--white);
	font-weight: 600;
}

tr:hover {
	background-color: rgba(40, 40, 40, 0.3);
}

/**/
.policy-content {
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	padding: 40px;
	margin: 40px 0;
	box-shadow: var(--box-shadow);
}

.policy-content h2 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.policy-content h3 {
	color: var(--white);
	margin: 30px 0 15px;
	font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
	color: var(--light-color);
	margin-bottom: 15px;
	line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

.policy-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.policy-content a:hover {
	color: var(--white);
}

.policy-content .highlight {
	background-color: var(--dark-tertiary);
	padding: 20px;
	border-radius: var(--border-radius);
	margin: 20px 0;
}

.policy-content .highlight p:last-child {
	margin-bottom: 0;
}

.jf-section-header {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.jf-section-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.jf-section-header h1 {
	font-size: 2.5rem;
	color: var(--white);
	position: relative;
	z-index: 1;
}

.last-updated {
	color: var(--light-color);
	font-style: italic;
	margin-top: 20px;
}

/**/
.policy-content {
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	padding: 40px;
	margin: 40px 0;
	box-shadow: var(--box-shadow);
}

.policy-content h2 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.policy-content h3 {
	color: var(--white);
	margin: 30px 0 15px;
	font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
	color: var(--light-color);
	margin-bottom: 15px;
	line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

.policy-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.policy-content a:hover {
	color: var(--white);
}

.policy-content .highlight {
	background-color: var(--dark-tertiary);
	padding: 20px;
	border-radius: var(--border-radius);
	margin: 20px 0;
}

.policy-content .highlight p:last-child {
	margin-bottom: 0;
}

.jf-section-header {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.jf-section-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.jf-section-header h1 {
	font-size: 2.5rem;
	color: var(--white);
	position: relative;
	z-index: 1;
}

.last-updated {
	color: var(--light-color);
	font-style: italic;
	margin-top: 20px;
}

.jf-tool-card {
	background-color: var(--dark-tertiary);
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: var(--transition);
}

.jf-tool-card:hover {
	transform: translateX(5px);
	background-color: rgba(40, 40, 40, 0.9);
}

.tool-icon {
	font-size: 2rem;
	color: var(--primary-color);
}

.tool-info h4 {
	margin-bottom: 5px;
	color: var(--white);
	font-weight: 600;
}

.tool-info p {
	color: var(--light-color);
	margin-bottom: 0;
}

.support-organizations {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}

.support-link {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--dark-tertiary);
	border-radius: 500px;
	color: var(--light-color);
	text-decoration: none;
	transition: var(--transition);
}

.support-link:hover {
	background-color: var(--primary-color);
	color: var(--white);
	transform: scale(1.05);
}

/**/
/* Additional styles for the login/registration page */
.auth-section {
	padding: 80px 0;
	background-color: var(--dark-color);
	min-height: calc(100vh - 300px);
	display: flex;
	align-items: center;
}

.auth-container {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.auth-image {
	flex: 1;
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.auth-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.auth-image h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.auth-image p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.auth-forms {
	flex: 1;
	padding: 40px;
}

.auth-tabs {
	display: flex;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--dark-tertiary);
}

.auth-tab {
	padding: 15px 30px;
	cursor: pointer;
	font-weight: 600;
	color: var(--light-color);
	position: relative;
}

.auth-tab.active {
	color: var(--white);
}

.auth-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--white);
	font-weight: 500;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	background-color: var(--dark-tertiary);
	border: 1px solid transparent;
	border-radius: 4px;
	color: var(--white);
	font-family: var(--font-family);
	transition: var(--transition);
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(29, 185, 84, 0.3);
}

.form-group input::placeholder {
	color: var(--light-color);
	opacity: 0.7;
}

.form-footer {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.form-footer a {
	color: var(--primary-color);
	font-weight: 500;
}

.form-footer a:hover {
	text-decoration: underline;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--light-color);
}

.remember-me input {
	accent-color: var(--primary-color);
}

.social-login {
	margin-top: 30px;
	text-align: center;
}

.social-login p {
	color: var(--light-color);
	margin-bottom: 15px;
	position: relative;
}

.social-login p::before,
.social-login p::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background-color: var(--dark-tertiary);
}

.social-login p::before {
	left: 0;
}

.social-login p::after {
	right: 0;
}

.social-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--dark-tertiary);
	color: var(--white);
	transition: var(--transition);
}

.social-button:hover {
	transform: translateY(-3px);
}

.social-button.facebook:hover {
	background-color: #3b5998;
}

.social-button.google:hover {
	background-color: #db4437;
}

.social-button.apple:hover {
	background-color: #000000;
}

@media (max-width: 768px) {
	.auth-container {
		flex-direction: column;
	}

	.auth-image {
		padding: 30px;
	}

	.auth-image h2 {
		font-size: 2rem;
	}
}

/**/
.policy-content {
	background-color: var(--dark-secondary);
	border-radius: var(--border-radius);
	padding: 40px;
	margin: 40px 0;
	box-shadow: var(--box-shadow);
}

.policy-content h2 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.policy-content h3 {
	color: var(--white);
	margin: 30px 0 15px;
	font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
	color: var(--light-color);
	margin-bottom: 15px;
	line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.policy-content li {
	margin-bottom: 10px;
}

.policy-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.policy-content a:hover {
	color: var(--white);
}

.policy-content .highlight {
	background-color: var(--dark-tertiary);
	padding: 20px;
	border-radius: var(--border-radius);
	margin: 20px 0;
}

.policy-content .highlight p:last-child {
	margin-bottom: 0;
}

.jf-section-header {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 60px 0;
	text-align: center;
	position: relative;
}

.jf-section-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/noise.png');
	opacity: 0.05;
	mix-blend-mode: overlay;
}

.jf-section-header h1 {
	font-size: 2.5rem;
	color: var(--white);
	position: relative;
	z-index: 1;
}

.last-updated {
	color: var(--light-color);
	font-style: italic;
	margin-top: 20px;
}
