/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

*,
*::before,
*::after {
  box-sizing: border-box;
 }

/*====================================*/
/*===== GRID layout and core css =====*/
/*====================================*/

.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 {
    font-family: 
    system-ui, 
    -apple-system, 
    BlinkMacSystemFont, 
    "Segoe UI", 
    Roboto, 
    Helvetica, 
    Arial, 
    Oxygen, 
    Ubuntu, 
    Cantarell, 
    'Open Sans', 
    'Helvetica Neue', 
    sans-serif, 
    "Apple Color Emoji", 
    "Segoe UI Emoji", 
    "Segoe UI Symbol";
    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). */
}

body {
    margin: 0;
    padding: 0;
	font-size: 100%;
    line-height: normal;
	font-style: normal;
	font-weight: 400;
    color: #202020;
	background-color: #fafafa;
}

img, picture, video, audio, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/*===== END GRID and core css =====*/


/*===== 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;
}


/*====Phone number <p> this is first to maintain specificity (HEADER P IS DIFFERENT =========*/   
p {
    font-size: 2rem;
    padding: 1.5rem;
}
/*====END Phone number <p>=========*/   

header {
    padding: 1rem;
    font-weight: bolder;
    text-align: center;
    color: red;
    background-color: rgb(255, 217, 0);
}
.headertitle {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 8rem;
    color: black;
    text-shadow: 
    .15vw .15vw 0px #F78154, 
    .3vw .3vw 0px #CC2936,
    .45vw .45vw 12px rgb(65, 0, 0);
    padding-top: .8rem;
    margin-bottom: 0;
}
header h2 {
    font-size: 5.5rem;
    margin-top: .8rem;

}
.byline {
    font-size: 2rem;
    color: #222;
    text-align: right;
    margin-right: 4vw;
    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: 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;
}




/* ==================== */
/*  For mobile devices  */
/* ==================== */


@media (max-width: 960px) {
    .headertitle {
        font-size: 6.5rem;
    }
    header h2 {
    font-size: 4.4rem;
    margin-top: .5rem;
    }
  .byline {
        margin-right: 4px;
    }
}


@media (max-width: 640px) {
   
    /*====Phone number <p> this is first to maintain specificity =========*/ 
    p {
    font-size: 1.4rem;
    padding: 0;
   }
   .headertitle {
     font-size: 2.7rem;
     text-shadow: 
    .2vw .2vw 0px #F78154, 
    .4vw .4vw 0px #CC2936,
    .6vw .6vw 2px rgb(131, 0, 0);
    padding-top: .3rem;
    }
     header h2 {
    font-size: 2rem;
    margin-top: .1rem;
   }
   .byline {
    font-size: 1rem;
    color: #222;
    margin-right: 2px;
    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;
    }
}



