@font-face {
    font-family: 'LogoFont';
    src: url('../fonts/Linex\ Sweet\ Std\ Regular.otf');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* MOBILE SCREENS */
#main{
    display: flex;
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-between;
    /* width: 100vw; */

    transition: margin-left 0.5s;
}

/* HEADER */
header{
    display: flex;
    flex-basis: 100%;
    background-color: #000000;
    box-shadow: 0 1px 5px rgba(0,0,0,.9);
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 3;
    position: sticky;
    top: 0;
    height: 70px;
}


.icon-location,
.icon-nav{
    margin: 15px;
    cursor: pointer;
}
.icon-location-container{
    align-self: flex-end;
}
.icon-location{
    height: 40px;
}
.icon-nav{
    padding: 5px;
    border-radius: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.small-logo{
    position: absolute;
    left:0;
    right:0;
    top:0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    box-shadow: 0 1px 5px rgba(0,0,0,.9);
    border-radius: 50%;
}

.logo {
    display: none;
}


/* NAVIGATION */
#nav-mobile{
    height: 100%;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    overflow-x: hidden;
    /* padding-top: 60px; */

    display: flex;
    flex-direction: row;
    justify-content: center;
}


#mobile-link-container{
    text-align: left;
    background-color: #000;
    width: 0px;
    transition: 0.5s;
    overflow-x: hidden;
    overflow-y: auto;
}


.mobile-links{
    display: block;
    color: #ffc663;
    text-decoration: none;
    font-size: 2em;
    padding: 50px;
}
.mobile-links:active{
    color: #fff;
}

.current{
    color: #705930;
}

.bar1,.bar2,.bar3{
    width: 30px;
    height: 5px;
    background-color: #ffc663;
    transition: 0.4s;
}
.bar1,.bar2{
    margin-bottom: 6px;
}

.change .bar1 {
    transform: translate(0,11px) rotate(-45deg);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    transform: translate(0,-11px) rotate(45deg);
}
nav {
    display:none;
}


/* HEADER STORE ADDRESS LINK */
.addresslink{
    display: none;
}

/* PAGE INTERIOR */
#interior{
    background-color: #fff;
    flex-basis: 100%;
    z-index: 2;
    background-image: url("../images/logo_bobadragon_nobg.png");
    background-size: 150%;
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 40%;
}

/* GALLERY HEADER */

.gallery-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(0,0,0,.7);
    border: #000 solid 1px;
}

.follow-request{
    text-align: center;
    font-family: 'LogoFont',sans-serif;
    font-size: 1.5em;
    font-weight: bolder;
    font-size: 1.75em;
    line-height: 3em;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 1px;

    width: 100vw;
    margin-bottom: 20px;
    padding-top: 10px;
}


/* INSTAGRAM LINKS */
.insta-link-top-mobile,
#insta-link-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.insta-link-top-mobile{
    margin-top: 20px;
}
#insta-link-bottom{
    margin-top: 20px;
    margin-bottom: 10px;
}
.icon-insta-top-mobile,
#icon-insta-bottom{
    height: 50px;
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.insta-link-top-desktop{
    display: none;
}

/* GALLERY IMAGES */
.gallery{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.main-pic{
    width: 90vw;
    border: #000 solid 2px;
    border-radius: 0 5%;
    margin-top: 30px;
    box-shadow: 0px 5px 5px #000;
}

#gallery-separator{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}


#gallery-separator #line{
    width: 60vw;
    height: 1px;
    background-color: #000;
    border-radius: 10%;
}

.misc-pic-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 3vw;
    justify-content: center;
    align-items: center;
    row-gap: 3vh;
}

.image{
    width: 60vw;
    border: #000 solid 1px;
    border-radius: 0 5%;
    cursor: pointer;
}
.image.active{
    width: auto;
    height: auto;
    max-height: 60vh;
    max-width: 90vw;
    object-fit: scale-down;
    box-shadow: 0 5px 35px;
}


#img-container{
    display: contents;
}
#img-container.active{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    row-gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    padding-top: 120px;
    padding-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.arrow{
    display: none;
}
.arrow.active,
.exit-symbol.active{
    display: flex;
    justify-content: center;
    cursor: pointer;
    flex-basis: calc((100vw - 140px)/3);
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #000;
    color: #ffc663;

}

.arrow.active{
    font-size: 2.5em;
    border: #000 solid 1px;
    border-radius: 5%;
    background-color: rgba(0,0,0,.7);

}
.arrow.prev{
    order: 2;
}
.arrow.next{
    order: 4;
}

.exit-symbol{
    display: none;
}
.exit-symbol.active{
    order: 3;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 200px;
}




