/*----CSS STYLE FOR PORTFOLIO SITE----*/
/*----Colors----
Dark Teal: #016670;
Light Teal: #9FEDD7;
Burgundy: #613033;
Yellow: #FBE180;
--------------*/
/*--------UNIVERSAL---------*/
* {
    max-width: 1200px;
    margin: auto;
    font-family: "lato", sans-serif;
    box-sizing: border-box;
}
header {
    text-align: center;
}


/* ----------------------------------------------------- */
/* --------- Typography: Heading & Body Copy ----------- */
/* ----------------------------------------------------- */
/* These are the font families of all the headings and body copy */

body, #body-copy {
	font-family: 'Lato', sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Cinzel', serif;
}
p {
    padding: 10px;
}
h1, h2 {
    font-family: 'Cinzel',serif;
   /* padding: 20px;*/
    font-size: 30px;
    font-weight: 700;
}
/*this adds a fading effect on the color change for the navigations*/
a {
    text-decoration: none;
    -webkit-transition: color, background  .75s ease-out;
    -moz-transition: color, background  .75s ease-out;
    -o-transition: color, background .75s ease-out;
    transition: color, background .75s ease-out;
}
/*-------LOGO----------*/
svg {
    width: 100%;
    height: 100%;
}
#logo {
    width: 75%;
    margin: auto;
}
/*-------HEADER---------*/
header {
    margin: 30px;
    margin-top: 0;
}
/*------NAVICATION-------*/
.nav_ul {
    list-style-type: none;
    display: inline-flex;
    text-align: center;
    padding-left: 0;
}
footer {
    background-color: gray;
    font-size: 25px;
    padding: 5px;
    font-family: 'Lato', sans-serif;
}
.tabs{
    display: inline-flex;
    padding: 1em;
    margin: 5px;
    text-decoration: none;
    color: #016670;
    text-align: left;
    font-size: 1.5vw;
}
.foot_tabs {
    display: inline-flex;
    padding: 5px;
    margin: 5px;
    text-decoration: none;
    color: white;
}
.active {
    background: #016670;
    color: white;
}
.active:hover {
    color: #016670;
}
.tabs:hover, .foot_tabs:hover {
    background: #FBE180;
    color: #016670;
}
#service:hover #service_list, #service:active #service_list {
    display: block;
}
#service_list {
    display: none;
    position: absolute;
}
#service_list ul {
    list-style-type: none;
    padding-left: 8px;
    text-align: center;
}
#service_list li {
    font-size: 1vw;
}
#service_list li > a  {
    display: block;
    color: #016670;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
}
#service_list li > a:hover {
    background-color: #FBE180;
    color: white;
}
/*------MAIN-----------*/
main {
    text-align: center;
    margin: auto;
}
.page-tag {
    margin-top: 75px;
    font-family: 'Cinzel',serif;
    padding: 10px;
    color: #613033;
}
/*----Collage----*/
.collage-block {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    padding-bottom: 60px;
}
.collage:hover {
    box-shadow: 2px 2px 2px #016670;
}
.collage {
    flex: 33%;
    max-width: 33%;
    padding: 10px;
}
.collage img {
    width: 100%;
}

/*------FOOTER-----------*/
footer {
    color: white;
    text-align: center;
}
footer a, footer span {

    font-size: 16px;
}
/*-----CONTACT PAGE------------*/
.social_media {
    max-width: 200px;
    border: solid 10px #FCE181;
    border-radius: 50%;
    margin: 10px;
}
.contact-box {
    border: solid 10px #FCE181;
    width: 450px;
    padding: 10px;
}
.contact-form label, .contact-form input, .contact-form textarea {
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    width: 400px;
    text-align: left;
    margin-left: 0;
}
.contact-form textarea {
    width: 400px;
    height: 200px;
}
button {
    background-color: #FCE181;
    color: #016670;
}
/*------ABOUT PAGE-----------*/
#profile {
    border: solid 10px #FCE181;
    max-width: 200px;
    border-radius: 50%;
}
.italic {
    font-weight: 300;
    color: #613033;
    font-size: 1.5em;
}
.bold {
    font-family: "cinzel", serif;
    font-weight: 700;
    font-size: 1em;
    color: #016670;
}
#about_amanda {
    padding-top: 10em;
}
.check_out {
    margin: 20px;
    border: solid #FCE181;
    padding: 10px;
}
.check_out_link {
    text-decoration: none;
    color: #016670;
    padding: 0px;
    margin: 0px;
}
/*-----GALLERY-----*/
/*this sents up the grid for the gallery pages*/
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1.5em;
  padding: 2em 1em;
  background: white;
  object-fit: cover;
}
.gallery img {
    transition: transform .4s;
}
/*this makes the images pop up when clicked or hover*/
.gallery img:hover, .gallery img:active {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}
figcaption {
    font-family: "lato", sans-serif;
    font-weight: 300;
    text-align: left;
}
.service_info {
    list-style: none;
    color: #016670;
    padding-left: 0;
}
/*----MEDIA QUERY----*/
/*This media query is for screens smaller then 1045px*/
@media screen and (max-width: 1045px) {
    .collage-block {
        display: flex;
        flex-direction: column;
    }
    .tabs {
        font-size: 2.5vw;
        margin: 0;
    }
    #service_list li {
        font-size: 18px;
    }
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .page-tag {
        font-size: 20px;
    }
}
/*This media query is for screens smaller then 800px*/
@media screen and (max-width:800px) {
    .gallery {
        display: block;
    }
    .gallery figure {
        margin-bottom: 15px;
    }
    .page-tag {
        font-size: 15px;
        margin-top: 50px;
    }
    #service_list li {
        font-size: 12px;
    }
}
