:root {
    --menu-bg: #fbfbfb;
    --bg: #1f1f1f;
    --bg-accent: #353535;
    --red-accent: #df1515;
    --red-accent2: #ca0000;
    --white-accent: #f5f5f5;
}

* {
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--menu-bg);
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    font-weight: 500;
    color: var(--bg);
}

h2, h3 {
    text-shadow: 0px 4px 3px rgba(0,0,0,0.2), 0px 10px 15px rgba(0,0,0,0.1), 0px 10px 23px rgba(0,0,0,0.1);
}

/* Track */
::-webkit-scrollbar-track
{
	background-color: var(--white-accent);
}

::-webkit-scrollbar
{
	background-color: var(--white-accent);
    width: 10px;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--red-accent);
}

.contact {
    padding-block: 5em;
}

/* Custom Highlight */
h1::selection {
    background: var(--bg);
}

*::selection {
    background: var(--red-accent2);
}

/*main {
    margin: 2em 10em;
}*/

.emphasize-dark{
    font-weight: 800;
    font-size: 1.60rem;
}

.emphasize-light{
    font-weight: 600;
    font-style: italic;
}

main {
    display: grid;
    grid-template-columns: 5em 5em 1fr 5em 5em;
    position: relative;
    overflow: hidden;
}

header {
    padding-inline: 10em;
}

nav {
    grid-column: 3 / 4;
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    height: 175px;
    width: 100%;
    z-index: 100;
    transition: all 0.25s ease;
}

nav label {
    background: url(img/collapse.svg);
    height: 2.5em;
    width: 2.5em;
    display: block;
    background-size: contain;
    cursor: pointer;
    z-index: 100;
    position: absolute;
    right: 3em;
    display: none;
}

nav input {
    display: none;
}

input[type=checkbox]:checked ~ .drawer {
    display: flex;
    flex-direction: column;
    right: 0;
} 

.drawer {
    background-color: var(--red-accent2);
    position: absolute;
    height: 100vh;
    display: none;
    top: 0;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.12), 0 1px 2px rgba(255, 255, 255, 0.24);
    border-left: 2px solid var(--bg);
    justify-content: space-evenly;
    transition: right 0.25s ease-in-out;
    right: -300px;
    width: 300px;
}

.drawer-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

.drawer-social{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.drawer-social a {
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}


.drawer-links a {
    z-index: 20;
    font-size: 2rem;
    text-align: center;
}


.drawer-social svg {
    height: 25px;
    width: 25px;
    fill: white;
}

.logo {
    margin: auto;
}

.logo img {
    height: 150px;
}

.collapse {
    display: none;
}

.active {
    color: var(--red-accent) !important;
    font-weight: 600 !important;
}

.links {
    display: flex;
    grid-column: 1 / 2;
    width: 100%;
    gap: 2em;
    flex: 1 1 0px;
    align-items: center;
    margin: auto;
}


.cta {
    display: flex;
    gap: 1em;
    grid-column: 3/4;
    align-items: center;
    margin-left: auto;
}

.cta__order {
    position: relative;
	overflow: hidden;
    font-weight: 700;
    border-radius: 5px;
    border: 2px solid var(--menu-bg);
    color: var(--white-accent) !important;
    padding: 10px 20px;
    width: fit-content;
    transition: animation 0.2s ease-in-out, background-color 0.6s ease-in-out, color 0.2s ease-in-out;
}

.order, .cta__menu {
    position: relative;
	overflow: hidden;
    color: white;
    background-color: var(--red-accent);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s ease-in-out;
}

.links a {
    position: relative;
}

.links a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 0;
    height: 2px;
    background-color: var(--red-accent);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.links a:hover:not(.active):after {
    width: 100%;
    left: 0; 
}

.order {
    position: relative;
	overflow: hidden;
    color: white;
    background-color: var(--red-accent);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s ease-in-out;
}

.call {
    display: flex;
    align-items: center;
    color: var(--bg-accent);
    font-weight: 500;
}

.call img {
    width: 25px;
    margin: 0.5em;
}

footer {
    display: grid;
    grid-template-columns: 5em 5em 1fr 5em 5em;
    grid-template-rows: 1fr 40px;
    flex-direction: row;
    align-items: center;
    height: 400px;
    width: 100%;
    background-color: var(--menu-bg);
}

.main__footer {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5em;
    grid-column: 3 / 4;
}

.main__footer a,
.main__footer h4,
.main__footer p {
    color: var(--bg-accent) !important;
    transition: all 100ms linear;
    font-size: 0.75rem;
}

.main__footer h4 {
    font-size: 1.50rem;
    font-weight: 800;
    text-transform: uppercase;
}

.main__footer a {
    gap: 10px;
}

.footer__logo {
    height: 150px;
    grid-column: 3 / 4;
    margin-right: auto;
}

.footer__directory, 
.footer__reach, 
.footer__hours, 
.footer__socials, 
.biz__address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}

