/* ==================================================
ABOUT PAGE STYLES
Shared CSS for the Sweebrew About page
================================================== */

/* ============================
HERO SECTION
============================ */
.about-hero {
	position: relative;
	width: 100%;
	max-height: 350px;
	overflow: hidden;
	border-bottom: 4px solid #eee;
}

.about-hero img.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(70%);
}

.about-hero-text {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	text-shadow: 0 3px 6px rgba(0,0,0,0.6);
	width: 100%;
}

.about-hero-text h1 {
	font-size: 42px;
	margin: 0;
	font-family: 'Garamond', Georgia, serif;
	font-weight: 600;
	letter-spacing: 2px;
}

.about-hero-text p {
	font-size: 18px;
	margin-top: 8px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
}

.about-hero-text .separator {
	margin: 0 15px;
	opacity: 0.8;
}

/* ============================
QUOTE SECTION
============================ */
.quote-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
	padding: 25px 0;
	border-bottom: 1px solid #e0e0e0;
}

.about-quote {
	border: none;
	margin: 0;
	padding: 0;
	font-family: 'Garamond', Georgia, serif;
	font-size: 22px;
	font-style: italic;
	color: #444;
	text-align: center;
	line-height: 1.5;
}

.about-quote footer {
	margin-top: 10px;
	font-size: 16px;
	font-style: normal;
	color: #6072FE;
	font-family: 'Lato', sans-serif;
}

/* ============================
MAIN CONTENT
============================ */
.about-content {
	padding: 0;
}

.about-section {
	padding: 40px 0;
	transition: background 0.3s ease;
}

.about-section.alt-background {
	background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
}

.about-section:last-of-type {
	padding-bottom: 50px;
}

/* ============================
SECTION TITLES
============================ */
.section-title {
	font-size: 28px;
	margin-bottom: 15px;
	font-family: 'Garamond', Georgia, serif;
	color: #333;
	position: relative;
}

.section-title .icon {
	margin-right: 10px;
	font-size: 24px;
}

.accent-line {
	width: 50px;
	height: 3px;
	background: #6072FE;
	margin-bottom: 20px;
	transition: width 0.4s ease;
}

.accent-line.center {
	margin: 15px auto 20px;
}

.about-section:hover .accent-line {
	width: 80px;
}

/* ============================
PARAGRAPHS
============================ */
.about-section p {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}

