/* Simple style matching Organic Design's colour scheme */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	/* Use the same light background colour and pollen texture found on
		 organicdesign.nz. The image URL points to the file on their server
		 and will load the subtle pollen pattern. */
	background: #f4f4f4 url('https://organicdesign.nz/files/f/f8/Od-pollen-bg2.jpg') no-repeat left top;
	color: #333;
}

/* Navigation bar in the top right of every page */
nav {
	text-align: right;
	padding: 10px 20px 50px 20px;
	background: transparent;
	font-size: 0.9rem;
}

nav a {
	color: #217a28;
	text-decoration: none;
	margin: 0 10px;		/* equal left and right spacing */
}

/* remove extra left margin on the first item and right margin on the last item */
nav a:first-child { margin-left: 0; }
nav a:last-child {	margin-right: 0; }
nav a:hover {
	text-decoration: underline;
}

/* selected item */
nav a.current {
	cursor: default;
	font-weight: bold;
	color: #4e507f;
}
nav a.current:hover {
	text-decoration: none;
}

h1, h2, h3 {
	color: #4e507f; /* heading colour from Organic Design theme */
	margin-top: 1em;
}

.container {
	max-width: 960px;
	margin: 60px auto;
	padding: 60px 20px;
	background: rgba(255, 255, 255, 0.9) url('https://organicdesign.nz/files/4/41/Organicdesign.jpg') no-repeat right top;
	border-radius: 10px 10px 0 0;	/* double the previous 5 px radius */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Links in the main content container should match nav link colour */
.container a {
	color: #217a28;
	text-decoration: none;
}
.container a:hover {
	text-decoration: underline;
}

ul {
	list-style-type: disc;
	margin-left: 1.5em;
}

/* Small helper classes */
.button {
	display: inline-block;
	padding: 8px 12px;
	background: #217a28;
	color: white;
	border-radius: 4px;
	text-decoration: none;
}

.button:hover {
	background: #1b5f20;
}

/* contact foirm */
form#contact-form {
	max-width: 400px;
	margin-top: 20px;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	font-size: 14px;
}

form#contact-form label {
	font-weight: bold;
	display: block;
	margin-top: 12px;
}

form#contact-form input,
form#contact-form textarea {
	width: 100%;
	padding: 7px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

form#contact-form input[type="submit"] {
	background-color: #eee;
	color: #000;
	font-weight: normal;
	cursor: pointer;
	margin-top: 18px;
	border: 1px solid #ccc;
	transition: background-color 0.2s ease;
}

form#contact-form input[type="submit"]:hover {
	background-color: #ddd;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