.footer__content {
    display: flex;
    gap: 2em;
}

.biz__address a,
.footer__socials a {
    display: flex;
    align-items: center;
}

.biz__address svg,
.footer__socials svg {
    width: 25px;
    height: 25px;
    transition: all 100ms linear;
}

.sub__footer {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-accent);
}

.sub__footer p {
    text-align: center;
}

.sub__footer a {
    font-weight: 400;
    color: var(--menu-bg);
    letter-spacing: 1px;
}

.sub__footer > * {
    color: var(--menu-bg);
}

.main__footer a:hover,
.main__footer a:hover > svg {
    color: var(--red-accent) !important;
    fill: var(--red-accent) !important;
}


/*~~~~~~~~~~~~~~~~~~  Home Page ~~~~~~~~~~~~~~~~~~*/

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 5em 5em 1fr 5em 5em 5em;
    height: 80dvh;
    grid-column: 1 / 6;
    align-items: center;
    overflow: hidden;
    transition: background-position 1000ms lnear;
    background: url(img/char.jpg) center;
    background-size: cover;
}

.hero__socials {
    grid-column: 4 / 5;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-left: auto;
}

.hero__socials a {
    width: fit-content;
}

.hero__socials svg{
    height: 50px;
    width: 50px;
    fill: white;
    transition: all 200ms linear;
}

.hero__socials svg:hover{
    height: 50px;
    width: 50px;
    fill: var(--red-accent);
}


.hero:before {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero:after {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0) 5%, rgba(0,0,0,0) 40%);    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 5em;
    gap: 0.5em;
    grid-column: 3 / 4;
    z-index: 20;
    height: 400px;
    max-width: 650px;
    position: relative;
}


.hero__info h1 {
    color: var(--menu-bg);
    font-size: clamp(4em, 10vw, 8em);
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: clamp(60px, 9vw, 110px);
    margin-right: auto;
    margin-left: -5px;
    position: relative;
}

.hero__info h1:before {
    content: attr(title);
    position: absolute;
    -webkit-text-stroke: 8px var(--bg); 
    left: 0;
    z-index: -1;
}

.hero__info h2 {
    text-transform: capitalize;
    color: var(--white-accent);
    font-size: 1.45rem;
    font-weight: 600;
    position: relative;
    margin-right: auto;
    margin-bottom: 0.5em;
    text-shadow: 
        0px 4px 3px rgba(0,0,0,0.4),
        0px 8px 13px rgba(0,0,0,0.1),
        0px 18px 23px rgba(0,0,0,0.1);
}

.btns {
    display: flex;
    gap: 1em;
}

.order:before,
.cta__order:before,
.cta__menu:before,
.order__now:before,
.contact__menu:before,
.review:before,
.menu__now:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 25;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.order:hover::before,
.cta__order:hover::before,
.cta__menu:hover::before,
.order__now:hover::before,
.contact__menu:hover::before,
.review:hover::before,
.menu__now:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

.cta__btn:hover {
    background-color: var(--white-accent);
    color: var(--bg) !important;
    /* Fix Later ^ */
}

.next {
    height: 90vh;
}

.cards {
    display: flex;
    gap: 2em;
    width: 100%;
    height: 100%;
}

.sub__hero {
    margin-top: 5em;
    grid-column: 3 / 4;
    background: url(img/background.png);
    height: 600px;
}