/* ============================
PROFILE PHOTO
============================ */
.profile-photo-wrapper {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.profile-photo {
	width: 135px;
	height: 135px;
	border-radius: 12px;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Gradient frame effect */
	outline: 3px solid transparent;
	outline-offset: -4px;
	background-image: 
		linear-gradient(#fff, #fff),
		linear-gradient(135deg, #6072FE, #8B5CF6, #EC4899);
	background-origin: border-box;
	background-clip: content-box, border-box;
	box-shadow: 
		0 4px 15px rgba(0,0,0,0.15),
		0 0 20px rgba(96, 114, 254, 0.3);
}

.profile-photo:hover {
	transform: scale(1.02);
	box-shadow: 
		0 6px 20px rgba(0,0,0,0.2),
		0 0 30px rgba(96, 114, 254, 0.4);
}

/* ============================
TRAVEL STATS
============================ */
.travel-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 35px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
	padding: 20px 30px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
	display: block;
	font-size: 36px;
	font-family: 'Garamond', Georgia, serif;
	color: #6072FE;
	font-weight: 600;
}

.stat-label {
	display: block;
	font-size: 13px;
	color: #777;
	margin-top: 5px;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ============================
GEAR GRID
============================ */
.gear-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.gear-item {
	text-align: center;
	padding: 20px 15px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gear-icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.gear-icon-img {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	object-fit: contain;
}

.gear-icon-img {
	background: #fff;
	border-radius: 8px;
	padding: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gear-item h4 {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	color: #333;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gear-item p {
	font-size: 13px;
	color: #6072FE;
	margin: 0;
	font-family: 'Lato', sans-serif;
}

.gear-item p + p {
	margin-top: 3px;
}

/* ============================
FAVORITES GRID
============================ */
.favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.favorite-item {
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 3px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 4px solid #6072FE;
}

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

.favorite-icon {
	font-size: 32px;
	margin-bottom: 10px;
}

.favorite-item h4 {
	font-size: 18px;
	font-family: 'Garamond', Georgia, serif;
	color: #333;
	margin-bottom: 8px;
}

.favorite-item p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* ============================
CONTACT SECTION
============================ */
.contact-text {
	font-size: 18px;
	margin-bottom: 25px;
}

.contact-email-btn {
	display: inline-block;
	padding: 14px 35px;
	background: linear-gradient(135deg, #6072FE 0%, #4a5de0 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-size: 20px;
	font-family: 'Garamond', Georgia, serif;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-email-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(96, 114, 254, 0.4);
}

.email-icon {
	margin-right: 10px;
}

/* Social Links */
.social-links {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: #fff;
	color: #555;
	text-decoration: none;
	border-radius: 30px;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
}

.social-btn:hover {
	border-color: #6072FE;
	color: #6072FE;
	transform: translateY(-2px);
}

.social-btn span {
	margin-right: 8px;
}

/* Signature */
.signature-wrapper {
	margin-top: 35px;
	text-align: center;
}

.signature {
	font-family: 'Great Vibes', cursive;
	font-size: 42px;
	color: #6072FE;
	margin: 0;
	opacity: 0.9;
}

/* ============================
RESPONSIVE DESIGN
============================ */
@media (max-width: 768px) {
	.about-hero img.hero-image {
		height: 400px;
	}
	
	.about-hero-text h1 {
		font-size: 36px;
	}
	
	.about-hero-text {
		bottom: 30px;
	}
	
	.about-quote {
		font-size: 22px;
		padding: 0 20px;
	}
	
	.section-title {
		font-size: 28px;
	}
	
	.about-section {
		padding: 50px 0;
	}
	
	.profile-photo {
		width: 135px;
		height: 135px;
		border-radius: 12px;
		margin: 0 auto 20px;
		float: none;
		display: block;
		shape-outside: none;
		/* Gradient frame effect */
		background-image: 
			linear-gradient(#fff, #fff),
			linear-gradient(135deg, #6072FE, #8B5CF6, #EC4899);
		background-origin: border-box;
		background-clip: content-box, border-box;
		box-shadow: 
			0 4px 15px rgba(0,0,0,0.15),
			0 0 20px rgba(96, 114, 254, 0.3);
	}
	
	.travel-stats {
		gap: 20px;
	}
	
	.stat-item {
		padding: 20px 25px;
		min-width: 120px;
	}
	
	.stat-number {
		font-size: 32px;
	}
	
	.gear-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.favorites-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-email-btn {
		font-size: 18px;
		padding: 15px 30px;
	}
}

@media (max-width: 480px) {
	.about-hero img.hero-image {
		height: 350px;
	}
	
	.about-hero-text h1 {
		font-size: 28px;
	}
	
	.about-hero-text p {
		font-size: 16px;
	}
	
	.about-quote {
		font-size: 18px;
	}
	
	.section-title {
		font-size: 24px;
		text-align: center;
	}
	
	.accent-line {
		margin: 20px auto 30px;
	}
	
	.about-section p {
		font-size: 16px;
	}
	
	.gear-grid {
		grid-template-columns: 1fr;
	}
	
	.signature {
		font-size: 36px;
	}
}

/* ============================
PAGE FADE-IN
============================ */
body {
	opacity: 0;
	transition: opacity 0.5s ease;
}

body.loaded {
	opacity: 1;
}

/* ============================
SCROLL REVEAL ANIMATION (Optional - requires JS to add .visible class)
============================ */
.about-section {
	/* Removed scroll reveal - sections visible by default */
}
