/* === HERO SECTION SETUP === */
/* Wrapper for hero section */
#wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 3;
}

/* Header centered in hero */
#header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 5;
}

/* === BACKGROUND IMAGES === */
/* Hero background image - ONLY for hero section */
#bg:after {
	background-image: url("images/hero.png") !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Dark overlay for readability - ONLY for hero section */
#bg:before {
	background-image: linear-gradient(to top, rgba(19, 21, 25, 0.3), rgba(19, 21, 25, 0.3)), url("../../images/overlay.png") !important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 2;
}

/* === MAIN CONTENT SECTIONS === */
/* Force main content to be visible with highest z-index */
#main {
	position: relative;
	z-index: 999 !important;
	background: white;
	margin-top: 0;
	clear: both;
}

/* Force all sections to be visible */
#main section {
	display: block !important;
	opacity: 1 !important;
	transform: none !important;
	position: relative !important;
	z-index: 1000 !important;
	background: inherit !important;
}

/* === SECTION SPACING & PASTEL COLORS === */

/* Give each section a distinct but subtle tone */
#intro {
	background: #fdfbf9; /* warm white */
}

#innerwork {
	background: #f9f6f3; /* very light beige */
}

#about {
	background: #f6f3f1; /* slightly deeper beige */
}

#essence {
	background: #f3efed; /* calm soft taupe tone */
}

/* Shared section layout */
.content-section {
	position: relative;
	z-index: 4;
	padding: 8rem 0;
	text-align: center;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.content-section .container {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 3rem;
}

/* Headings: calm, elegant */
.content-section h2 {
	font-size: 2.4rem;
	font-weight: 300;
	color: #2e2e2e;
	margin-bottom: 2.8rem;
	letter-spacing: 0.15rem;
	text-transform: uppercase;
}

/* Paragraph text */
.content-section p {
	font-size: 1.25rem;
	line-height: 1.9;
	color: #3a3a3a;
	font-weight: 300;
	margin-bottom: 2.2rem;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

/* Emphasized closing sentence */
.content-section strong {
	color: #222;
	font-weight: 700;
}

/* H3 styling for subsections */
.content-section h3 {
	font-size: 1.6rem;
	font-weight: 400;
	color: #2e2e2e;
	margin-bottom: 1.5rem;
	margin-top: 2.5rem;
	letter-spacing: 0.05rem;
}

/* Simple bullet point list styling */
.content-section ul {
	max-width: 400px;
	margin: 0 auto 2.2rem auto;
	padding-left: 0;
	list-style: none;
}

.content-section ul li {
	font-size: 1.25rem;
	line-height: 1.9;
	color: #3a3a3a;
	font-weight: 300;
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
}

.content-section ul li:before {
	content: "•";
	color: #a98467;
	position: relative;
	left: 0;
	font-size: 1.4rem;
	line-height: 1.6;
}

/* Button styling with proper centering */
.button.primary {
	display: inline-block;
	background: #a98467;
	color: #fff !important;
	padding: 0.9em 2.2em;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	margin-top: 2em;
	transition: background 0.25s ease;
	text-align: center;
	vertical-align: middle;
	line-height: 1.4;
	border: none;
	cursor: pointer;
}

.button.primary:hover {
	background: #8c7358;
}

/* Center the actions container */
.actions {
	text-align: center;
	margin-top: 2rem;
}

/* Footer spacing to balance end */
#footer {
	background: #f2eeec;
	padding: 3rem 1rem;
	text-align: center;
	color: #666;
	font-size: 0.95rem;
	margin-top: 6rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Smooth scrolling remains */
html {
	scroll-behavior: smooth;
}

/* === RESPONSIVE ADJUSTMENTS === */

/* Tablet styles */
@media screen and (max-width: 980px) {
	.content-section {
		padding: 6rem 0;
	}

	.content-section .container {
		padding: 0 2rem;
	}

	.content-section h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.content-section h3 {
		font-size: 1.4rem;
		margin-bottom: 1.2rem;
		margin-top: 2rem;
	}

	.content-section p {
		font-size: 1.1rem;
		line-height: 1.8;
		margin-bottom: 1.8rem;
	}

	.content-section ul {
		max-width: 350px;
	}

	.content-section ul li {
		font-size: 1.1rem;
		margin-bottom: 0.6rem;
	}

	/* Hero section adjustments */
	#header .content h1 {
		font-size: 2.5rem !important;
	}

	#header .content p {
		font-size: 1.1rem !important;
	}
}

/* Mobile phones */
@media screen and (max-width: 736px) {
	.content-section {
		padding: 4rem 0;
	}

	.content-section .container {
		padding: 0 1.5rem;
	}

	.content-section h2 {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
		letter-spacing: 0.08rem;
	}

	.content-section h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
		margin-top: 1.5rem;
	}

	.content-section p {
		font-size: 1.05rem;
		line-height: 1.7;
		margin-bottom: 1.5rem;
	}

	.content-section ul {
		max-width: 300px;
	}

	.content-section ul li {
		font-size: 1.05rem;
		margin-bottom: 0.5rem;
		padding-left: 1.2rem;
	}

	/* Hero section mobile */
	#header .content h1 {
		font-size: 2.2rem !important;
		margin-bottom: 1rem !important;
	}

	#header .content p {
		font-size: 1rem !important;
	}

	/* Navigation mobile */
	#header nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}

	#header nav ul li {
		margin: 0.3rem;
	}

	/* Button mobile */
	.button.primary {
		font-size: 0.95rem;
		padding: 0.8em 1.8em;
		margin-top: 1.5em;
	}
}

/* Small mobile phones */
@media screen and (max-width: 480px) {
	.content-section {
		padding: 3rem 0;
	}

	.content-section .container {
		padding: 0 1rem;
	}

	.content-section h2 {
		font-size: 1.6rem;
		letter-spacing: 0.05rem;
		margin-bottom: 1.2rem;
	}

	.content-section h3 {
		font-size: 1.2rem;
		margin-bottom: 0.8rem;
		margin-top: 1.2rem;
	}

	.content-section p {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 1.2rem;
	}

	.content-section ul {
		max-width: 280px;
	}

	.content-section ul li {
		font-size: 1rem;
		margin-bottom: 0.4rem;
		padding-left: 1rem;
	}

	.content-section ul li:before {
		font-size: 1.2rem;
	}

	/* Hero section very small mobile */
	#header .content h1 {
		font-size: 1.9rem !important;
		margin-bottom: 0.8rem !important;
	}

	#header .content p {
		font-size: 0.95rem !important;
	}

	/* Navigation very small mobile */
	#header nav ul li {
		margin: 0.2rem;
	}

	#header nav ul li a {
		font-size: 0.9rem;
		padding: 0.5rem 0.8rem;
	}

	/* Button very small mobile */
	.button.primary {
		font-size: 0.9rem;
		padding: 0.7em 1.5em;
		margin-top: 1.2em;
	}

	/* Footer mobile */
	#footer {
		padding: 2rem 1rem;
		margin-top: 4rem;
		font-size: 0.85rem;
	}
}