#img-wrapper{
    display: contents;
}
#img-wrapper.active{
    display: block;
    flex-basis: 100%;
    text-align: center;
    order: 1;
}

.img-holder{
    display: contents;
}

.img-holder.active{
    position: relative;
    display: inline-block;

}
.image-insta-link{
    display: none;
}
.image-insta-link.active{
    display: block;
    position: absolute;
    bottom: 5px;
    right: 0;
    background-color: rgba(0,0,0,.7);
    border-radius: 5% 0 0 0;
    padding: 5px;
    font-size: 1em;
    width: 5em;
    text-decoration: none;
    color: #fff;
}
.image-insta-link img{
    height: 25px;
    vertical-align: middle;
}


#icon-insta-bottom.active{
    display: none;
}

/* FOOTER */
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;

    background-image: url("../images/bricks_bw.png");
    background-size: cover;
    background-position: 10%;

    border-top: rgb(59, 59, 59) solid 2px;
}

.map-mobile{
    text-align: center;
}

#map{
    margin-top: 10%;
    width: 90%;
    border: black solid 1px;
    max-height: 80vh;

}
.map-desktop{
    display: none;
}

.footer-tables{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    color: white;
    font-weight: 700;
    margin-top: 5%;
}

.footer-tables .footer-title{
    color: #ffc663;
    font-size: 1.5em;
}

.footer-col1{
    text-align: left;
}
.footer-col2{
    text-align: right;
}

.footer-contact tr{
    height: 30px;
}

.footer-contact .address-cell{
    vertical-align: top;
}

.footer-hours{
    width: 70%;
    max-width: 300px;

}

footer p{
    margin-top: 30px;
    color: white;
    font-size: 0.85em;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,.75);
    padding: 5px 0;
}

footer a{
    text-decoration: none;
    color: inherit;
}



/* TABLET and LARGE MOBILE SCREENS */

@media (min-width: 700px){
    .image{
        width: 40%;
    }
    
    .misc-pic-container{
        padding: 0 5vh;
    }
}


@media (min-width: 1025px){
    #main{
        width: 100%;
        flex-wrap: nowrap;
        background-color: black;
    }

    header,
    #interior{
        min-height: 400px;
    }

    /* HEADER */
    header{
        height: 100vh;
        position: sticky;
        left: 0;
        top: 0;
        box-shadow: 5px 0 10px rgba(0,0,0,.9);
        flex-basis: 18%;
        min-width: 275px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow-x: hidden;
    }

    header .logo,
    nav,
    .address-container{
        width: 80%;
    }

    header .logo{
        display: inline;
        border: #ffc663 solid 2px;
        border-radius: 50%;
        margin-top:10%;
        margin-bottom: 15%;
        min-width: 200px;
        min-height: 200px;
    }

    .small-logo{
        display:none;
    }
    .icon-location-container{
        display: none;
    }

    /* NAVIGATION */
    nav{
        height: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        border-color: #ffc663;
        border-style: solid;
        border-width: 2px;
        border-radius: 7%;
        color: #fff;
    }

    nav a{
        display:block;
        color:inherit;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1.25em;
    }

    nav a:hover{
        color: #ffc663;
    }

    #nav-mobile{
        display: none;
    }

    /* STORE ADDRESS LINK */
    .address-container{
        margin-top: auto;
        margin-bottom: 1.5%;
    }

    header .addresslink{
        display: block;
        color: white;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
/* PAGE CONTENT */
    #interior-container{
        flex-basis: 82%;
        height: 100vh;
        overflow-y: auto;
    }
    #interior{
        background: #fff;
        background-image: url("../images/logo_bobadragon_nobg.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 100%;
        /* width: 100%; */
        z-index: 2;
        text-align: center;
        overflow: auto;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
/* GALLERY HEADER */
    .gallery-header{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        /* border: #000 solid 2px;  */
        /* width: 70%; */
        /* margin-top: 50px; */
        padding: none;
        padding: 20px 20%;
        width: 100%;
        background-image: url("../images/bricks_desktop_brighter.jpg");
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        border-bottom: #353535 solid 2px;
        box-shadow: 5px 0 10px rgba(0,0,0,.9);

    }

    /* .gallery-header, */
    .main-pic{
        width: 60%;
    }

    .follow-request{
        text-align: left;
        font-family: 'LogoFont',sans-serif;
        font-size: 2.5em;
        line-height: 3em;
        -webkit-text-fill-color: #fff;
        border: none;
        width: auto;
        margin: 0;
        padding: auto 0;
        padding-bottom: 10px;
    }

    .follow-request h1{
        -webkit-text-stroke: 1px;
    }

    .insta-link-top-desktop{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        font-weight: 800;
        letter-spacing: 0.05em;
        margin: 0;
    }

    .icon-insta-top-desktop{
        height: 70px;
        filter: invert(0%);
        -webkit-filter: invert(0%);
    }

    .insta-link-top-mobile{
        display: none;
    }
/* GALLERY IMAGES */
    .gallery{
        width: 100%;
    }

    .main-pic-container{
        width: 100%;
    }

    .misc-pic-container{

    }

    .image{
        width: 25%;
        transition: 0.25s;
    }

    .image:hover{
        box-shadow: 15px 15px 15px rgba(0,0,0,.9);
        transform: translate(0,-15px);
    }
    .image.active{
        transition: none;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 80vh;
        max-width: 80vw;
    }

    #img-container.active{
        width: 82vw;
        left: 18%;
        align-items: center;
        justify-content: space-between;
        padding: 0 2%;
    }

    #img-wrapper.active{
        flex-basis: auto;
        order: 2;
    }

    .arrow.active{
        flex-basis: 10%;
    }
    .arrow.prev{
        order: 1;
    }
    .arrow.next{
        order: 3;
    }
    .exit-symbol.active{
        position: fixed;
        top: 5vh;
        right: 5vw;
    }

    .arrow.active:hover,
    .exit-symbol.active:hover{
        color: #fff;
    }

    .arrow.active:active{
        background-color: #ffc663;
    }

    .exit-symbol.active:active{
        color: #000;
    }

    .image-insta-link{
        transition: 0.25s;
    }

    /* .image-insta-link.active img:hover{
        filter: opacity(0.5) drop-shadow(0 0 #e060da);
    } */

