/* Global Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #19161c; 
	color: #d1cbd6; 
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
}

/* Navigation Header */
header {
	background-color: #2e2638; 
	padding: 15px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #423652;
}

.logo-container img {
	height: 45px;
	display: block;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 24px;
}

nav ul li a {
	color: #bfaec4;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.8px;
	padding: 8px 0;
	transition: color 0.2s ease, border-color 0.2s ease;
}

nav ul li a:hover, 
nav ul li a.active {
	color: #eadaf0;
	border-bottom: 2px solid #a88cb8;
}

/* Hero Banner Container (Now acts as the stacking context) */
.hero-banner-container {
	width: 100%;
	height: 280px;
	overflow: hidden;
	position: relative; /* Keeps the absolute child image contained here */
}

/* Animated Background Layer */
.hero-banner-animation {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1; /* Sits at the bottom */
	background: linear-gradient(135deg, #2e2638 0%, #685373 25%, #b29bbb 50%, #dfd3e3 75%, #423652 100%);
	background-size: 400% 400%;
	animation: fluidWave 15s ease infinite;
}

@keyframes fluidWave {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Foreground Image Layer (Your placeholder) */
.hero-overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2; /* Sits cleanly on top of the animation */
	object-fit: cover; /* Ensures your image scales nicely without stretching */
	pointer-events: none; /* Allows clicks to pass through if needed */
	
	/* Tip: If you use a black & white or solid graphic, you can uncomment 
	   the line below to let the background animation blend into it dynamically! */
	/* mix-blend-mode: screen; */ 
}

/* Main Content Container */
.main-container {
	max-width: 1600px;
	margin: 40px auto;
	padding: 0 30px;
}

.section-title {
	color: #d2bfe6; 
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 35px;
	letter-spacing: -0.5px;
}

/* Grid Layout for Content */
.content-grid {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

/* Left Column: Profile Picture */
.profile-col {
	flex: 1;
	min-width: 300px;
	max-width: 350px;
}

.profile-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	border: 1px solid #3c3247;
}

/* Middle Column: Bio Text */
.bio-col {
	flex: 1.5;
	font-size: 1rem;
	color: #b1a7b8;
}

.bio-col p {
	margin-bottom: 20px;
}

/* Right Column: Social Sidebar */
.sidebar-col {
	flex: 0.8;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 250px;
	max-width: 270px;
}

.social-button {
	display: flex;
	align-items: center;
	background-color: #25202b;
	color: #cbbada;
	text-decoration: none;
	padding: 14px 18px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.9rem;
	border: 1px solid #342b3d;
	transition: all 0.2s ease;
}

.social-button:hover {
	background-color: #2e2736;
	border-color: #5c4b6c;
	color: #ffffff;
	transform: translateY(-2px);
}

.social-icon {
	margin-right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.social-icon img {
	width: 25px; /* Adjusted to a standard crisp size for social icons */
	height: auto;
	display: block;
}

/* Responsive Design */
@media (max-width: 950px) {
	.content-grid {
		flex-direction: column;
	}
	.sidebar-col, .profile-col, .bio-col {
		width: 100%;
		flex: none;
	}
	header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
}

.blog-embed-content iframe {
    width: 100% !important;
    max-width: 100%;
    border-radius: 4px;
}