@charset "UTF-8";

:root { 
    --gold: #FFD700;
    --red: #d81919;
    --blue: #071f5e;
    --orange: #fa7642;

    --bg1: #e9e4c8;
    --bg-gradient1: radial-gradient(circle, rgba(254,158,2,1) 0%, rgba(255,215,0,1) 100%); 
    --bg2: #f5f3eb;
    --bg-gradient2: linear-gradient(48deg, rgba(250,118,66,1) 0%, rgba(217,68,9,1) 100%);
    --bg3: #ffffcc;
    
    --nav: #635858;
    --nav-hover: #000;
    --nav-i: #7a7a7a;
}

@font-face {
    font-family: broadway;
    src: url("../fonts/broadway.ttf");
    font-display: swap;
}

body {
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #eee;
    color: #222;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175); }

section { 
    padding-top: 4em;
    padding-bottom: 4em; }

.bg-primary { background-color: var(--primary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-info { background-color: var(--info); }
.bg-warning { background-color: var(--warning) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg1 { background-color: var(--bg1); }

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-info { color: var(--info) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-red { color: var(--red); }

.btn-primary { color: #fff !important; background-image: var(--bg-gradient2) !important; border: none !important; }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { box-shadow: inset 0 .5rem 1rem rgba(0,0,0,.25) !important; color: #000 !important; }
.btn-primary:focus, .btn-primary:active { box-shadow: none !important; color: #fff !important; }

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Times', serif;
    color: var(--red); }

a, a:hover:not(.alert-link), a:visited, a:active, a:focus, input, input:focus, input:active, textarea, textarea:focus, textarea:active, button:focus, button:active { 
    outline: none;
    box-shadow: none;
    text-shadow: none;
    text-decoration: none; }

strong { 
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700; }

.form-control:focus, .btn:focus { box-shadow: none; }

a:not(.nav-link):not(.close):not(.navbar-brand):not(.alert-link) { 
    color: var(--link);
    transition: all .25s ease; }

a:hover:not(.nav-link):not(.close).not(.alert-link) { color: var(--hover); }

.underline { 
    margin-bottom: 5px;
    position: relative; }

.underline:hover::after  { 
    width: 100%;
    background-color: var(--red); }

.underline:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    content: '.';
    color: transparent;
    background-color: var(--red);
    height: 1px;
    transition: all .15s ease; }

.underline2 { 
    transition: all .2s ease;
    text-decoration: underline; }

.underline2:hover { text-decoration: none; }

p { 
    letter-spacing: .05rem; }

.uppercase { text-transform: uppercase; }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175); }

img.myImg {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .5rem;
    max-width: 100%;
    height: auto; }

.grid-center {
    display: grid;
    place-items: center; }


.nbsp::after { 
    content: '&';
    font-size: 80%; }

.th {
    font-size: 50%;
    vertical-align: top; }

/* HR Line */
.line-vert:after {
    background-image: linear-gradient(0deg, #fff 0%, var(--primary) 50%, #fff 100%);
    content: '';
    display: inline-block;
    width: 1px;
    height: 30px;
    border: 0;
    margin: 0;
    padding: 0; }

.line-hor:after {
    background-image: linear-gradient(90deg, var(--primary) 50%, #fff 100%);
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    border: 0;
    margin: 0;
    padding: 0; }

.rounded-lg { border-radius: 1rem !important; }

.initial {
    font-family: initial !important;
    color: initial !important; }


/* ******************************************** Content ******************************************** */


/* Header */
header {
    padding: 0 0 3rem 0;
    background-image: url("../images/bg-wood.jpg");
    background-size: cover; }

.logo {
    position: relative;
    height: calc(100% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }

.logo h1 { 
    font-size: 3.5rem;
    font-family: 'broadway', sans-serif;
    color: #eee;
    text-shadow: 4px 4px 6px #000;
    text-transform: uppercase; }

.logo h2 { 
    padding: 1rem;
    border-radius: .5rem;
    background-color: rgba(0,0,0,.35);
    color: #ffffcc;
    text-transform: uppercase; }

.storefront {
    margin-top: -4rem;
    max-width: 100%;
    height: auto; 
    border-radius: 50%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }

/* Navigation */
.navbar {
    padding: 1rem;
    justify-content: space-between;
    background-image: url("../images/header.svg");
    background-size: cover;
    background-position: bottom; }

.nav-link.active, .nav-link:focus, .nav-link:hover, .nav-link.active svg, .nav-link:focus svg, .nav-link:hover svg { 
    transform: translateY(2px);
    color: var(--nav-hover) !important; }

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Lato', sans-serif;
    color: var(--nav);
    transition: all .2s ease; }

.navbar-expand .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem; }
    

/*Landing */
#specials {
    border-right: solid 1px rgba(0,0,0,.25);
    display: flex;
    justify-content: center; }

.specials-inner {
    margin-right: 1rem;
    float: left;
    background-image: var(--bg-gradient2);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }

.specials-inner h2 { color: #fff; }

#about { padding-left: 2rem; }
#about p { font-size: 16px !important; }

.opening {
    font-size: 1.65rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -2rem;
    margin-bottom: 3rem;
    color: #222;
    background-image: var(--bg-gradient1);
    padding: 1rem;
    border-radius: .5rem; }

.opening small { 
    margin-top: .65rem;
    display: block; }

.hours td:first-of-type { 
    font-weight: 700;
    padding-right: .65rem;
    text-align: right; }

.hours td:last-of-type { text-align: left; }


/* Gallery */
.img-thumbnail { border-radius: .5rem; }

figcaption {
    letter-spacing: normal;
    font-size: 14px;
    color: #555;
    margin-top: .35rem;
    font-family: monospace; }


/* index Links */
#index-links { background-color: var(--bg2); }

#index-links h2 {
    margin-bottom: 1.5rem;
    font-family: "broadway", sans-serif;
    text-align: center;
    color: #222; }

.card-img-top {
    width: 90%;
    margin-top: -2rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .5rem; }

.card { background-color: var(--bg1); }

.card-circle {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -4rem;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: var(--bg-gradient2); }

.card-footer {
    text-align: right;
    border: none; }


/* HR Fancy */
hr.fancy {
    border: 0 solid #015260;
    border-top-width: 1px;
    height: 0;
    clear: both;
    display: block;
    width: 600px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 10rem; }

hr.fancy:before {
    content: " ";
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 5px;
    border: 1px solid #015260;
    background-color: #999;
    left: 0;
    bottom: -2px;
    box-shadow: 600px 0 0 -1px #015260, 600px 0 0 0 #015260; }

hr.fancy:after {
    content: url("../images/index-links/icon.png");
    display: block;
    position: absolute;
    left: 50%;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #eef, 0 0 5px; }

/* Footer */
footer {
    margin-top: 2rem;
    font-family: 'Lato', sans-serif;
    color: #fff;
    font-size: 16px; }

.footer-left { 
    padding-bottom: 2rem;
    background-image: url("../images/bg-wood.jpg"); }

#map {
    width: 100%;
    height: 100%;
    background-image: url(../images/map.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0; }

footer h1 {
    font-family: 'broadway', sans-serif;
    color: #eee;
    margin-bottom: 2rem;
    margin-top: -1rem }

footer h2 { 
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--orange); }

footer h3 {
	color: var(--orange);
}

footer .hours td:first-of-type { font-weight: normal; }

p.copyright { 
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 0;
    font-size: 16px; }

footer hr {
    width: 75%;
    text-align: center;
    border-top: solid 1px var(--orange); }

.social { margin-top: 1rem; }
footer small { display: block; }
.footer-links a.mswd { padding-left: 0px !important; }
footer a:hover { opacity: .7; }

.phone2:hover {
    opacity: 1 !important;
    color: #fff !important;
    cursor: text !important; }


/* ******************************************** REPONSIVE ******************************************** */

@media (max-width: 767px) { .card-deck .card { flex: 1 0 100%; } }
@media (min-width: 768px) { .card-deck .card { flex: 1 0 0%; } }

@media (max-width: 991px) {
    section { 
        padding-top: 20px;
        padding-bottom: 20px; }
}

@media (min-width: 768px) { .logo br { display: none; } }

@media (min-width: 1200px) {
    .leaf-left, .leaf-right {
        width: 119px;
        height: 130px;
        position: fixed;
        background-image: url("../images/leaf.png");
        background-repeat: no-repeat; }
    
    .leaf-left { 
        transition: opacity .25s ease;
        top: 0px;
        left: 0; }
    
    .leaf-right {
        right: 0;
        bottom: 0;
        transform: rotate(180deg); }
        
    footer .order1 { z-index: 1; }
}

@media (min-width: 768px) and (max-width: 1099px) { 
    .menu-links svg { display: none; }
}

@media (min-width: 768px) and (max-width: 991px) { 
    .menu-links { 
        margin-left: .5px;
        margin-right: .5rem; }
    
    .logo { margin-top: 2rem; }
    .logo h1 { font-size: 2.5rem; }
    .logo h2 { font-size: 1.25rem; }
    #landing { padding-bottom: 4rem; }
    .specials-inner h2 { font-size: 20px; }
    .info { font-size: 14px; }
    .modal-xl { max-width: 700px; }
}

@media (max-width: 767px) { 
    body { font-family: var(--font-family-sans-serif); }
    
    /* Header */
    header { 
        padding: 0;
        height: auto;
        background-image: url(../images/bg-wood.jpg);
        background-size: cover;
        background-position: right; }
    
    .logo { 
        height: auto;
        padding: 1rem; }

    .logo h2 { 
        margin-bottom: 1rem;
        font-size: 1.25rem; }
    
    .logo h1 { 
        margin-top: .5rem;
        margin-bottom: 1rem;
        text-align: center;
        font-size: 2.5rem; }
    
    .menu-links { margin: 1rem; }
    .header-line { display: none; }

    
    /* Navigation */
    .navbar-nav { padding-bottom: 1.5rem; }
    
     .navbar-nav-scroll {
        max-width: 100%;
        margin-top: .25rem; }
    
    .navbar-nav-scroll .navbar-nav {
        padding-bottom: .5rem;
        overflow-x: auto;
        white-space: nowrap; }
    
    .nav-scroll-off { overflow-x: visible !important; }
    
    .nav-link svg { 
        width: 24px !important;
        height: 24px !important; }
    
    .info { 
        margin-top: 1rem;
        margin-bottom: 1rem; }
    
    
    /* HR Fancy */
    hr.fancy { 
        margin-bottom: 8rem;
        width: 280px !important; }
    
    hr.fancy:before { box-shadow: 280px 0 0 -1px #015260, 280px 0 0 0 #015260 !important; }
    
    
    /* Landing */
    .logo { margin-top: 1rem; }
    
    .opening {
        font-size: 26px;
        margin-top: 2rem;
        margin-bottom: -1rem;
        margin-left: 1rem;
        margin-right: 1rem; }
    
    #landing { 
        padding-top: 0;
        padding-bottom: 4rem; }
    
    #specials { order: 2; }

    .specials-inner { 
        margin-top: 1rem;
        margin-left: 1rem; }
    
    .about-inner { margin-top: 1rem; }
    #about { order: 1; }
    
    /* Gallery */
    #gallery { 
        height: auto;
        margin-top: 0;
        padding: 1rem !important; }
	
	/* Midcoast */
	#midcoast h2 { margin-top: 2rem; }
    
    
    /* Index-links */
	.m-mbl { margin-bottom: 4rem; }
    
    /* Footer */
    footer #map { 
        height: 350px;
        border-top: solid 3px #222; }
        
    footer { margin-top: 0; }
    footer .w-75 { width: 100% !important; }
    footer .order1 { order: 1; }
    footer .order2 { order: 2; }
    footer hr { margin-bottom: 2rem; }
}
