/* CSS Document */

body {
    background-color: white;
    color: black;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: auto;
    margin: 0;
    padding: 0;	
}

/* HEADER */

header {
    background-color:black;
    background-image: url("images/PrintCraft\ header.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 300px; /* height to accomodate hero typeset image */
    padding:0;
    text-align: center;
    width: 100%;
}

header a {
    color: white;
    font-size: 16px;
    margin-top: 15px;
    text-decoration: none;
    text-transform: uppercase;
}

header .mobile {
    display: none;

}

header .logo a {
    background-image: url("images/PC_Logo.png");
    background-repeat: no-repeat;
    background-size: 300px;
    display: inline-block;
    height: 80px;
    position: relative;
    text-indent: -999999px;
    top: -15px;
    width: 300px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display:inline-block;
    font-size: small;
    margin: 20px; 
}
/* Responsive Rules*/

@media screen and (max-width: 850px) { 
    header .mobile {
        display: inline-block;
    }

    header .desktop {
        display: none;
    }
}

/* HOME - BAND OF 3 IMAGES*/


.features { /* this sets the layout of the 3 images */
    align-items: center;
    background-color: rgb(211, 211, 211);
    color: black;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    justify-content: space-evenly;
    padding: 20px;
}

.features figure {
    margin: auto;
    text-align: center;
    width: 100px;
}

.features figure img {  /* this sets the circles for the images */
    border-radius: 50%;
    box-shadow: rgb(73, 73, 74) 10px 10px 10px;
    width: 100px;
}

/* PRODUCTS - BAND OF 3 IMAGES*/

.products { /* this sets the layout of the 3 images */
    align-items: center;
    background-color: rgb(211, 211, 211);
    color: black;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    justify-content: space-evenly;
    padding: 20px;
}

.products figure { 
    margin: auto;
    text-align: center;
    width: 100px;
}

.products figure img {  /* this sets the circles for the images */
    border-radius: 50%;
    box-shadow: rgb(73, 73, 74) 10px 10px 10px;
    width: 100px;
}

/* SERVICES - BAND OF 3 IMAGES*/

.services {  /* this sets the layout of the 3 images */
    align-items: center;
    background-color:#d3d3d3;
    color: black;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    justify-content: space-evenly;
    padding: 20px;
}

.services figure { 
    margin: auto;
    text-align: center;
    width: 100px;
}

.services figure img {  /* this sets the circles for the images */
    border-radius: 50%;
    box-shadow: rgb(73, 73, 74) 10px 10px 10px;
    width: 100px;
}

/* PRODUCTS */

.printing {
    columns: 100px 6;
    font-size: 16px;
    list-style: none;
    padding: 40px;
    text-align: center;
}

/* SERVICES */

.bindery {
    columns: 100px 3;
    list-style: none;
    padding: 40px;
    text-align: center; 
}

/* Button on CONTACT page */ 

.button {
    background-color: #2d2d35;
    border: none;
    border-radius: 50%;
    box-shadow: rgb(73, 73, 74) 5px 5px 5px; 
    color: white;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-left: 110px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    width: 150px;
}
/* FOOTER */

footer {
    background-color: black;
    color: #d3d3d3;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: auto;
    margin: 0;
    padding: 30px;
    text-align: center;
}

a:hover {
  color: #0079c1; /* Color when hovering over a link */
}

/* Headings*/

h1 {
    color: #0079c1;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    height: auto;
    margin: 0;
    padding: 25px 20px;
    text-align: center;

}
h2 {
    color: red;
    font-family: 'Times New Roman', Times, serif;
    font-size: 26px;
    font-style: italic;
    font-weight: bolder;
    margin: 25px 100px;
    text-align: center;
}
/* Orignally used on index,services and contact pages. Decided to use h2 for all pgs. Keep for now, just in case */
h3 {
    color: #353E43;
    font-family:  'Times New Roman', Times, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: bolder;
    margin: 25px 100px;
}

h4 {
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 19px;
    height: auto;
    margin: 25px 100px;
    text-align: left;
    
}image

/* 404 Page Not Found */

.error {
    font-weight: bold;
    margin: auto;
}