/* CSS Document */

body {
	margin: 0;
	font-family: "Space Mono", serif;
	background: #F1F1F1;
}

.header {
	padding: 20px 25px 0px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #010101;
	font-size: clamp(8px, 1.5vw, 12px);
	line-height: 1;
	transition: padding .4s ease, font-size .4s ease;
}

.header h1.ayrin-header {
	font-size: 1.8em;
	margin: 0;
	line-height: 1.3;
	transition: font-size .4s ease, line-height .4s ease;
}

.header h2.ayrin-sub {
	font-size: 0.9em;
	margin: 0;
	line-height: 1.4;
	transition: font-size .4s ease, line-height .4s ease;
}

.header-right {
	text-align: end;
	display: column;
	justify-content: center;
	line-height: 1.4;
	font-size: 1em;
	transition: font-size .4s ease, line-height .4s ease;
}

.header-right a p {
	margin: 0;
	transition: transform .2s ease, font-size .4s ease;
}

#portfolio:hover {
	transform: scale(1.2);
}

#about-me:hover {
	transform: scale(1.2);
}

#home:hover {
	transform: scale(1.2);
}

a {
	color: #010101;
	text-decoration: none;
}

.scroll-container::-webkit-scrollbar {
	display: none;
}

.scroll-container {
	overflow: auto;
	white-space: nowrap;
	padding: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.scroll-container img {
	padding: 5px;
	height: 650px;
}

.scroll-container video {
	padding: 5px;
	height: 650px;
}

.vertical-scroll img {
	height: 400px;
}

.body {
	margin: 100px auto;
	text-align: center;
	width: 700px;
}

.about-me-title {
	text-align: center;
}

.summary {
	text-align: center;
}

.resume-link {
	border: 1px solid #101010;
	padding: 5px;
	width: 400px;
	margin: 5px auto;
}

.dwnld-link {
	border: 1px solid #101010;
	padding: 5px;
	width: 400px;
	margin: 5px auto;
}

.cover-link {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 300px;
}

.mnhtn-cover {
	background: url("../AboutMe/Manhattan/ManhattanCover.jpg");
	background-size: cover;
	width: 220px;
	height: 160px;
}

.rdtrip-cover {
	background: url("../AboutMe/RoadTrips/RoadTripsCover.jpg");
	background-size: cover;
	width: 220px;
	height: 160px;
}

.gc-cover {
	background: url("../AboutMe/GrandCanyon/GrandCanyonCover.jpg");
	background-size: cover;
	width: 220px;
	height: 160px;
}

.cover-text {
	font-size: 12px;
	text-align: left;
	padding: 10px 0 0 0;
}

.section-2 {
	align-content: left;
	background: url("../AboutMe/Manhattan/Manhattan.png");
	background-size: cover;
	padding: 0 370px 1250px 0;
}

.mnhtn-stats {
	border: 1px solid #101010;
	padding: 15px;
	width: 260px;
	margin: 5px auto;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	line-height: 180%;
}

#stats-left {
	text-align: left;
}

#stats-right {
	text-align: right;
}

.mnhtn-img {
	height: 407px;
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 700px) {
	.header {
		padding: 16px 16px 0 16px;
		font-size: clamp(7px, 3vw, 10px);
	}

	.header-right {
		line-height: 1.2;
	}

	/* Horizontal scroll galleries — touch-scroll friendly */
	.scroll-container img,
	.scroll-container video {
		height: 75vw;
		max-height: 480px;
		min-height: 220px;
	}

	.vertical-scroll img {
		height: auto;
		width: 100%;
		object-fit: contain;
	}

	/* About Me body */
	.body {
		width: auto;
		margin: 32px 20px;
	}

	.resume-link,
	.dwnld-link {
		width: auto;
		box-sizing: border-box;
		padding: 10px;
		text-align: center;
	}

	/* Photo gallery covers */
	.cover-link {
		flex-direction: column;
		height: auto;
		gap: 20px;
		align-items: stretch;
		padding: 0 0 20px 0;
	}

	.mnhtn-cover,
	.rdtrip-cover,
	.gc-cover {
		width: 100%;
		height: 200px;
	}

	/* Manhattan stats section */
	.section-2 {
		padding: 0 0 60vw 0;
		background-size: cover;
		background-position: center top;
	}

	.mnhtn-stats {
		width: auto;
		box-sizing: border-box;
		margin: 12px;
		font-size: 11px;
	}

	.mnhtn-img {
		height: auto;
		width: 100%;
	}
}