
/*@font-face {
  font-family: 'FranklinGothic';
  src: url(fonts/FRADM.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}*/

/*===== NORMALIZED CSS RESETS =====*/

/* Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;-webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*====================================*/
/*===== GRID layout and core css =====*/
/*====================================*/

*,
*::before,
*::after {
  box-sizing: border-box;
 }

.content {
    --gap: clamp(1rem, 6vw, 3rem);
    --full: minmax(var(--gap), 1fr);
    --content: min(960px, 100% - var(--gap) * 2);
    --popout: minmax(0, 2rem);
    --feature: minmax(0, 5rem);
  
    display: grid;
    grid-template-columns:
      [full-start] var(--full)
      [feature-start] var(--feature)
      [popout-start] var(--popout)
      [content-start] var(--content) [content-end]
      var(--popout) [popout-end]
      var(--feature) [feature-end]
      var(--full) [full-end];  
  }
  
  .content > * {
    grid-column: content;
  }
  .popout {
    grid-column: popout;
  }
  .feature {
    grid-column: feature;
  }
  .full {
    grid-column: full;
  }

  html {
    line-height: 1.5; 
    -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
    -webkit-font-smoothing: antialiased;
    tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

img, picture, video, audio, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/*===== END GRID and core css =====*/

/*====================================*/
/*====== START OF MY CUSTOM CSS ======*/ 
/*====================================*/

body {
    margin: 0;
    padding: 0;
    color: #202020;
    background-color: #fafafa;
    font-family: "Roboto", sans-serif;
    font-size: 100%;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: normal;
    font-variation-settings: "wdth" 100;
}
  
p {
    font-size: 2rem;
    padding: 1.5rem;
} /*This sets the font size for all the phone numbers*/


header {
    padding: 1rem;
    text-align: center;
    color: rgb(32, 1, 1);
    background-color: rgb(255, 212, 0);
}

.headertitle {
    font-family: "Roboto", sans-serif;
    font-size: 8.2rem;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    color: rgb(212, 0, 0);
    padding-top: .8rem;
    margin-bottom: 0;
}

header h2 {
    font-size: 5.5rem;
    margin-top: .7rem;

}
.byline {
    font-size: 1.8rem;
    color: #330000;
    text-align: right;
    margin-right: 0;
    margin-bottom: 0;
    font-style: italic;
    padding-top: 0;
    
}
.menu {
    padding: 0;
}
.menu-img {
    display: block;
    margin: auto;
    padding: 0;
    border-radius: 1.25rem;
}
.twinmenu {
    display: grid;
    grid-template-columns: 1fr 0px 1fr;
    gap: .8rem;
}
.twinmenu p {
    visibility: hidden;
}
.facade {
    display: block;
    margin-top: 1rem;
    width: 100%;
    height: auto;
    border-top: 2px solid gray;
}
.address {
    color: #e2e2e2;
    background-color: #323232;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 0rem;
}

.address h3:nth-child(1) {
    margin-top: 10px;
}

.address h3:nth-child(3) {
    margin-bottom: .5rem;
}

.address-img {
    display: block;
    margin: auto;  
}

.address-s-man {
    display: block;
    margin: auto;
    opacity: 0.7;
    padding-bottom: 10px;
}

.hideme {
    visibility: hidden;
}
.hours {
    background-color: rgb(238, 238, 245);
    padding: 3rem 0 4rem 0;
}

.bizhours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 2rem;
  justify-items: center;
}

.bizhours ul>li:last-child {
  color: darkred;
}

.footlogo {
    display: block;
    background-color: rgb(255, 212, 0);
    text-align: center;
    padding: 0;
    border-top: 1px solid gray;
}
.footlogo h2 {
    display: inline-block;
    color: rgb(0, 0, 0);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 1.5rem;
    margin-top: .3rem;
    margin-bottom: .3rem;
}

/* ==================== */
/*  For mobile devices  */
/* ==================== */


@media (max-width: 960px) {
    .headertitle {
        font-size: 6.25rem;
    }
    header h2 {
    font-size: 4.4rem;
    margin-top: .5rem;
    }
    .hours {
        padding: 2rem 1rem;
    }
    .bizhours {
        gap: 2.5rem;
    }
}


@media (max-width: 640px) {
    header {
        padding: 1rem .1rem;
    }   
    p {
    font-size: 1.4rem;
    padding: 0;
   }
   .headertitle {
    font-size: 2.8rem;
    font-weight: 900;
    padding-top: .3rem;
    }
    header h2 {
    font-size: 2rem;
    margin-top: .1rem;
   }
   .byline {
    margin-top: .15rem;
    font-size: 1rem;
    color: #222;
    padding-bottom: 0;
    }
    .menu-img {
        border-radius: .8rem;
    }
    .twinmenu {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .twinmenu p {
        visibility: visible;
        padding: 0;
        margin: .6rem;
    }
    .facade {
        margin-top: .2rem;
        object-fit: cover;
        height: 42vh;
    }
    .hours {
        padding: 1.5rem 0 2rem 0;
        justify-items: center;
    }
    .bizhours {
        gap: .5rem;
        justify-items: left;
    }
    .footlogo h2 {
        font-size: 1rem;
        margin-top: .1rem;
        margin-bottom: .1rem;
    }
   
}



