/* ============ Root Variables ============ */
:root
{
	--primary-color: #ffef62;   /* your sunny yellow */
	--dark-bg:       #000000;   /* black for contrast */
	--nav-bg:        rgba(69, 69, 69, 0.9); /* semi-opaque navbar */
	--about-text-colour: #000
}

/* ============ Global Styles ============ */

body,
html
{
	height: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

main
{
	padding-top: 5rem; /* adjust based on your navbar height */
	box-sizing: border-box;
}

body
{
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
	overflow-x: hidden;
}

/* ============ Navbar ============ */
.navbar
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 2rem;
	background-color: var(--nav-bg);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link
{
	margin: 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	transition: background 0.3s, color 0.3s;
	color: #fff;
}

.nav-link:hover
{
	background-color: var(--primary-color);
	color: var(--dark-bg);
}

/* ============ Hero Section ============ */
.home-text
{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-image: url('media/imgs/body.jpg');
}
.home-text-about
{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
}

.home-text::before
{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

.home-text h1
{
	position: relative;
	font-family: "Libre Baskerville", serif;
	font-weight: 700;
	font-size: 3rem;
	margin: 0.5rem 0;
	color: var(--primary-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.home-text p
{
	position: relative;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	z-index: 1;
}

/* ============ Call to Action Button ============ */
.cta-button
{
	position: relative;
	background-color: var(--primary-color);
	color: var(--dark-bg);
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	font-weight: bold;
	transition: background 0.3s, color 0.3s;
	z-index: 1;
	border: none;
}

.cta-button:hover
{
	background-color: #796f19;
	color: #fff;
}
/* ============ Utility ============ */
/* (Add any future helpers or responsive tweaks here) */


/*about.html*/
/* ============ About Section ============ */
.about-section
{
	max-width: 800px;
	margin: 8rem auto 4rem auto;
	padding: 2rem;
	background-color: rgba(148, 144, 144, 0.856);
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: left;
	color: #000;
}

.about-section h1
{
	text-align: center;
	font-size: 3rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.about-section h2
{
	font-size: 1.75rem;
	margin-top: 2rem;
	color: #000
}

.about-section p
{
	font-size: 1.1rem;
	line-height: 1.6;
	color: #000;
}

.service-list
{
	margin-top: 1rem;
	padding-left: 1.5rem;
	list-style-type: disc;
}

.service-list li
{
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
	line-height: 1.5;
}
