/* Dross index.html
   Author: Ray McVeety
   A mockup of an architects portfolio using various methods of display
 */

/* GENERAL PAGE STYLING */
html{
    scroll-behavior: smooth;
}

html, body, h1, h2, h3, ul, li, #Name{
    font-family: 'Roboto', sans-serif;
    background-color: hsl(0, 0%, 96%);
}

a{
    text-decoration: none;
}

li{
    list-style-type: none;
}

/*--------------------------------------------------------------------------------------*/

/* BEGIN TOP OF PAGE STYLES */
.top-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    padding-bottom: 3px;
}

.name{
    grid-area: 1 / 1 / span 1 / span 1;
    color: hsl(0, 0%, 25%);
    transition: all 0.2s;
}
.name:hover{
    color: hsl(0, 0%, 60%);
}

/*END TOP OF PAGE STYLES*/
/*---------------------------------------------------------------------------------------*/

/* BEGIN DROP DOWN STYLES */
.drop-down-btn-container-out{
    grid-area: 1 / 5 / 1 / 6;

}

.drop-down-btn-container{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.drop-down-btn{
    margin-right: 15px;
    margin-top: 10px;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid hsl(0, 0%, 25%);
    z-index: 2;
    position: fixed;
    transition: 0.3s;
}
.drop-down-btn:hover{
    border-top: 10px solid hsl(0, 0%, 60%);
}

/*REMOVE ME ORGINAL CHANGE LOCATION*/


.drop-down-menu{
    position: fixed;
    grid-area: 1 / 5 / 1 / 6;
    width: 19%;
    min-width: 220px;
    height: 34px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    z-index: 1;
    display: none;
}

.drop-down-menu, .drop-down-list, .list-link, .list-link-wrapper{
    background-color: hsl(0, 0%, 92%);
}


.drop-down-list{
    padding-inline-start: 30px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;

}

.list-link-wrapper{
    padding-bottom: 25px;
    width: 80%;
    transition: transform 0.3s ease;
}
.list-link-wrapper:hover{
    transform: translateX(3px);
}

.architecture-wrapper{
    padding-top: 10px;
}

.list-link{
    color: hsl(0, 0%, 25%);
    border-bottom: 1px solid hsl(0, 0%, 25%);
    transform: translate(50px, 100px);
}


.architecture-link{
    padding-right: 90px;
}
.modeling-link{
    padding-right: 106px;
}
.skills-link{
    padding-right: 98px;
}
.contact-link{
    padding-right: 123px;
}

.architecture-link, .modeling-link, .skills-link, .contact-link{
    padding-bottom: 3px;
}


/*END DROP DOWN STYLES*/
/*----------------------------------------------------------------------------------------*/

/*BEGIN DISPLAY STYLING*/
.work{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    
}

.spacer{
    width: 14%;
}
.selection{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 1fr);
    height: 75%;
    margin-right: 5px;
    margin-left: 5px;
}

.selection-out{
    border-left: 1px solid hsl(0, 0%, 25%);
}

 .dot-1, .dot-2, .dot-3{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid hsl(0, 0%, 25%);
    margin-bottom: 3px;
    transition: 0.4s;
} 

.dot-1:hover, .dot-2:hover, .dot-3:hover{
    background-color: hsl(0, 0%, 25%);
}

.dot-container-1{
    grid-area: 1 / 1 / span 1 / span 1;
    width: 100%;
}

.dot-container-2{
    grid-area: 2 / 1 / span 1 / span 1;
    width: 100%;
}

.dot-container-3{
    grid-area: 3 / 1 / span 1 / span 1;
    width: 100%;
}

.dot-container-1, .dot-container-2, .dot-container-3{
    display: flex;
    justify-content: center;
}

.display{
    max-width: 900px;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.display-image{
    max-width: 900px;
    width: 80%;
    grid-area: 1 / 1 / span 1 / span 1;
    transition: all 1s;
}
.text-container{
    display: flex;
    height: auto;
    min-height: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/*END DISPLAY STYLING*/
/*----------------------------------------------------------------------------------------*/

/*BEGIN FOOTER STYLING*/
.link-flex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
}
.end-link{
    padding-left: 10px;
    padding-right: 10px;
    color: hsl(0, 0%, 25%);
    text-decoration: none;
    transition: 0.3s;
}
.end-link:hover{
    color: hsl(0, 0%, 60%);
}
.link-box{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid hsl(0, 0%, 25%);
}

.first-text, .second-text, .third-text{
    font-style: italic;
}

/*END FOOTER STYLING*/
/*--------------------------------------------------------------------------------------*/

/*BEGIN JAVASCRIPT TOGGLE CLASSES*/
.visible{
    opacity: 1;
}
.invisible{
    opacity: 0;
}
.change{
    -webkit-transform: rotate(-180deg) translate(0px, 6px);
    transform: rotate(-180deg) translate(0px, 6px);
}
.display-none{
    display: none;
}

.clicked-dot{
    background-color: hsl(0, 0%, 25%);
}
.hovered-dot{
    background-color: hsl(0, 0%, 25%);
}

/*--------------------------------------------------------------------------------------*/

/*BEGIN MEDIA QUERIES*/
@media screen and (min-width: 300px) and (orientation: landscape){
    .display{
        max-width: 300px;
    }
    .text-container{
        min-height: 150px;
    }
}

/*LARGE PHONES/LANDSCAPE*/
@media screen and (min-width: 740px){
    .modeling-link{
        padding-right: 83px;
    }
    .display{
        max-width: 500px;
    }
    .text-container{
        min-height: 150px;
    }
    .selection{
        height: 35%;
    }
}

/*DESKTOP*/
@media screen and (min-width: 900px) and (orientation: landscape){
    .modeling-link{
        padding-right: 83px;
    }
    .display{
        max-width: 900px;
    }
    .text-container{
        min-height: 150px;
    }
}