/* 

espresso: #1A130E
mocha: #3D2817
saddle: #6B4226
gold: #C28840
gold-light: #D9A968
cream: #F5EFE3
paper: #FAFAF6
ink: #2B2118
ink-soft: #5C4F42
line: rgba(43,33,24,0.12)


font-family:'Jost',sans-serif;
font-family:'Cormorant Garamond',serif;
font-family:'DM Mono',monospace;

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body {
    overflow-x: hidden;
    background: #3D2817;
}

/*                              NAV BAR                              */

nav {
    height: 12dvh;
    background: #fafaf6dc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6dvw;
    position: fixed;
    top: 0;
    left: 0;
    /* right: 0; */
    backdrop-filter: blur(7px);
    z-index: 100;
    width: 100%;
}

.nav-logo {
    font-family:'Cormorant Garamond',serif;
    font-size: 22px;   
    font-weight: 700;
}

.nav-logo a {
    color: #1A130E;
    text-decoration: none;
}

.nav-logo span {
    color: #C28840;
    font-style: italic;
}

.nav-links ul {
    display: flex;
    align-items: center;
    list-style: none;
    font-family:'Jost',sans-serif;
    font-size: 12px;   
    gap: 3dvw;
    letter-spacing: 2px;
}

.nav-links a {
    text-decoration: none;
    color: #1A130E;
    transition: color .5s ease;
}

.nav-links a:hover {
    color: #C28840;
}

.nav-cta button {
    background: #1A130E;
    color: #F5EFE3;
    font-family:'Jost',sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    transition: background .5s ease;
}

.nav-cta button:hover {
    cursor: pointer;
    background: #6B4226;
}

.section {
    padding-left: 6dvw;
    padding-right: 6dvw;
}


/*                              HERO SECTION                         */

#hero {
    scroll-margin-top: 12dvh;
    margin-top: 12dvh;
    height: 88dvh;   
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.4) 50%, rgba(0,0,0,.7) 90%),
        url(imgs/heroBackground.png);
    background-size: cover;
    background-position: center;
    padding-top: 1dvh;
    padding-bottom: 2dvh;
}

.hero-content {
    width: 41%;
}

.hero-content h1 {
    font-size: 90px;
    color: #FAFAF6;
    font-weight: 400;
    font-family:'Cormorant Garamond',serif;
    line-height: 13dvh;
}

.hero-content h1 span {
    color: #C28840;   
    display: block;
    font-style: italic;
}

.hero-content-body {
    margin: 2dvh 0;
}

.hero-content-body p {
    font-family:'Jost',sans-serif;
    color: #f5efe3;   
    font-size: 18px;
    font-weight: 100;
    line-height: 4dvh;
}

.hero-content-contact {
    display: flex;
    align-items: center;
    gap: 2dvw;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 1dvh;
}

.contact-block p:first-of-type {
    color: #C28840;   
    font-family:'DM Mono',monospace;
    font-weight: bold;   
    font-size: 14px;
    text-wrap: nowrap;
}

.contact-block p:last-of-type {
    color: #F5EFE3;   
    font-size: 14px;
    font-weight: 100;
}

.hero-content-buttons {
    display: flex;
    gap: 1dvw;
    margin-top: 3dvh;
}

.hero-content-buttons button {
    padding: 2dvh 3dvw;
    font-family:'Jost',sans-serif;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}

.hero-content-buttons a:first-of-type button {
    border: 1px solid #C28840;
    background: #C28840;
}

.hero-content-buttons a:first-of-type button:hover {
    background: #D9A968;
    transform: translateY(-3px);
    transition: .5s ease;
}

.hero-content-buttons a:last-of-type button {
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.4);
    color: #FAFAF6;
}

.hero-content-buttons a:last-of-type button:hover {
    background: #3C2D23;
    border: 1px solid #C28840;
    transition: .5s ease;
}

.highlights-marquee {
    height: 7dvh;
    width: 100%;
    background: #C28840;
    display: flex;
    align-items: center;
}