/*~~~~~~~~~~~~~~~~~~  Reviews ~~~~~~~~~~~~~~~~~~*/

.reviews {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    background-color: #c20404;
    width: 100%;
    gap: 2em;
    position: relative;
    overflow: hidden;
}

.review__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.review {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 10px 20px;
    border: 2px solid var(--white-accent);
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s ease-in-out;
    width: fit-content;
}

/*.reviews:after {
    content: '';
    position: absolute;
    background: url(img/star.svg) no-repeat center;
    width: 100%;
    height: 80%;
    z-index: 1;
    background-size: contain;
    opacity: 0.1;
}*/

.reviews div h3 {
    display: flex;
    align-items: center;
    font-size: clamp(4em, 10vw, 5.5em);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--menu-bg);
    z-index: 2;
    line-height: clamp(65px, 10vw, 85px) !important;
    position: relative;
}

.reviews div p {
    color: var(--white-accent);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    letter-spacing: 0.2px;
    text-align: center;
    line-height: 25px;
    text-transform: capitalize;
}

.value {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    background-color: var(--menu-bg);
    color: var(--red-accent);
    border: 1px solid var(--bg);
    padding: 10px 20px;
    border-radius: 5px;
    width: 20vw;
    text-align: center;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.reviews > a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    background-color: var(--menu-bg);
    color: var(--red-accent);
    border: 1px solid var(--bg);
    padding: 10px 20px;
    border-radius: 5px;
    width: 200px;
    height: 175px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.google__icon {
    width: 125px;
}

/*~~~~~~~~~~~~~~~~~~  Gallery ~~~~~~~~~~~~~~~~~~*/


.gallery {
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-block: 4em;
}

.gallery__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 24.5vw;
    grid-gap: 4em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4em;
}

.gallery__images > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 100ms linear;
    border-radius: 15px;
}

.gallery__images img:hover {
    filter: brightness(1.1);
    box-shadow: rgb(255, 12, 12) 0px 1px 3px, rgb(255, 12, 12) 0px 1px 20px;
}

.gallery h3 {
    font-size: clamp(3em, 10vw, 6em);
    font-weight: 900;
    line-height: 80px;
    margin-right: auto;
    padding-right: clamp(4em, 10vw, 8em);
    position: relative;
    text-wrap: balance;
    text-transform: uppercase;
}

.gallery h3 span {
    font-size: 1.45rem;
    font-weight: 600;
    position: relative;
    margin-right: auto;
    text-transform: capitalize;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px r
}


/*.gallery h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 6px;
    border-radius: 5px;
    background-color: var(--bg);
    top: 50%;
    left: 515px;
}*/



/*~~~~~~~~~~~~~~~~~~  Start Order ~~~~~~~~~~~~~~~~~~*/


.start__order {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 1 / 6;
    height: 350px;
    gap: 1em;
    margin-bottom: 2em;
}

.order__btns {
    display: flex;
    gap: 1em;
}

.order__now {
    color: white;
    background-color: var(--bg-accent);
}

.menu__now {
    color: white;
    background-color: var(--red-accent);
}

.order__now, .menu__now{
    display: flex;
    position: relative;
	overflow: hidden;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s ease-in-out;
}

.start__order:after {
    content: '';
    background: url(img/burger-print.png);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.125;
}

.start__order h3 {
    font-size: clamp(3em, 10vw, 5.5em);
    font-weight: 900;
    color: var(--red-accent);
    line-height: 80px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.start__order p{
    color: var(--bg);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    margin-top: 1em;
    letter-spacing: 1px;
}

.start__order p {
    color: var(--bg);
}

/*~~~~~~~~~~~~~~~~~~  Social Media Section ~~~~~~~~~~~~~~~~~~*/


.social__media {
    height: 50vh;
}



/*~~~~~~~~~~~~~~~~~~  MENU ~~~~~~~~~~~~~~~~~~*/

.menu {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-block: 5em;
    /*background: 
        linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(255,255,255,0.6699054621848739) 100%),
        linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(255,255,255,0.6699054621848739) 100%);
    */
        ;
}

.menu p {
    color: var(--bg);
    position: relative;
    margin-top: 1em;
    letter-spacing: 1px;
    font-size: 1.45rem;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.2), 0px 10px 15px rgba(0,0,0,0.1), 0px 10px 23px rgba(0,0,0,0.1);
}

