﻿/* General  
----------------------------------------------------------*/
html {
    margin: 0;
    padding: 0;
}

header, footer, hgroup,
nav, section {
    display: block;
}

body {
    color: #4c483c;
    font-family: Corbel;
    font-size: 1.0em;
    margin: 0;
    padding: 0;
}

a:link {
    color: #3b3420; /*what is this for?*/
    text-decoration: none;
}

a:visited {
    color: #625e53;
    text-decoration: none;
}

a:hover {
    color: #c6c1bb;
    text-decoration: none;
}

a:active {
    color: #c6c1bb;
}

/* Basic Layout
----------------------------------------------------------*/
#page {
    margin: 0 auto;
    width: 800px;
}

header {
    height: 80px;
    padding: .4cm 0cm 0cm 0cm;
}

#body, footer {
    border-top: 1px solid #625e53;
    clear: both;
}

footer {
    margin-bottom: 15px;
    color: #4c483c;
    text-align: left;
}

/* Menu
----------------------------------------------------------*/
nav ul {
    float: right;
    font-size: .84em;
    font-weight: 500;
    font-family: Ebrima, Ebrima, Ebrima, Ebrima;
    list-style: none;
    margin: 10px 0 0 0;
}

nav ul li {
    float: left;
    margin-left: 25px;
}

.site-title a {
    background: transparent url(../Images/Welderbill.png) no-repeat;
    float: left;
    height: 60px;
    width: 650px;
    margin-left: -10px;
    margin-bottom:  -35px;
}

/* Home Page
----------------------------------------------------------*/
.homeHeader {
   font-size: 90%;
   font-weight: 600;
}

.homeColumns {
  display: flex;
  line-height: 185%;
  margin-top: 0px;
  margin-bottom: 4px;
  margin-left: 5px;
}

.homeImage {
  flex: 2;
  margin-right: 20px;
} 

.homeImage2 {
  flex: 2;
  margin-right: 10px;
  width: 125px;
} 

.homeStatement {
  flex: 1.37;
  font-size: 103%;
  font-weight: 500;
  /*text-align: right;*/
  text-align: justify;
  margin-top: -4px;
}

.homeStatement2 {
  flex: 1.37;
  font-size: 103%;
  font-weight: 500;
  text-align: left;
  margin-top: -8px;
}

.photoCredit {
  font-size: 75%;
  margin-top: -15px;
  margin-bottom: 10px;
}

.sculptureRow {
  width: 300px;
  margin-left: 5px; 
  margin-bottom: 17px;
}

/* Gallery
----------------------------------------------------------*/
.gallery {
    margin-top: 16px;
    margin-right: 5px;
    margin-bottom: 9px;
    margin-left: 5px;
    float: left;
}
    
.gallery:hover {
    outline: 1px solid #777;
}

.desc {
    padding: 3px;
    font-size: 80%;
    text-align: center;
}

/* Piece
----------------------------------------------------------*/
fieldset.desc_narr {
    border: 1px solid #4c483c;
    font-size: 100%;
    width: 60%;
    margin: auto;
    margin-bottom: 16px;
    padding: .5em;
}

fieldset.desc_wide {
    border: 1px solid #4c483c;
    font-size: 100%;
    width: 100%;
    margin: auto;
    margin-bottom: 16px;
    padding: .5em;
}

/*Slideshow
----------------------------------------------------------*/

/*slideshow code*/
* {box-sizing:border-box}

.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    text-align: center;
}

.mySlides {
    display: none;
}

/*Left/Right arrows for narrow images*/
.prev_narr {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 20%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 38px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next_narr {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 38px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
}

/*Left/Right arrows for wide images*/
.prev_wide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 0%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 38px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next_wide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 38px;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev_narr:hover, .next_narr:hover {
  background-color: #4c483c;
}

.prev_wide:hover, .next_wide:hover {
  background-color: #4c483c;
}

/* The dots/bullets/indicators */
.twodots, .threedots {
  cursor:pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* About the Artist
----------------------------------------------------------*/
.aboutColumns {
  display: flex;
  line-height: 133%;
  padding: 6px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.aboutImage {
  flex: 1;
  margin-bottom: 1px;
} 

.aboutArticle {
  flex: 1;
  font-size: 95%;
  text-align: justify;
  margin-top: -3px;
  
}

/* Contact
----------------------------------------------------------*/
.contactStyle { 
    font-size: 101%;
    font-weight: 500;
    color: #4c483c;
    margin-top: 20px;
    margin-right: 135px;
    margin-left: 135px;
    text-align: center;
}

.thanksandErrorStyle {
    font-size: 120%;
    text-align: center;
}

/*Validation of Contact Form*/

.validation-summary-errors {
    color: #4c483c;
    font-size: 100%;
    font-style: italic;
    margin-top: -5px;
    margin-left: -38px;
}

.field-validation-error {
    color:  #ff6a00;
    font-size: 100%;
}

.input-validation-error {
    color: #4c483c;
    background-color: #ff80ff;
}

.help-block ul {
    list-style-type: none;
    grid-row-align: center;
    margin-left: 0px;
    margin-top: 5px;
}

/*Contact Form Components*/
input[type=text], select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #4c483c;
    border-radius: 3px;
    box-sizing: border-box;
    margin-top: 3px;
    margin-bottom: 12px;
    resize: vertical;
    font-size: 80%;
    color: #4c483c;
}

input[type=submit] {
    background-color: #4c483c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 8px;
}

input[type=submit]:hover {
    background-color: #4c483c;
}

.contactForm {
    border-radius: 5px;
    background-color: white;
    margin-left: 130px;
    margin-right: 130px;
    padding: 10px;
}
    
.contactForm label {
    font-weight: 600;
    font-size:  100%;
}
