@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;
    /* display: none; */
}

.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%;
}

#merch-container{
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comming-soon{
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

#merch-container h1{
    font-family: "LogoFont",'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.25em;
    color: #ae0000;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
#merch-container p{
    font-size: 1.4em;
    font-weight: 600;
    
}

/* 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 */

/* DESKTOP SCREENS */
@media (min-width: 1025px){
    #main{
        width: 100%;
        flex-wrap: nowrap;
        background-color: black;
    }
    
    header,
    #interior-container{
        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%;
    }
    #interior{
        background:none;
    }

    #merch-container{
        background: #fff;
        background-image: url("../images/logo_bobadragon_nobg.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

        /* 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;
    }

    .footer-method1-d{
        vertical-align: middle;
    }
}

@media (min-width: 2000px){
    nav a{
        font-size: 2em;
    }

    header .addresslink{
        font-size: 1.5em;
    }

    .footer-tables-d td{
        font-size: 1.2em;
    }
}
