@charset "utf-8";
/* CSS Document */

/*headline: font-family: font-family: "Open Sans", sans-serif;
    paragraph: font-family:   font-family: "Source Serif 4", serif;
*/

/*Parsian Poster Act
  cool green: #6BBFB7;
    light grey: #BABFBF;
    meduim grey: #A1A6A5;
    dark grey: #888C8C;
    Beje : #FFF8E9;
*/


* { 
	box-sizing:border-box;
	margin: 0;
}

body {
	margin: 0 auto;
	padding: 0;
	width: 100;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans", sans-serif;
}


p {
	font-family: "Source Serif 4", serif;
}
/*center an image */

img {
	display: block;
	margin-left:auto;
	margin-right:auto;
}

/*main navigation*/
#mainNav {
	overflow:hidden;
	margin: 0;
	dosplay: block;
	position: fixed;
	background-color: #6BBFB7;
	width: 100;
	font-family: "Open Sans", sans-serif;
	height: 47px;
	
}


#mainNav a {
	float: left;
	margin: 0;
	display: inline-block;
	color: #888C8C;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none; /*removes underline*/
	
}

#mainNav a:hover {
	background-color: #FFF8E9;
	color: #888C8C;
	font-weight: 900
}

#mainNav-right .active {
	background-color: #6BBFB7;
	color: #888C8C;
	
	
}

#mainNav-right {
	float: right;
	
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

/*banner section*/ 

.home_bg {
	background: #FFF8E9 url("../images/williamcho-justice-2060093_1920.jpg") no-repeat center center;
	background-size: cover;
	height: 500px;
	margin-top: 20px;
}


.home_bg h1 {
	text-align: center;
 	color: #6BBFB7;
	font-size: 3em;
}

/*flexbox 2 colum layout*/ 

.container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items:baseline;
	
}


.element {
	margin: 0;
	padding: 0.5em;
	flex-basis: 40%;
	/*2 colum width is 40% and 3 colum width is 30%*/ 
}


.element h2 {
	font-size: 2em;
	text-align: center;
	font-weight: 900;
	
}


.basic {
	background: white url( "../images/pachecoytalo-statue-8989509_1920.png") no-repeat center;
	background-size: cover;
	height: 400px
}


.anatomy {
	background: white url( "../images/geralt-definition-4255411_1920.jpg") no-repeat center;
	background-size: cover;
	height: 400px
}


footer{
	background-color:#888C8C;
	text-align: center;
	line-height:60px;
	color: #BABFBF;
}

/* ==========================================================================
   Contact Page Styles (Append to the bottom of your main_.css file)
   ========================================================================== */

/* Header variant for the Contact Page - uses background color instead of image */
.contact_bg {
    background-color: #FFF8E9;
    height: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_bg h1 {
    text-align: center;
    color: #6BBFB7;
    font-size: 3em;
    margin: 0;
}

/* Flexbox wrapper to perfectly center the contact form block on the page */
.contact_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 1em;
    background-color: #FFF8E9; /* Blends with header background color */
}

/* The single-column container block */
.contact_box {
    flex-basis: 100%;
    max-width: 600px; /* Constrains width so text doesn't stretch too wide */
    background: white;
    padding: 2.5em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact_box h2 {
    color: #888C8C;
    margin-bottom: 0.5em;
    text-align: center;
}

.contact_intro {
    text-align: center;
    margin-bottom: 2em;
    color: #888C8C;
    line-height: 1.6;
}

/* Layout for individual form elements */
.contact_form {
    display: flex;
    flex-direction: column;
}

.form_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5em;
}

.form_group label {
    font-family: "Open Sans", sans-serif;
    color: #888C8C;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.form_group input, 
.form_group textarea {
    font-family: "Source Serif 4", serif;
    padding: 0.8em;
    border: 1px solid #BABFBF;
    border-radius: 4px;
    background-color: #FFF8E9;
    color: #888C8C;
    font-size: 1em;
}

/* Changes border color dynamically when clicking into inputs */
.form_group input:focus, 
.form_group textarea:focus {
    outline: none;
    border-color: #6BBFB7;
}

/* Submit button customization using your existing palette */
.submit_btn {
    font-family: "Open Sans", sans-serif;
    background-color: #6BBFB7;
    color: #FFF8E9;
    padding: 1em;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit_btn:hover {
    background-color: #888C8C;
    color: #FFF8E9;
}

