/**
 * About Us Page Styles
 *
 * @package AirSoftBoom
 */

/* About Page Container */
.about-page {
	width: 100%;
	min-height: 100vh;
	background: #ffffff;
	display: block;
	position: relative;
	z-index: 1;
}

.site-main .about-page {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Hero Section */
.about-hero {
	position: relative;
	width: 100%;
	height: 60vh;
	min-height: 500px;
	max-height: 700px;
	overflow: hidden;
	margin-bottom: 60px;
	display: block !important;
	visibility: visible !important;
}

.about-hero-image {
	width: 100%;
	height: 100%;
	position: relative;
}

.about-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.about-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	display: flex;
	align-items: flex-end;
	padding-bottom: 60px;
}

.about-hero-title {
	color: #ffffff !important;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-subtitle {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 400;
	margin: 15px 0 0 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Content Section */
.about-content {
	padding: 60px 0;
	display: block !important;
	visibility: visible !important;
}

.about-text-section,
.about-mission-section {
	margin-bottom: 60px;
}

.about-section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	line-height: 1.3;
	text-align: center;
}

.about-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #333333;
}

.about-text p {
	margin-bottom: 20px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

/* Image Section */
.about-image-section {
	margin: 60px 0;
}

.about-image-wrapper {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.about-hero {
		height: 50vh;
		min-height: 400px;
	}
	
	.about-hero-title {
		font-size: 2.8rem;
	}
	
	.about-hero-subtitle {
		font-size: 1.25rem;
	}
}

@media (max-width: 768px) {
	.about-hero {
		height: 40vh;
		min-height: 350px;
		max-height: 500px;
		margin-bottom: 40px;
	}
	
	.about-hero-overlay {
		padding-bottom: 40px;
	}
	
	.about-hero-title {
		font-size: 2.2rem;
	}
	
	.about-hero-subtitle {
		font-size: 1.1rem;
	}
	
	.about-content {
		padding: 40px 0;
	}
	
	.about-text-section,
	.about-mission-section {
		margin-bottom: 40px;
	}
	
	.about-section-title {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	
	.about-text {
		font-size: 1rem;
		line-height: 1.7;
	}
	
	.about-image-section {
		margin: 40px 0;
	}
}

@media (max-width: 480px) {
	.about-hero {
		height: 35vh;
		min-height: 300px;
	}
	
	.about-hero-title {
		font-size: 1.8rem;
	}
	
	.about-hero-subtitle {
		font-size: 1rem;
		margin-top: 10px;
	}
	
	.about-hero-overlay {
		padding-bottom: 30px;
	}
	
	.about-section-title {
		font-size: 1.75rem;
	}
	
	.about-text {
		font-size: 0.95rem;
	}
}

/* Community Section */
.about-community-section {
	margin-top: 80px;
	padding: 60px 0;
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	border-radius: 20px;
}

.community-intro {
	margin-bottom: 50px;
	text-align: center;
}

.community-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #555555;
	max-width: 800px;
	margin: 0 auto 50px;
}

.community-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.community-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 30px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
}

.benefit-icon svg {
	width: 24px;
	height: 24px;
}

.benefit-content {
	flex: 1;
}

.benefit-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 10px 0;
}

.benefit-text {
	font-size: 1rem;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

/* Community Form */
.community-form-wrapper {
	background: #ffffff;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin-top: 50px;
}

.community-form-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	text-align: center;
}

.community-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 1rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 8px;
}

.form-label .required {
	color: #e74c3c;
	margin-left: 3px;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333333;
	background: #ffffff;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: #ff6b35;
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
}

.form-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 45px;
}

.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 1rem;
	color: #555555;
	line-height: 1.6;
}

.form-checkbox {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: #ff6b35;
}

.checkbox-text {
	flex: 1;
}

.btn-community-submit {
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-radius: 9999px;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 250px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-community-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-community-submit svg {
	transition: transform 0.3s ease;
}

.btn-community-submit:hover svg {
	transform: translateX(3px);
}

/* Responsive Design for Community Section */
@media (max-width: 1024px) {
	.community-benefits {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.community-form-wrapper {
		padding: 40px 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.about-community-section {
		margin-top: 60px;
		padding: 40px 0;
	}

	.community-description {
		font-size: 1.1rem;
		margin-bottom: 40px;
	}

	.community-benefits {
		margin-top: 40px;
	}

	.community-benefit-item {
		padding: 25px 20px;
	}

	.community-form-wrapper {
		padding: 30px 20px;
		margin-top: 40px;
	}

	.community-form-title {
		font-size: 1.75rem;
		margin-bottom: 25px;
	}

	.community-form {
		gap: 20px;
	}

	.btn-community-submit {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.about-community-section {
		border-radius: 0;
		margin-top: 40px;
		padding: 30px 0;
	}

	.community-description {
		font-size: 1rem;
	}

	.community-benefit-item {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.benefit-icon {
		margin-bottom: 10px;
	}

	.community-form-wrapper {
		padding: 25px 15px;
	}

	.community-form-title {
		font-size: 1.5rem;
	}
}