.menu h2 {
    color: var(--red-accent);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.2), 0px 10px 15px rgba(0,0,0,0.1), 0px 10px 23px rgba(0,0,0,0.1);
}

.menu img {
    width: 50%;
    margin-block: 5em;
    outline: 5px dashed var(--red-accent2);
    border-radius: 40px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.menu:after {
    content: '';
    background: url(img/print.png);
    position: absolute;
    top: 0;
    height: 500px;
    width: 100%;
    z-index: -1;
    border-bottom: 1px solid var(--red-accent);
}


/*~~~~~~~~~~~~~~~~~~  Contact ~~~~~~~~~~~~~~~~~~*/

.contact{
    display: grid;
    grid-template-columns: 5em 5em 1fr 1fr 5em 5em;
    position: relative;
    overflow: hidden;

}

.info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    grid-column:  3 / 4;
}

.info h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 70px;
}

.phone {
    display: flex;
    flex-direction: column;
}

.location h3,
.hours h3,
.phone h3 {
    font-size: 2rem;
    font-weight: 700;
}

.location p,
.hours p,
.phone p,
.phone a {
    color: var(--bg-accent);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact__menu {
    background-color: var(--bg);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    text-align: center;
    width: 125px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.5s linear;
    position: relative;
}

.contact__menu a:hover {
    background-color: var(--bg-accent);
}

.info,
.map {
    flex: 1;
}

.map {
    position: relative;
    height: 100%;
    animation: fadeIn 1.5s;
    outline: 5px dashed var(--bg-accent);
    border-radius: 40px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    grid-column: 4 / 5;
}

.map:after {
    content: '';
    width: 1200px;
    height: 1200px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--red-accent2);
    z-index: -1;
    box-shadow: inset 100px 0 100px #c20404;
}

/*.map:after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -10px;
    border-radius: 10px;
    background-color: var(--red-accent);
    width: 100%;
    height: 100%;
    z-index: -1;
}*/

.map iframe {
    height: 100%;
    border-radius: 40px;
    background-color: #ededea;
}

.hungry {
    height: 600px;
    position: relative;
}

.hungry:after {
    content: '';
    background: url(img/print.png);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.125;
}

/*~~~~~~~~~~~~~~~~~~  Transition ~~~~~~~~~~~~~~~~~~*/

.hero, 
.menu,
.contact {
    animation: transitionIn 1s;
}

.animate-bg {
    background-position: unset;
}

/*~~~~~~~~~~~~~~~~~~  Auto Scroll  ~~~~~~~~~~~~~~~~~~*/

#goTop {
    position: fixed;
    z-index: 999;
    right: 2%;
    top: 85%;
    transform: translateY(-50%);
    transform: rotateX(180deg);
    opacity: 0;
    transition: opacity 0.4s linear;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: white;
    background-color: var(--red-accent);
    padding: 10px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#goTop path {
    stroke: var(--menu-bg);
    transition: all 100ms linear;

}

#goTop:hover path {
    transform: translateY(10px);
}

.visible {
    opacity: 1 !important;
}

.fade-in {
    animation: fadeIn 1.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
        filter: blur(1px);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
        filter: blur(0);
    }
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

@keyframes transitionUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}


@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


/*~~~~~~~~~~~~~~~~~~  Media Queries ~~~~~~~~~~~~~~~~~~*/