.highlights-marquee ul {
    display: flex;
    align-items: center;
    font-family:'Jost',sans-serif;
    font-size: 13px;
    font-weight: bold;
    animation: highlightsMarquee 20s linear infinite;
}

.highlights-marquee ul li {
    color: #1A130E;
    margin-left: 4dvw;
    padding-left: 3dvw;
    text-wrap: nowrap;
}

@keyframes highlightsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*                              ABOUT SECTION                        */
#about {
    min-height: 80dvh;
    background: #F5EFE3;
    display: flex;
    justify-content: space-between;
    padding-top: 15dvh;
    padding-bottom: 15dvh;
}

.about-left {
    width: 39dvw;
}

.about-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.about-accent {
    width: 2dvw;
    height: 1px;
    background: #C28840;
}

.about-tiny-heading {
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.about-heading {
    margin-top: 3dvh;
    margin-bottom: 2dvh;
    width: 90%;
}

.about-heading h1 {
    color: #1A130E;
    font-weight: 500;
    font-size: 56px;
    font-family:'Cormorant Garamond',serif;
}

.about-heading h1 span {
    color: #6B4226;
    font-style: italic;
}

.about-body p {
    font-size: 15.5px;
    font-family:'Jost',sans-serif;
    font-weight: 100;
    color: #5C4F42;
    line-height: 4dvh;
    margin-bottom: 3dvh;
}

.about-body p span {
    color: #1A130E;
    font-weight: 500;
}

.about-body-quote {
    border-left: 3px solid #C28840;
    padding: 4px 1dvw;
    margin-bottom: 3dvh;
}

.about-body-quote p:first-of-type {
    font-family:'Cormorant Garamond',serif;   
    font-size: 23px;
    font-style: italic;
    font-weight: 400;
    color: #1A130E;
    line-height: 5dvh;
}

.about-body-quote p:last-of-type {
    text-transform: uppercase;
    font-family:'DM Mono',monospace;
    font-size: 12px;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.about-right {
    width: 42dvw;
    background: #1A130E;
    height: fit-content;
    padding: 7dvh 3dvw;
    border-top: 3px solid #C28840;
}

.about-right-heading {
    color: #D9A968;
    font-family:'DM Mono',monospace;
    letter-spacing: 1px;
    font-size: 10px;
    margin-bottom: 5dvh;
}

.about-right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7dvh;
    padding-top: 1dvh;
    padding-bottom: 1dvh;
    border-bottom: 1px solid rgba(250, 250, 246, .15);
}

.no-border-bottom {
    border-bottom: none;
}

.about-right-item ul {
    padding-left: 22px;
    color: #FAFAF6;
    font-family:'Cormorant Garamond',serif;
    font-size: 18px;
}

.about-right-item ul li {
    list-style: none;
    position: relative;
}

.about-right-item ul li::before {
    content: '';
    position: absolute;
    left: -1.5dvw;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C28840;
}

.about-right-item p {
    color: #f5efe396;
    font-family:'Jost',sans-serif;
    font-size: 13px;
    font-style: italic;
}

.hr {
    margin-top: 5dvh;
    margin-bottom: 4dvh;
    height: 1px;
    width: 100%;
    background: rgba(250, 250, 246, .15);
}

.about-right p {
    color: #f5efe396;
    font-family:'Jost',sans-serif;
    font-size: 13px;
    line-height: 3dvh;
}

.about-right p span {
    color: #C28840;
}


/*                              MENU SECTION                         */
#menu {
    background: #FAFAF6;
    padding-top: 15dvh;
    padding-bottom: 15dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6dvw;
    justify-content: space-between;
}

.menu-left {
    width: 41dvw;
}

.menu-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.menu-accent {
    width: 2dvw;
    height: 1px;
    background: #C28840;
}

.menu-tiny-heading {
    font-size: 12px;
    color: #C28840;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.menu-heading {
    margin-top: 3dvh;
    margin-bottom: 12dvh;
    font-weight: 100;
}

