* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
} 

/* Theme variables for easy customisation */
:root {
	--primary-color: #007acc; /* main accent colour */
	--secondary-color: #005b9e;
	--text-color: #333;
	--background-color: #f9f9f9;
	--menu-bg: rgba(0, 0, 0, 0.9);
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--primary-color);
	color: white;
	z-index: 1000;
}

.dm-serif-display-regular {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-style: normal;
}

.navbar {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
}

.navbar .logo {
	font-size: 1.5rem;
	font-weight: bold;
	height: 100%;
	width: auto;
}

/* Hide navigation on small screens by default */
.navbar nav {
	display: none;
}


.navbar nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.navbar nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: 500;
}

/* Hamburger icon */
.hamburger {
	display: block;
	cursor: pointer;
	font-size: 1.5rem;
}

/* Hide the checkbox but keep it accessible */
#menu-toggle {
	display: none;
}

/* Show menu when checkbox is checked */
#menu-toggle:checked ~ nav {
	display: block;
	position: absolute;
	top: 60px;
	right: 0;
	width: 100%;
	background-color: var(--menu-bg);
}

#menu-toggle:checked ~ nav ul {
	flex-direction: column;
	align-items: center;
	padding: 1rem 0;
}

#menu-toggle:checked ~ nav ul li {
	margin-bottom: 1rem;
}

/* Desktop navigation */
@media (min-width: 768px) {
	.hamburger {
		display: none;
	}
	.navbar nav {
		display: block !important;
	}
	.navbar nav ul {
		flex-direction: row;
	}
	#menu-toggle:checked ~ nav {
		position: static;
		background: none;
	}
	.about{
		flex-direction: column;
		text-align: left;
	}

	.about-image img{
		width: 150px;
		max-width: 100%;
		height: auto;
	}
}

/* Hero section */
.hero {
	background-image: url('../graphics/hero.png');
	background-size: cover;
	background-position: center;
	color: white;
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 1rem;
}

.hero-text{
	background: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 20px;
	width: 100%;
	display: inline-block;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-family: 'DM Serif Display',serif; 
}

.hero p {
	font-size: 1.25rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Generic section styling */
.section {
	padding: 4rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section h2 {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 2rem;
	text-align: center;
}

/* Services section */
.services .service-item {
	margin-bottom: 2rem;
}

.services .service-item h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

/* About section */
.about {
	background-color: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-container{
	display: flex;
	align-items: left;
	gap: 40px;
}

.about-image{
	/*display: flex;*/
	justify-content: center;
	align-content: top;
}
.about-image img{
	width: 150px;
	height: auto !important;
	max-width: 100%;
	border-radius: 8px;
}

.about-text{
	flex: 1;
}

.about-text p{
	margin-bottom: 16px;
}

/* Contact section */
.contact form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact form input,
.contact form textarea {
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
}

.contact form button {
	padding: 0.75rem;
	border: none;
	background-color: var(--primary-color);
	color: white;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
}

.contact-details {
	text-align: center;
	margin-top: 2rem;
}

footer {
	background-color: var(--secondary-color);
	color: white;
	padding: 1rem;
	text-align: center;
}

.social-banner i {
	font-size: 24px;
	margin: 10px;
	color: #333;
}

.social-banner i:hover {
	color: #0077b5;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background-color: #f0f8ff;
    border-left: 4px solid #0077b5;
    border-radius: 4px;
}