@media (max-width: 1331px) {

    ::-webkit-scrollbar-track {
        background-color: unset;
    }

    ::-webkit-scrollbar {
        background-color: unset;
        width: unset;
    }

    ::-webkit-scrollbar-thumb {
        background-color: unset;
    }

    main {
        grid-template-columns: unset;
    }
    
    nav {
        position: fixed;
        width: 100%;
        background-color: var(--menu-bg);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.15);    }
    nav label {
        display: block;
    }

    .active {
        color: var(--white-accent) !important;
    }

    .logo {
        margin-left: 3em;
    }

    .logo img {
        height: 125px;
    }

    header {
        padding-bottom: 175px;
        padding-inline: 0;
    }
    
    .links, .cta {
        display: none;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero__info h1 {
        margin: 0;
    }

    .hero__info h2 {
        line-height: 30px;
    }

    .hero__socials {
        margin: 2em auto 2em auto;
        flex-direction: row;

    }

    .hero__info {
        align-items: center;
        justify-content: center;
        margin-top: 4em;
        height: unset;
    }

    .hero__info h1  {
        text-align: center;
    }
    .hero__info h2 {
        margin-top: 0;
        text-align: center;
        padding-inline: 2em;
    }

    .reviews {
        flex-direction: column;
        height: 400px;
        padding-block: 3em;
        gap: 2em;
    }

    .reviews div h3,
    .reviews div p {
        text-align: center;
    }

    .reviews > a {
        display: none;
    }

    .review__content p {
        text-wrap: balance;
    }

    .gallery {
        margin-block: 3em;
    }

    .gallery p,
    .gallery h3 {
        text-align: center;
        margin: 0;
    }

    .gallery__images > img {
        width: 80%;
        height: unset;
    }

    .gallery h3 {
        line-height: clamp(50px, 10vw, 80px);
        padding: 0;
        margin-top: 1rem;
    }

    .reviews span {
        margin: 0;
        width: 50%;
    }

    .review__content {
        align-items: center;
        gap: 0.75em;
        width: 80%;
    }


    .gallery__images {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 3em;
        grid-gap: 2em;
    }

    .gallery__img {
        height: 400px;
        width: 80vw;
        margin: auto;
    }

    .start__order p,
    .start__order h3 {
        text-align: center;
    }

    .contact {
        flex-direction: column;
        padding-inline: 2em;
    }

    .menu {
        padding-top: 5em;
        border-bottom: 1px solid var(--bg);
    }

    .menu img {
        width: 85%;
    }

    .menu h2 {
        text-align: center;
        line-height: clamp(75px, 10vw, 95px);
    }

    .contact {
        display: flex;
        align-items: center;
        grid-column: 2 / 5;
        gap: 4rem;
    }

    .info {
        gap: 0.5em;
        align-items: center;
    }

    .info h2 {
        line-height: 70px;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .info h2,
    .info h3,
    .info p,
    .info a  {
        text-align: center;
    }

    .map {
        width: 100%;

    }

    .map iframe {
        min-height: auto;
        height: 600px;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main__footer {
        padding-block: 1em;
        flex-direction: column;
        align-items: center;
        gap: 4em;
        padding: 4em;
    }

    .footer__logo {
        margin: auto;
        height: 175px;
    }

    .footer__content {
        flex-wrap: wrap;
        gap: 4em;
    }

    .footer__content a,
    .footer__content p {
        text-align: center;
    }

    .footer__directory,
    .footer__reach,
    .footer__hours,
    .footer__socials {
        flex: 1;
    }


    .footer__directory,
    .footer__reach,
    .biz__address,
    .footer__hours,
    .footer__socials {
        flex-direction: column !important;
        align-items: center;
        justify-content: baseline;
        gap: 0;
    }

    .footer__directory h4,
    .footer__reach h4,
    .biz__address h4,
    .footer__hours h4,
    .footer__socials h4 {
        font-size: clamp(2rem, 10vw, 2rem);
        text-align: center;
    }

    .footer__directory {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer__directory h4 {
        width: 100%;
        text-align: center;
    }

    .start__order {
        padding-block: 2em;
    }

    .start__order p {
        margin-top: 0;
    }

}


@media (max-width: 600px) {
  
    header {
        padding-bottom: 125px;
    }

    nav {
        height: 125px;
    }

    .logo img {
        height: 100px;
    }

    .reviews {
        margin-block: 3em;
        height: unset;
    }

    .reviews span {
        margin: 0;
        width: 80vw;
        padding: 0;
    }

    .review__content p {
        padding-block: 1em !important;
    }

    .gallery__images {
        margin-bottom: 0;
    }
}