.menu-heading h1 {
    color: #1A130E;
    font-weight: 400;
    font-size: 55px;
    font-family:'Cormorant Garamond',serif;
}

.menu-heading h1 span {
    color: #6B4226;
    font-style: italic;
}

.menu-section-header {
    display: flex;
    width: 100%;
    height: 5dvh;
    align-items: center;
    margin-bottom: 2dvh;
}

.menu-section-header p {
    color: #1A130E;
    font-size: 26px;
    font-family:'Cormorant Garamond',serif;
    font-weight: 600;
    text-wrap: nowrap;
}

.menu-header-dotted-line {
    margin-left: 1dvw;
    height: 1px;
    border: 1px dashed rgba(43,33,24,0.12);
    width: 100%;
}

.menu-section-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8dvh;
    padding-top: 1dvh;
    padding-bottom: 1dvh;
    border-bottom: 1px solid rgba(43,33,24,0.12);
}

.menu-section-item span {
    font-size: 11px;
    font-weight: 100;
}

.last-menu-section-item {
    border-bottom: none;
}

.menu-section-item p:first-of-type {
    color: #2B2118;
    font-size: 15px;
    font-family:'Jost',sans-serif;
    font-weight: 400;
}

.menu-section-item p:last-of-type {
    color: #6B4226;
    font-size: 14px;
    font-family:'DM Mono',monospace;   
    font-weight: 500;
}

.pastries {
    margin-top: 7dvh;
}

.sandwiches {
    margin-top: 7dvh;
}

.savory {
    margin-top: 5dvh;
}

.menu-right {
    width: 41dvw;
    padding-top: 9dvh;
}

.menu-right > p {
    color: #5C4F42;
    font-family:'Jost',sans-serif;
    font-weight: 100;   
    line-height: 4dvh;
    margin-bottom: 10dvh;
}


/*                              COMPROMISE                       */
.compromise {
    height: 90dvh;
    background: #3D2817;
    padding-top: 15dvh;
    padding-bottom: 15dvh;
}

.compromise-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.compromise-accent {
    width: 2dvw;
    height: 1px;
    background: #C28840;
}

.compromise-tiny-heading {
    font-size: 12px;
    color: #C28840;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.compromise-heading {
    margin-top: 3dvh;
    margin-bottom: 12dvh;
    font-weight: 100;
}

.compromise-heading h1 {
    color: #FAFAF6;
    font-weight: 400;
    font-size: 56px;
    font-family:'Cormorant Garamond',serif;
}

.compromise-heading h1 span {
    color: #C28840;
    font-style: italic;
}

.compromise-flex {
    display: flex;
}

.compromise-flex-block {
    width: 29dvw;
    padding: 5dvh 2dvw;
    border-left: 2px solid #ffffff10;
}

.compromise-flex-block:first-of-type {
    border: none;
}

.cfbi-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #6B4226;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cfbi-circle-bean {
    border: 1px solid #D9A968;
    height: 27px;
    width: 20px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.cfbi-circle-bean::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 80%;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border-right: 1px solid #D9A968;
    border-radius: 50%;
}

.cfbi-circle-pastries {
    border: 1px solid #D9A968;
    height: 17px;   
    width: 25px;
    border-radius: 50% 50% 0 0 / 50% 50% 0 0;
    border-bottom: none;
    position: relative;
}

.cfbi-circle-pastries::before {
    content: '';
    position: absolute;
    width: 27px;
    height: 1px;
    left: -2px;
    bottom: 0;
    background: #D9A968;
}

.cfbi-circle-atmosphere {
    width: 20px;
    height: 20px;
    border: 1px solid #D9A968;
    border-radius: 2px;
    position: relative;
}

.cfbi-circle-atmosphere::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 7px;
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
    background: #D9A968;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.compromise-flex-block-heading {
    color: #FAFAF6;
    font-family:'Cormorant Garamond',serif;
    font-size: 22px;   
    font-weight: 600;
    margin: 3dvh 0;
}

