/* Section heading style for all main titles */
.section-heading {
	font-family: 'Baise', Arial, Helvetica, sans-serif;
	color: #ff3333;
	font-size: 1.7rem;
	text-align: center;
	margin-bottom: 1.2rem;
	text-shadow:
		0 0 8px #fff,
		0 0 2px #fff,
		0 1px 8px #fff,
		0 2px 12px #fff,
		0 0 0.5px #fff;
}
/* About page styles moved from style.css */
.about-title {
	margin-top: 4.5rem;
}
@media (min-width: 701px) {
  .about-title {
    /* Increase space below the About title on desktop */
    margin-bottom: 2.8rem;
  }
}
/* About page layout */
.about-content {
	display: flex;
    align-items: flex-start;
	gap: 4.5rem;
	margin-top: 0;
	margin-bottom: 2.5rem;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.about-photo {
	width: 270px;
	height: 390px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: 0 2px 16px rgba(0,0,0,0.25);
	background: #222;
}
.about-text-icons {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 420px;
}
.about-text-icons .page-text {
	text-align: left;
}
.about-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
	justify-content: flex-start;
	max-width: 420px;
}
.about-icons img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	background: #181818;
	border-radius: 50%;
	border: 2.5px solid #ff3333;
	box-shadow: 0 1px 6px rgba(0,0,0,0.18);
	transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
	cursor: pointer;
}
.about-icons img:hover {
		transform: scale(1.13) rotate(-4deg);
		box-shadow: 0 2px 16px #ff3333, 0 1px 8px rgba(0,0,0,0.18);
		border-color: #fff;
}
@media (max-width: 700px) {
	.about-content {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		max-width: 90vw;
		padding: 0 1rem;
	}
	.about-photo {
		width: 160px;
		height: 160px;
	}
	.about-icons img {
		width: 32px;
		height: 32px;
	}
	.about-icons {
		gap: 0.7rem;
		max-width: 90vw;
		justify-content: center;
	}
	.about-text-icons {
		align-items: center;
		max-width: 90vw;
	}
	.about-text-icons .page-text {
		text-align: center;
		padding: 0 0.8rem;
		line-height: 1.6;
	}
}
