/*==============================
    NAVIGATION SECTION
================================*/

.nav-menu {
    color: rgb(158, 87, 6);
    font: bold 12px/18px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    display: inline;
    margin: 0% auto;
    padding: 0;
    list-style: none;
    text-decoration: none;

}

.nav-menu li {
    color: #000;
    background-color: rgba(255,255,255,1);
    display: inline-block;
    margin: 0% auto;
    position: relative;
    padding: 15px 4%;
    border: 1px solid #9d9fa2;
    box-shadow: 2px 2px 20px 0 rgba(0,0,0,.5);
    border-radius: 6px;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .4s;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
}

.nav-menu li:hover {
    color: rgb(158, 87, 6);
    background-color: rgb(214, 214, 214);
}

/*=========================================
 GALLERY SECTION ANIMATION
 ==========================================*/

 .photo {
     position: relative;
     line-height: 0;
     margin-bottom: 2em;
     border-radius: 8px;
     overflow: hidden;
     padding: 1px;
     border: 1px solid black;
     background-color: #ffff00;
     box-shadow: 2px 2px 10px 0 rgba(0,0,0,.5);
 }

 .photo-container {
     text-align: center;
     margin: 15px auto;
     width: 225px;
     height: 300;

 }

 .photo-container img {
     max-width: 100%;
     width: 225px;
     height: 300px;

 }

 .photo-overlay {
     color: #fff;
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     padding-left: 20px;
     padding-right: 20px;
     justify-content: center;
     align-items: center;
     background: rgba(0,0,0,.5);
 }

 .photo-head {
     color: #c9bdaa;
     margin-top: 5%;
 }

 /*=====================================
    PHOTO OVERLAY ANIMATIONS
========================================*/

.photo-overlay {
    opacity: 0;
    transition: opacity .5s;
    border-radius: 10px;
    cursor: pointer;
}

.photo-overlay:hover {
    opacity: 1;

}

.photo img {
    transition: transform .5s;
    transform-origin: 50% 50%;
}

.photo:hover img {
    transform: scale(1.3);
}