.compromise-flex-block-body {
    color: #f5efe381;
    font-size: 14px;
    font-family:'Jost',sans-serif;
    font-weight: 300;   
    line-height: 4dvh;
}


/*                             GALLERY SECTION                    */
#gallery {
    min-height: 80dvh;
    background: #F5EFE3;
    padding-top: 15dvh;
    padding-bottom: 15dvh;
}

.gallery-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.gallery-accent {
    width: 2dvw;
    height: 1px;
    background: #C28840;
}

.gallery-tiny-heading {
    font-size: 12px;
    color: #C28840;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.gallery-heading {
    margin-top: 3dvh;
    margin-bottom: 3dvh;
    font-weight: 100;
}

.gallery-heading h1 {
    color: #1A130E;
    font-weight: 400;
    font-size: 56px;
    font-family:'Cormorant Garamond',serif;
}

.gallery-heading h1 span {
    color: #6B4226;
    font-style: italic;
}

.gallery-paragraph {
    color: #5C4F42;
    font-weight: 300;
    font-family:'Jost',sans-serif;
    width: 45%;
    line-height: 4dvh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1dvh;
    margin-top: 5dvh;
}

.gallery-grid-block {
    width: 43dvw;
    height: 50dvh;
    background: linear-gradient(90deg, #D9A968, #5C4F42);
}

.gallery-grid-block:first-of-type {
    width: 100%;
    height: 60dvh;
    grid-column: 1 / -1;
    background-image: url(imgs/DSC05004-Enhanced-NR.jpg);
    background-position: center;
    background-size: cover;
}

.gallery-grid-block:nth-of-type(2) {
    background-image: url(imgs/DSC05011.jpg);
    background-position: center;
    background-size: cover;
}

.gallery-grid-block:nth-of-type(3) {
    background-image: url(imgs/DSC05157.jpg);
    background-position: center;
    background-size: cover;
}

.gallery-grid-block:nth-of-type(4) {
    background-image: url(imgs/DSC05262.jpg);
    background-position: center;
    background-size: cover;
    grid-row: span 2;
    height: 100dvh;   
}

.gallery-grid-block:nth-of-type(5) {
    background-image: url(imgs/DSC05328.jpg);
    background-position: bottom;
    background-size: cover;
    grid-row: span 2;
    height: 100dvh;   
}

.gallery-grid-block:nth-of-type(6) {
    background-image: url(imgs/DSC05289.jpg);
    background-position: center;
    background-size: cover;
}

.gallery-grid-block:nth-of-type(7) {
    background-image: url(imgs/DSC05379.jpg);
    background-position: center;
    background-size: cover;
}

.gallery-grid-block:last-of-type {
    width: 100%;
    height: 80dvh;
    grid-column: 1 / -1;
    background-image: url(imgs/DSC05147.jpg);
    background-position: center;
    background-size:90%;   
    background-repeat: no-repeat;
}


/*                          VISIT SECTION                           */
#contact {
    padding-top: 15dvh;
    padding-bottom: 15dvh;
    background: #FAFAF6;
}

.visit-eyebrow {
    display: flex;
    gap: 1dvw;
    align-items: center;
}

.visit-accent {
    width: 2dvw;
    height: 1px;
    background: #C28840;
}

.visit-tiny-heading {
    font-size: 12px;
    color: #C28840;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.visit-heading {
    margin-top: 3dvh;
    margin-bottom: 3dvh;
    font-weight: 100;
}

.visit-heading h1 {
    color: #1A130E;
    font-weight: 400;
    font-size: 56px;
    font-family:'Cormorant Garamond',serif;
}

.visit-heading h1 span {
    color: #6B4226;
    font-style: italic;
}

.visit-section-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 6dvh;
}

.visit-details {
    background: #1A130E;
    width: 41dvw;
    padding: 5dvh 3dvw;
}

.visit-details-row {
    padding-top: 3dvh;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 4dvh;
    line-height: 4dvh;
}

