/****************************TAG STYLES*******************************/

h1, h2, h3 {
    color: white;
    font-family: 'Playfair Display', serif;
}

h4, h5, h6, a, p {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: black;
}

hr {
    border-width: 2px 0 0 0;
    border-style: solid;
    border-color: white;
    width: 6rem;
}

/****************************CLASS STYLES*******************************/

.main-row {
    margin: 0;
}

.link:hover, .link:visited, .link:link {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.divider {
    width: 50%;
    text-align: center;
    margin-top: 5%;
}

.card-subtitle {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.card-list {
    margin-top: 3%;
    color: white;
    list-style-type: square;
}


.navbar-dark .navbar-toggler {
    width: 47px;
    height: 34px;
    border-radius: 0px;
    border-width: 1px;
    border-color: white;
}
    
.hamburger-line {
    width: 100%;
    float: left;
    height: 2px;
    border-radius: 0px;
    background-color: #fff;
    margin-bottom: 5px; 
    transition-duration: 0.5s;
}

.menu-open1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-open2 {
    transform: translate(0px, 10px);
    background-color: transparent !important;
}

.menu-open3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/************Home Page************/
.home-container {

    background-image: url("Images/fish_background_crop-min-1.jpg");
    background-size: cover;
    background-position: top right;
    background-repeat: repeat;
}

@media (max-width: 1100px) {
    .home-container{
        background-size: 1100px auto;
    }
}

/**Top Section**/

.top-container {
    padding: 8%;
}

.top-container > h1{
    color: white;
    font-weight: 800;
    display: inline-block;
    padding: 0;
    font-size: 8vmax;
}

.top-title {
    margin: 8% 0% 0% 0%;
    margin-left: 0%;
}

.bottom-title {
    margin-left: 5%;
}

@media (max-width: 600px){
    .top-title {
        margin-top: 60%;
    }
}


/**  About Section  **/

#about {
    margin: 0 10% 10% 10%;
    text-align: center;
    color: white;
}

.about-col{
    padding: 10% 5% 0% 5%;
}

.about-title {
    font-weight: 700;
    font-size: 4vmax;
    padding: 10% 5% 0% 5%;
}

/** About Text **/
.about-col > h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2vmax;
}

.about-col > p {
    font-family: 'Montserrat', sans-serif;
    font-size:1vmax;
}

/** Headshot Formatting **/
.image-col {
    text-align: left;
}

.headshot-img {
    width: 24vmax;
    margin-top: 10%;
    border-radius: 100%;
    border-style: solid;
    border-color: #2A3754;
    border-width: .5rem;
}

/*iPad responsiveness*/
@media (max-width: 850px){
    #about {
        margin: 12% 10% 10% 10%;
    }

    .about-title {
        font-size: 6vmax;
    }

    .about-col > h4 {
        font-size: 3vmax;
    }

    .about-col > p {
        font-size: 2vmax;
    }

    .image-col{
        text-align: center;
    }

    .headshot-img {
        width: 24vmax;
        margin-top: 5%;
    }

    .more-info {
        display: none;
    }
}

/*iPhone responsiveness*/
@media (max-width: 600px){
    #about {
        margin: 25% 10% 10% 10%;
    }

    .about-title {
        font-size: 6vmax;
    }

    .about-col > h4 {
        font-size: 4vmax;
    }

    .about-col > p {
        font-size: 2vmax;
    }
    
    .image-col{
        text-align: center;
    }

    .headshot-img {
        width: 10rem;
        margin-top: 5%;
    }
    
    .more-info {
        display: none;
    }
}

/** Work and Projects (Homepage bottom) **/

#work-and-projects {
    margin-top: 16%;
    text-align: center;
    line-height: 1.2;
}

.wap-title {
    font-weight: 700;
    font-size: 3vmax;
}

.wap-row {
    margin: 5% 10% 0% 10%;
}

.wap-col {
    padding: 10;
}

.wap-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    color: white;
    font-family: 'Montserrat', sans-serif !important;
}

.wap-subtitle {
    font-weight: 700;
    font-size: 1.5vmax;
}

.wap-card-text {
    font-size: 1vmax;
}

.wap-btn {
    font-size: .8vmax;
}

.mobile-btn {
    display: none;
}

/** iPad Responsiveness**/
@media (max-width: 850px){
    #work-and-projects {
        margin-top: 15%;
    }

    .mobile-btn {
        display: inline-block;
    }

    .wap-title {
        font-size: 4vmax;
    }

    .wap-card {
        display: none;
    }
}

/** iPhone Responsiveness**/
@media (max-width: 600px){
    #work-and-projects {
        margin-top: 30%;
    }

    .mobile-btn {
        display: inline-block;
    }

    .wap-title {
        font-size: 4vmax;
    }

    .wap-card {
        display: none;
    }
}

/** Footer **/
.footer {
    background-color: black;
    text-align: center;
    padding: 4% 0 2% 0;
}