/* {    .misc-pic-container{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 5vh;
        column-gap: 10vh;
        padding: 0 10vw;
    }
    .image{
        transition: 0.25s;
        width: 25%;
    }
    .image:hover{
        box-shadow: 15px 15px 15px rgba(0,0,0,.9);
        transform: translate(0,-15px);
    }

    .image.active{
        width: auto;
        height: auto;
        max-height: 80vh;
        max-width: 80vw;
        box-shadow: none;
        transform: none;
        transition: none;
        border-radius: 0%;
        order: 2;
    }
   
    .misc-pic-container #img-container.active{
        top: 0;
        left: 18%;      
        width: 82%;        
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    } 

    #img-wrapper.active{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .arrow.active{
        flex-basis: 10%;
    }
    .arrow.prev{
        order: 1;
    }
    .arrow.next{
        order: 3;
    }

    .exit-symbol.active{
        display: block;
        position: fixed;
        top: 5vh;
        right: 5vw;
        font-weight: 600;
        cursor: pointer;
    }

    .exit-symbol,
    #img-wrapper .arrow,
    #img-container .image-insta-link{
        -webkit-text-fill-color: #fff;
        font-size: 4em;
        -webkit-text-stroke: none;   
    }

    .exit-symbol:hover,
    #img-wrapper .arrow:hover,
    #img-container .image-insta-link:hover{
        -webkit-text-fill-color: #ffc663;
    }

    .exit-symbol:active,
    #img-wrapper .arrow:active,
    #img-container .image-insta-link:active{
        -webkit-text-fill-color: #000;
    }    
    
    #img-container .image-insta-link{
        display: none;
        text-decoration: none;
        font-size: 2em; 
        font-weight: 700;
    }

    #img-container .image-insta-link.active{
        display: block;
    }} */

    /* FOOTER */
    footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        background-color: #000;
        background-image: url("../images/bricks_2.jpg");
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        border-top: rgb(41, 41, 41) solid 2px;
    }

    .map-desktop{
        display: inline;
    }

    #map{
        width: 100%;
        border: black solid 2px;
        border-radius: 2%;
        margin-top: 5%;
    }

    .footer-tables{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 1%;
    }

    .footer-contact{
        width: 30%;
        align-self: flex-start;
        max-width: 400px;
    }

    .footer-hours{
        width: 20%;
        max-width: 300px;
    }

    .map-mobile{
        display: none;
    }
}

    @media (min-width: 1400px){
        nav a{
            font-size: 1.75em;
        }
    
        .follow-request h1{
            -webkit-text-stroke: 1px;
        }

        .footer-method1-d{
            vertical-align: middle;
        }
    }
    
    @media (min-width: 2000px){
        nav a{
            font-size: 2em;
        }
    
        header .addresslink{
            font-size: 1.5em;
        }
        .follow-request h1{
            font-size: 2.5em;
        }
    
        .footer-tables-d td{
            font-size: 1.2em;
        }
    
}