.visit-details-row:first-of-type {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    padding-bottom: 2dvh;
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.visit-details-row:first-of-type p:first-of-type {
    font-family:'Cormorant Garamond',serif;   
    font-size: 18px;
    color: #FAFAF6;
}

.visit-details-row:first-of-type p:last-of-type {
    color: #D9A968;
    font-family:'DM Mono',monospace;   
    font-size: 13px;
}

.orange-text {
    color: #D9A968;
    font-family:'DM Mono',monospace;
    font-size: 11px;   
    letter-spacing: 2px;
}

.info-text {
    color: #f5efe38f;
    font-family:'Jost',sans-serif;
    font-size: 14px;   
    font-weight: 100;
}

.orange-text2 {
    color: #D9A968;
    font-family:'Jost',sans-serif;
    font-size: 14px;   
    font-weight: 300;
}

.visit-map {
    width: 41dvw;
    height: 81dvh;
    border: 2px solid #C8BA9E;
    border-right-width: 1px;
    border-bottom-width: 1px;
    background: #E2D5B9;
    margin-top: 3dvh;   
    position: relative;
    overflow: hidden;
}

.visit-map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(#c8ba9e77 1px, transparent 1px),
        linear-gradient(90deg, #C8BA9E77 1px, transparent 1px);
    background-size: 3dvw 3dvw;  
}

.vertical-map-line {
    position: absolute;
    height: 100%;
    width: 3px;
    background: #C8BA9E;
    left: 68%;
}

.horizontal-map-line {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #C8BA9E;
    top: 35%;
}

.horizontal-map-line2 {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #C8BA9E;
    top: 75%;
}

.map-button {
    background: #C28840;
    cursor: pointer;
    font-size: 10px;
    font-family:'DM Mono',monospace;
    font-weight: 500;
    letter-spacing: 2px;   
    border: none;
    position: absolute;
    right: 2dvw;
    top: 4dvh;
    padding: 10px 10px;
}

.map-info {
    position: absolute;
    left: 2dvw;
    bottom: 4dvh;
    width: 10dvw;
    height: 9dvh;
    background: #FAFAF6;
    padding: 2dvh 1dvw;
    box-shadow: 0 0 10px #1a130e41;
}

.map-info p:first-of-type {
    color: #1A130E;
    font-family:'Cormorant Garamond',serif;
    font-size: 15px;
    font-weight: 600;
}

.map-info p:last-of-type {
    color: #5C4F42;
    font-family:'Jost',sans-serif;
    font-size: 11px;   
    text-wrap: nowrap;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 34px;
    height: 44px;
}

.map-pin-body {
    background: #6B4226;   
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 6px 16px rgba(61, 40, 23, 0.35);
}

.map-pin-body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #F5EFE3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-pin-ring {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 28px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #6B4226;
    opacity: 0.4;
    animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse { 
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.9; 
        transform: scale(1.04);
    }
}


/*                          STAY IN TOUCH                        */
/* .stay-in-touch {
    background: linear-gradient(90deg, #6A4125, #462D1A);
    height: 65dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stay-in-touch p:first-of-type {
    font-size: 12px;
    color: #C28840;
    font-family:'DM Mono',monospace;
    letter-spacing: 2px;   
}

.sit-heading {
    margin-top: 3dvh;
    margin-bottom: 3dvh;
    font-weight: 100;
}

.sit-heading {
    color: #FAFAF6;
    font-weight: 400;
    font-size: 56px;
    font-family:'Cormorant Garamond',serif;
}

.sit-heading span {
    color: #D9A968;
    font-style: italic;
}

.stay-in-touch p:last-of-type {
    color: #f5efe3c7;
    font-size: 15px;
    font-family:'Jost',sans-serif;
    font-weight: 100;   
} */


/*                              FOOTER                         */
footer {
    height: 40dvh;
    background: #1A130E;
    padding-top: 7dvh;
    padding-bottom: 5dvh;
}

.footer-top {
    display: grid;
    grid-template-columns: 7fr 1fr 1fr 1fr;
}

.footer-column1 p:first-of-type {
    color: #FAFAF6;
    font-size: 26px;
    font-family:'Cormorant Garamond',serif;   
    font-weight: 700;
}

.footer-column1 span {
    color: #D9A968;
    font-style: italic;
}

.footer-column1 p {
    color: #f5efe380;
    font-size: 13px;
    font-family:'Jost',sans-serif;   
    margin-top: 1dvh;
}

.footer-columns p {
    color: #D9A968;
    font-family:'DM Mono',monospace;   
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2dvh;
}

.footer-columns li {
    font-size: 13px;
    font-family:'Jost',sans-serif;   
    list-style: none;
    line-height: 4dvh;
}

.footer-columns a {
    text-decoration: none;
    color: #f5efe380;   
    transition: color .5s ease-in-out;
}

.footer-columns a:hover {
    color: #D9A968;   
}

footer hr {
    border: 1px solid rgba(255,255,255,.04);
    margin-top: 7dvh;
    margin-bottom: 3dvh;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom > p {
    color: rgba(245, 239, 227, 0.4);
    font-family:'Jost',sans-serif;   
    font-size: 12px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 2dvw;
}

.footer-socials a {
    font-family:'Jost',sans-serif;
    font-size: 12px;   
    color: rgba(245, 239, 227, 0.4);
    transition: .5s ease-in-out;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #D9A968;   
}



@media (max-width: 768px) {
    html {
        overflow: hidden;
        scroll-behavior: smooth;
    
    }

    body {
        overflow-y: scroll;
        overflow-x: hidden;
        width: 100%;
        height: 100dvh;
    }
    
    nav {
        height: 10dvh;
    }

    .nav-links {
        display: none;
    }

    .section {
        /* scroll-margin-top: 10dvh; */
    }

    #hero {
        scroll-margin-top: 10dvh;
        margin-top: 10dvh;
        height: 90dvh;
        background-image: 
            linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.5) 60%, rgba(0,0,0,.8) 70%),
            url(imgs/heroBackground.png);
    }

    .hero-content {
        width: 100%;
        /* display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 10dvw; */
    }

    .hero-mobile-left {
        /* width: 47dvw; */
        padding-top: 3dvh;
    }

    .hero-content-h1 h1 {
        font-size: 49px;
        line-height: 8dvh;
        font-weight: 700;
    }

    .hero-content-body {
        margin-top: 3dvh;
    }

    .hero-content-body p {
        line-height: 5dvh;
        font-weight: 400;
    }

    .hero-content-contact {
        display: flex;
        /* flex-direction: column;
        width: 25dvw;
        margin-top: 27dvh;
        gap: 4dvh; */        
    }

    .contact-block {
        width: 28dvw;
        /* background-color: red; */
        height: 12dvh;
    }

    .contact-block p:first-of-type {
        text-wrap: wrap;
        font-size: 13px;
    }

    .contact-block p:last-of-type {
        font-size: 13px;
        font-weight: 400;
    }

    .hero-content-buttons {
        flex-direction: column;
        margin-top: 4dvh;
        gap: 2dvh;
    }

    .hero-content-buttons button {
        padding: 2dvh 12dvw;
    }

    .highlights-marquee ul li {
        margin-left: 10dvw;
        padding-left: 4dvw;
        letter-spacing: 1px;
    }

    #about {
        flex-direction: column;
        gap: 7dvh;
    }

    .about-left {
        width: 100%;
    }

    .about-eyebrow {
        gap: 3dvw;
    }

    .about-accent {
        width: 7dvw;
    }

    .about-heading h1 {
        font-size: 34px;
    }

    .about-body-quote {
        padding: 4px 5dvw;
    }

    .about-right {
        width: 100%;
        padding: 5dvh 10dvw;
    }

    .about-right-heading {
        margin-bottom: 2dvh;
    }

    .about-right-item ul {
        padding-left: 20px;
    }

    .about-right-item ul li::before {
        left: -5dvw;
        width: 6px;
        height: 6px;
    }

    .hr {
        margin-top: 3dvh;
    }

    #menu {
        grid-template-columns: 1fr;
        /* scroll-margin-top: 10dvh; */
    }

    .menu-eyebrow {
        gap: 3dvw;
    }

    .menu-accent {
        width: 7dvw;
    }

    .menu-right {
        width: 100%;
        padding-top: 0;
        margin-top: 5dvh;
        margin-bottom: 6dvh;
    }

    .menu-right p {
        margin-bottom: 0;
    }

    .menu-heading {
        margin-bottom: 0dvh;
    }

    .menu-heading h1 {
        font-size: 34px;
    }

    .pastries {
        margin-top: 5dvh;
    }

    .sandwiches {
        margin-top: 5dvh;
    }

    .specials {
        margin-top: 5dvh;
    }

    .menu-section-item {
        height: 7dvh;
    }

    .compromise {
        height: fit-content;
    }

    .compromise-eyebrow {
        gap: 3dvw;
    }

    .compromise-accent {
        width: 7dvw;
    }

    .compromise-heading {
        margin-bottom: 7dvh;
    }

    .compromise-heading h1 {
        font-size: 34px;
    }

    .compromise-flex {
        flex-direction: column;
    }

    .compromise-flex-block {
        width: 100%;
        border-left: none;
        border-top: 2px solid #ffffff10;
        padding: 5dvh 7dvw;
    }

    .compromise-flex-block-body {
        color: #f5efe3b0;
    }

    .gallery-eyebrow {
        gap: 3dvw;
    }

    .gallery-accent {
        width: 7dvw;
    }

    .gallery-heading h1 {
        font-size: 34px;
    }

    .gallery-paragraph {
        width: 100%;
    }

    .gallery-grid-block:first-of-type {
        height: 30dvh;
    }

    .gallery-grid-block:nth-of-type(2) {
        height: 25dvh;
    }

    .gallery-grid-block:nth-of-type(3) {
        height: 25dvh;
    }

    .gallery-grid-block:nth-of-type(4) {
        height: 50dvh;
    }

    .gallery-grid-block:nth-of-type(5) {
        height: 50dvh;
    }

    .gallery-grid-block:nth-of-type(6) {
        height: 25dvh;
    }

    .gallery-grid-block:nth-of-type(7) {
        height: 25dvh;
    }

    .gallery-grid-block:last-of-type {
        height: 30dvh;
    }

    #contact {
        /* scroll-margin-top: 10dvh; */
    }

    .visit-eyebrow {
        gap: 3dvw;
    }

    .visit-accent {
        width: 7dvw;
    }

    .visit-heading h1 {
        font-size: 34px;
    }

    .visit-section-flex {
        flex-direction: column;
    }

    .visit-details {
        width: 100%;
        padding: 5dvh 11dvw;
    }

    .visit-details-row {
        line-height: 3dvh;
    }

    
    .info-text {
        color: #f5efe3b2;
    }

    .visit-map {
        width: 100%;
        height: 45dvh;
    }

    .visit-map-grid {
        background-size: 10dvw 10dvw;
    }

    .map-button {
        right: 5dvw;
    }

    .vertical-map-line {
        left: 65%;
    }

    .horizontal-map-line {
        top: 30%;
    }

    .horizontal-map-line2 {
        top: 65%;
    }

    .map-info {
        width: fit-content;
        padding: 2dvh 5dvw;
    }

    footer {
        height: fit-content;
    }

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-column1 {
        grid-column: span 4;
        margin-bottom: 5dvh;
    }

    .footer-columns {
        width: fit-content;
        margin-right: 7dvw;
    }

    .footer-columns li {
        text-wrap: nowrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1dvh;
        align-items: start;
    }

    .footer-bottom > p {
        line-height: 3dvh;
    }
    
    .footer-socials {
        justify-content: space-between;
        width: 80%;
    }

    .footer-socials a {
        font-size: 11px;
    }
}
