/**
 * Index stylesheet for BK Modelbouw
 *
 * @author      Wouter Van den Heede
 *
 */

/* =============================================
 * CONTACT PAGE
 =============================================== */
#content h2 {
	padding-top: 4rem;
	border-bottom: 2px solid #27223E;
	width: 44rem;
}

#information p {
	margin-top: 3rem;
}

#address h3 {
	font-family: "Times New Roman";
	font-size: 1.8rem;
	line-height: 1.4em;
	color: #27223E;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

#address h3:after {
	content:':';
}

#address p, address {
	font-style: normal;
}

#address table {
	margin-bottom: 4rem;
}

#address table td {
	padding-right: 2rem;
}

/* form */
#contact form dl {
	margin-top: -2rem;
}

#contact form dt, #contact form dd{
	line-height: 2.4rem;
}

#content input[type=text] {
	width: 100%;
}

#content textarea {
	width: 100%;
}

#content input[type=submit] {
	padding: 0.5rem;
	color: #FFFFFF;
	background-color: #27223E;
	border: 1px solid #FFFFFF;
	cursor: pointer;
	margin-bottom: 5rem;
}

form input {
	display: block;
	margin-top: 0.5rem;
	padding: 0.8rem;
	border:none;
}

form textarea {
	margin-top: 0.5rem;
	border: none;
	resize: none;
}

input, textarea {
	font-family: helvetica;
	color: #27223E;
	font-size: 1.5rem;
}

textarea {
	padding-left: 0.8rem;
	padding-top: 0.8rem;
}

/* ===============
   Media queries
   =============== */
@media (max-width: 21em) { /* your breakpoint in em here */
	#content h2 {
		width: 20rem;
		text-align: center;
	}
}

@media (min-width: 21em) and (max-width: 30em) { /* your breakpoint in em here */
	#content h2 {
		width: 33rem;
		text-align: center;
	}
}

@media (min-width: 45em) { /* your breakpoint in em here */
	/* =============================================
	 * CONTACT PAGE
	 =============================================== */
	#information p {
		width: 42%;
	}

	#address {
		float: left;
		width: 25%;
	}

	#contact {
		float: right;
		width: 50%;
	}

	/* form */
	#contact form dt, #contact form dd{
		min-height: 2.4rem;
	}

	#content input[type=submit] {
		float: right;
	}

	form dd {
		float: left;
		width: 100%;
	}
}


