/* CSS Variables for colors and fonts */
:root {
	--bg-color: #1e2125;
	--text-color: #b0b0b0;
	--heading-color: #ffffff;
	--accent-color: #00bcd4;
	--button-bg: #ffffff;
	--button-text: #1e2125;
	--font-family: 'Poppins', sans-serif;
}

/* General Body Styles */
body,
html {
	margin: 0;
	padding: 0;
	background-color: var(--bg-color);
	font-family: var(--font-family);
	color: var(--text-color);
	font-size: 16px;
}

.website-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 2rem;
}

/* Header and Navigation */
.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2rem;
}

.logo {
	font-weight: 700;
	font-size: 2.5rem;
	color: var(--heading-color);
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
}

.main-nav a {
	text-decoration: none;
	color: var(--heading-color);
	font-weight: 600;
	position: relative;
	padding-bottom: 5px;
}

.main-nav a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
}

.cta-button {
	background-color: var(--button-bg);
	color: var(--button-text);
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
}

/* Main Content Grid Layout */
.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	/* align-items: center; */
}

/* Left Column Styling */
.left-column {
	background-image: url('/img/me.jpg');
	background-size: cover;
	background-position: center;
	height: 75vh;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
}

.left-column::before {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background: linear-gradient(180deg, rgba(30, 33, 37, 1) 5%, rgba(30, 33, 37, 0) 40%);
	left: 0;
	top: 0;
	z-index: 0;
}

.left-column::after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background: linear-gradient(0deg, rgba(30, 33, 37, 1) 5%, rgba(30, 33, 37, 0) 40%);
	left: 0;
	bottom: 0;
	z-index: 0;
}

.subtitle {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--accent-color);
	position: relative;
	z-index: 1;
}

.tagline {
	font-size: 1.1rem;
	color: var(--heading-color);
	font-weight: 600;
	position: relative;
	padding-left: 1.5rem;
	z-index: 1;
}

.tagline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1rem;
	height: 2px;
	background-color: var(--accent-color);
}

/* Right Column Styling */
.right-column {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.greeting {
	font-size: 1.1rem;
}

h1 {
	font-size: 3rem;
	color: var(--accent-color);
	margin: 0;
	line-height: 1.1;
}

.bio,
.pricing-section p,
.contact-section p {
	font-size: 1rem;
	line-height: 1.6;
}

h2 {
	color: var(--heading-color);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.portfolio-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-section a {
	color: var(--accent-color);
}

#gallery img {
	height: 150px;
}

/* Responsive Design for Mobile */
@media (max-width: 1024px) {
	.content-grid {
		grid-template-columns: 1fr; /* Stack columns */
	}

	.left-column {
		height: 50vh; /* Adjust height for smaller screens */
	}

	h1 {
		font-size: 2.5rem;
	}

	.logo {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.website-container {
		padding: 1rem;
	}

	.main-header {
		flex-direction: column;
		gap: 1rem;
	}

	.main-nav ul {
		gap: 1.5rem;
		padding: 0;
	}

	.cta-button {
		display: none; /* Hide button on mobile nav */
	}

	.left-column {
		height: 40vh;
	}
}