.footer >p{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
}

.footer-icon {
    color: white;
    font-size: 2.5rem;
    margin: 20px 10px;
}

/************Contact************/

.contact-main-row {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url("Images/mobile.jpg");
    background-size: cover;
    background-position: center center;
}

.contact-row {
    display: block;
    text-align: center;
}

.sub-row {
    margin: 3%;
}

.page-title {
    font-weight: 900;
    font-size: 6vmax;
}

.contact-icon-lg {
    color: white;
    margin: 3% 3%;
    font-size: 6vmax;
}

.contact-icon {
    color: white;
    margin: 1%;
    font-size: 2vmax;
    vertical-align: middle;
}

/************Projects************/
.project-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url("Images/lucha2.jpg");
    background-size: cover;
    background-position: center center;
    display: block;
    text-align: center;
    margin: 0px;
}

.project-bucket {
    margin-top: 5%;
}

.project-head-row {
    display: block;
    text-align: center;
}


.project-row {
    text-align: center;
}

.project-col > p{
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-size: .9vmax;
    margin: 3% 22%;
    color: white;
}

.project-title {
    font-weight: 700;
    font-size: 3vw;
    text-align: left;
}

.project-subtitle {
    margin-top:1%;
    font-weight: 700;
    text-align: left;
}

.project-img {
    width: 20vmax;
    vertical-align: middle;
}

.project-card {
    background-color: black;
    border-radius: 0;
    font-weight: 700;
    overflow: hidden; 
}

.project-card-hidden {
    background-color: black;
}

.project-card-img {
    opacity: 0.4;
    border-radius: 0;
    transition: 0.5s all ease-in-out; 
    height: 100%;
    object-fit: cover;
}

.project-card:hover > img {
    transform: scale(1.15);
}

.project-card:hover .overlay{
    height: 25%
}

.project-card:hover {
    border-color:white;
    border-width: 2px;
}

.project-card-title {
    font-weight: 700;
}

.overlay {
    position: absolute;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.mobile-col {
    display: none;
}

.carousel-control-prev { 
    left: -110px; 
    border-bottom: 0; 
}

.carousel-control-next { 
    right: -110px; 
    border-bottom: 0; 
}

.carousel-indicators {
    bottom: -70px;
}

.carousel-indicators > li {
    height: .5vmax;
    width: .5vmax;
    margin: 0.5%;
}

/*iPhone responsiveness*/
@media (max-width: 600px){
    .project-title {
        font-weight: 700;
        text-align: center;
        font-size: 5vmax;
    }

    .carousel-control-prev { 
        left: 0px; 
        bottom: -280px;
        border-bottom: 0; 
    }
    
    .carousel-control-next { 
        right: 0px; 
        bottom: -280px;
        border-bottom: 0; 
    }
    .carousel-indicators {
        bottom: -80px;
    }

    .carousel-indicators > li {
        height: 1vmax;
        width: 1vmax;
        margin: 0.5%;
    }

    .project-footer {
        margin-top: 20%;
    }

    .mobile-col {
        display: block;
    }

    .desktop-col {
        display:none;
    }
    
}

/************Projects************/
.work-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url("Images/beach-graffiti2-crop.jpg");
    background-size: cover;
    background-position: center center;
    display: block;
    text-align: center;
    margin: 0px;
}

.work-bucket {
    margin-top: 5%;
}

.work-head-row {
    display: block;
    text-align: center;
}

.work-row {
    text-align: center;
}

.work-col {
    text-align: center;
}

.work-col > p{
    font-family: 'Montserrat', sans-serif;
    font-size: .7vmax;
    margin: 3% 0%;
    color: white;
}

.work-text {
    font-family: 'Montserrat', sans-serif;
}

.work-title {
    font-weight: 700;
}

.work-img {
    width: 20rem;
    vertical-align: middle;
    margin: 5%;
    border-radius: 0;
}

.work-card {
    background-color: black;
    border-color: white;
    border-width: 2px;
    border-radius: 0;
}

/** iPad Responsiveness**/
@media (max-width: 850px){
    .work-img {
        width: 25vw;
        text-align: center;
    }

    .work-img-col {
        text-align: center;
    }

    .work-title {
        font-weight: 700;
    }
}

/** iPhone Responsiveness**/
@media (max-width: 600px){
    .work-img {
        width: 25vmax;
    }

    .work-img-col {
        text-align: center;
    }
}



/****************************BOOTSTRAP CLASS OVERRIDE STYLES*******************************/

.navbar-nav > li{
    padding-left:25px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-align: left;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
}

.btn {
    border-radius: 0px;
    padding: .250rem .75rem;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

.bg-dark {
    background-color: black !important;
}

.dropdown-item:active {
    background-color: black !important;
}

.dropdown-menu {
    border-radius: 0px;
    padding: 10px;
}

.card-text {
    margin-top: 5px;
}