:root {
    --button-color: #645740;
    --eyebrow-text-color: #CFB379;
    --body-text-color: #CFCFCF;
    --menu-body-text-color: #D9D9D9;
    --brown-background: #25221D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* get rid of warning in "best practices" */
:where(h1), :where(h2), :where(h3), :where(h4), :where(h5), :where(h6) {
  font-size: 20px;
}
section h1,
article h1,
nav h1,
aside h1 {
  font-size: 20px; 
}

html {
    /* overflow-x: hidden; */
    background-color: #1A1A1A;
    color: white;
    font-family: "Lato", sans-serif; /* Default font */
    font-size: 400; /* Default Font weight */
}

/* --- LATO --- */
@font-face {
    font-family: 'Lato';
    src: url('../public/fonts/lato/lato-v24-latin-300.woff2') format('woff2'),
         url('../public/fonts/lato/lato-v24-latin-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
@font-face {
    font-family: 'Lato';
    src: url('../public/fonts/lato/lato-v24-latin-regular.woff2') format('woff2'),
         url('../public/fonts/lato/lato-v24-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
@font-face {
    font-family: 'Lato';
    src: url('../public/fonts/lato/lato-v24-latin-700.woff2') format('woff2'),
         url('../public/fonts/lato/lato-v24-latin-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

/* --- PRATA --- */
@font-face {
    font-family: 'Prata';
    src: url('../public/fonts/prata/prata-v20-latin-regular.woff2') format('woff2'),
         url('../public/fonts/prata/prata-v20-latin-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

/* ************ GLOBAL ************ */
@media screen and (min-width: 0rem) {
    .eyebrow-text {
        text-transform: uppercase;
        color: var(--eyebrow-text-color);
    }

    .title {
        margin-top: 8px;
        font-weight: 400;
        font-size: 1.875rem;
    }

    .description {
        margin-top: 16px;
        font-size: 1rem;
        color: var(--body-text-color);
    }

    .primary-button {
        display: inline-block;
        background-color: var(--button-color);
        color: white;
        padding-block: 18px;
        padding-inline: 36px;
        border: none;
        border-radius: 40px;
        font-family: 'Prata', serif;
        font-size: 1rem;
        text-decoration: none;
        white-space: nowrap;
        
    }

    .secondary-button {
        border: solid var(--button-color) 2px;
        background: transparent;
        color: white;
        padding-block: 16px;
        padding-inline: 36px;
        border-radius: 40px;
        font-family: 'Prata', serif;
        font-size: 1rem;
        text-decoration: none;
        white-space: nowrap;
    }

    button {
        cursor: pointer;
    }

    button:hover {
        opacity: 0.8;
    }

    a:hover {
        opacity: 0.8;
    }

    input:focus, textarea:focus {
        outline: none;
        box-shadow: 0 0 0 1px var(--eyebrow-text-color); /* Customize as needed */
      }


    .inner-page-hero {
        position: relative;
    }

    .image-container {
        height: 550px;
    }

    .image-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.72);
        z-index: 1;
    }

    .hero-image {
        position: relative;
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .hero-title {
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50%;
        bottom: 50%;
        z-index: 2;
        color: white;
        font-size: 40px;
        text-transform: uppercase;
        font-family: "Lato", sans-serif;
        font-weight: 400;
    }
}
@media screen and (min-width: 64rem) {
    .title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 60px;
    }
}

/* --- NAVBAR --- */
@media screen and (min-width: 0rem) {
    .cs-header {
        width: 100%;
        position: fixed;
        z-index: 3;
        top: 0;
        margin-bottom: -100px;
        transition: all 0.3s ease;
        height: 100px;
        overflow: hidden;
    }

    .active-bg {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(1, 1, 1, 0.7);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .menu-active {
        position: fixed;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background-color: rgba(1, 1, 1, 0.85);
        height: 100vh;
    }

    .mobile-menu {
        height: 100%;
        display: none;
        text-align: center;
        flex-direction: column;
        padding-top: 32px;
    }

    .menu-active .mobile-menu {
        display: flex;
    }

    .mobile-ul {
        height: 65vh;
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-link {
        color: white;
        text-decoration: none;
        font-size: 22px;
        font-family: 'Prata', serif;
    }

    .mobile-link.active {
        color: var(--eyebrow-text-color);
    }

    .navbar-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        z-index: 1000; 
    }

    .hamburger-menu {
        position: absolute;
        left: 24px;
        top: 50%;
        background-color: white;
        width: 20px;
        height: 1.5008px;
        border: none;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active {
        transform: rotate(360deg);
        height: 0px;
    }

    .hamburger-menu.active::before {
        transform: rotate(45deg);
    }

    .hamburger-menu.active::after {
        transform: rotate(-45deg);
    }

    .hamburger-menu::before {
        content: "";
        position: absolute;
        background-color: white;
        width: 20px;
        height: 1.5008px;
        top: 0px;
        left: 0px;
        transform: translateY(6px);
    }

    .hamburger-menu::after {
        content: "";
        position: absolute;
        background-color: white;
        width: 20px;
        height: 1.5008px;
        top: 0px;
        transform: translateY(-6px);
        left: 0px;
        transition: all 0.2s linear;
    }

    .logo {
        width: 50px;
        height: auto;
    }

    .nav-ul {
        display: none;
    }

    .navbar-container .primary-button {
        display: none;
    }
}
@media screen and (min-width: 64rem) {
    .navbar-container {
        justify-content: space-between;
        height: auto;
        padding: 16px 24px;
    }

    .hamburger-menu {
        display: none;
    }

    .logo {
        width: 50px;
    }

    .nav-ul {
        position: absolute;
        left: 50%;
        right: 50%;
        display: flex;
        gap: 80px;
        justify-content: center;
    }

    .nav-li {
        list-style: none;
    }

    .nav-link {
        color: #FFFFFF;
        font-family: "Prata", serif;
        text-decoration: none;
    }

    .nav-link.active {
        color: var(--eyebrow-text-color);
    }

    .navbar-container .primary-button {
        display: block;
        padding-inline: 28px;
    }
}
@media screen and (min-width: 80rem) {
    .nav-ul {
        gap: 120px;
    }
}

/* --- HERO --- */
@media screen and (min-width: 0rem) {
    .hero-container {
        position: relative;
        width: 100%;
        height: 680px;
    }

    .hero-container .image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .hero-container::after {
        position: absolute;
        z-index: -1;
        content: "";
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
        top: 0;
        left: 0;
    }

    .hero-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        max-width: 350px;
        margin-inline: auto;
        padding-top: 100px;
        padding-inline: 24px;
    }

    .hero-content .title {
        font-size: 50px;
        font-family: "Lato", sans-serif;
        font-weight: 700;
    }

    .hero-content .description {
        font-size: 28px;
        line-height: 160%;
        padding-top: 8px;
        font-family: "Lato", sans-serif;
        font-weight: 300;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        margin-top: 60px;
    }
}
@media screen and (min-width: 42rem) {
    .hero-content {
        max-width: 100%;
    }

    .hero-content .description {
        padding-top: 0px;
    }
}
@media screen and (min-width: 64rem) {
    .hero-container {
        height: 800px;
    }

    .hero-content {
        max-width: 65rem;
    }

    .hero-content .title {
        font-size: 80px;
    }

    .hero-content .description {
        font-size: 52px;
    }

    .hero-buttons {
        gap: 32px;
    }

    .primary-button {
        padding-block: 18px;
        padding-inline: 46px;
        font-size: 1.125rem;
        
    }

    .secondary-button {
        padding-block: 16px;
        padding-inline: 46px;
        font-size: 1.125rem;
    }
}

/* --- ABOUT --- */
@media screen and (min-width: 0rem) {
    .about {
        margin-top: 60px;
        padding-inline: 24px;
        max-width: 32rem;
        margin-inline: auto;
    }

    .about .description {
        margin-bottom: 32px;
    }

    .about .primary-button {
        margin-left: -4px;
    }

    .about .image {
        max-width: 100%;
        margin-top: 32px;
    }
}
@media screen and (min-width: 64rem) {
    .about {
        max-width: 80rem;
        margin-top: 80px;
        display: grid;
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .about-content {
        min-width: 350px;
        max-width: 30%;
    }

    .about .description {
        margin-bottom: 48px;
    }

    .about .image {
        height: 350px;
        object-fit: cover;
    }
}

/* --- MENU --- */
@media screen and (min-width: 0rem) {
    .menu {
        margin-top: 48px;
    }
    .menu-container {
        background-image: url('../public/home/menu/menu-background.jpg');
        background-size: cover; /* fills the container */
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 800px;
        width: 100%;
        text-align: center;
    }

    .menu .eyebrow-text {
        padding-top: 60px;
    }

    .menu .eyebrow-text, .menu .title {
        text-align: center;
    }

    .menu-content {
        max-width: 32rem;
        margin-inline: auto;
        text-align: left;
    }

    .menu-items {
        padding-inline: 24px;
        margin-block: 48px;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .menu-item-header {
        display: flex;
        align-items: center;
    }

    .menu-item-name {
        font-size: 1.125rem;
        font-family: "Prata", Serif;
        white-space: nowrap;
    }

    .line {
        width: 100%;
        height: 0.6px;
        background-color: var(--menu-body-text-color);
        margin-inline: 12px;
    }

    .menu-item-price {
        font-size: 1.125rem;
        font-family: "Prata", Serif;
        white-space: nowrap;
    }

    .menu-item-description {
        font-family: "Lato", sans-serif;
        font-weight: 300;
        color: var(--menu-body-text-color);
        margin-top: 8px;
        font-size: 1rem;
    }

    .menu .image {
        width: 100%;
        object-fit: cover;
    }

    .menu .primary-button {
        margin-top: 32px;
        margin-bottom: 48px;
        padding-block: 20px;
    }
}
@media screen and (min-width: 64rem) {
    .menu {
        margin-top: 100px;
    }

    .menu-content {
        margin-top: 32px;
        max-width: 80rem;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .menu-items {
        width: 100%;
    }

    .menu .image {
        width: 100%;
    }

    .menu .primary-button {
        margin-top: 48px;
        margin-bottom: 60px;
    }
}

/* --- CATERING --- */
@media screen and (min-width: 0rem) {
    .catering {
        background-color: var(--brown-background);
    }
    .catering-content {
        max-width: 32rem;
        margin-inline: auto;
        padding-inline: 24px;
        padding-block: 60px;
        z-index: 1;
    }
    
    .catering-content .description {
        line-height: 160%;
    }

    .catering .primary-button {
        margin-top: 48px;
    }

    .catering .image {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        object-position: top center;
        background-repeat: no-repeat;

    }
}
@media screen and (min-width: 64rem) {
    .catering {
        display: flex;
        position: relative;
    }
    .catering-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: auto;
        max-width: 50rem;
        width: 80%;
        padding-block: 80px;
    }

    .catering picture {
        position: relative;
        display: flex;
        width: 100%;
        min-height: 100%;
        max-height: 650px;
    }

    .catering picture::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0px;
        width: 120px;
        background: var(--brown-background);
        transform: skew(-10deg);
        transform-origin:top;
        z-index: 0;
    }

    .catering .image {
        max-height: 100%;

    }


    .catering .primary-button {
        align-self: flex-start;
        width: auto;
    }
}

/* --- TESTIMONIAL --- */
@media screen and (min-width: 0rem) { 
    .testimonial {
        margin-top: 60px;
        margin-bottom: 48px;
        padding-inline: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 32rem;
        margin-inline: auto;
    }
    .quotes-icon {
        width: 40px;
    }

    .quote {
        text-align: center;
        font-size: 1.375rem;
        font-weight: 300;
        margin-top: 48px;
    }

    .testimonial .image {
        margin-top: 60px;
    }

    .testimonial .name {
        margin-top: 16px;
        font-size: 1rem;
    }

    .testimonial .job-title {
        margin-top: 8px;
        font-size: .75rem;
        color: #C1C1C1;
    }
}
@media screen and (min-width: 64rem) {
    .testimonial {
        margin-top: 80px;
        margin-bottom: 80px;
        max-width: 64rem;
    }

    .quotes-icon {
        width: 70px;
    }

    .quote {
        font-size: 2rem;
        margin-top: 80px;
    }

    .testimonial .image {
        margin-top: 80px;
    }
}

/* --- GALLERY --- */
@media screen and (min-width: 0rem) {
    .gallery {
        background-color: #2F2F2F;
        display: flex;
    }

    .gallery-content {
        padding-block: 48px;
        text-align: center;
        padding-inline: 24px;
        max-width: 32rem;
        margin-inline: auto;
    }

    .gallery-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 12px;
        margin-top: 32px;
    }

    .gallery .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-images picture:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-images picture:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-images picture:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-images picture:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }
}
@media screen and (min-width: 64rem) {
    .gallery-content {
        padding-block: 80px;
        max-width: 80rem;
    }

    .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* Create 4 equal columns */
    grid-template-rows: auto auto;  /* Create 2 rows */
    gap: 10px;  /* Adjust gap between images if needed */
}

.gallery-images picture:nth-child(1) {
    grid-column: span 2;  /* Make the first image take up 2 columns */
    grid-row: 1;  /* Place it in the first row */
}

.gallery-images picture:nth-child(2) {
    grid-column: 1;  /* Place the second image in the first column */
    grid-row: 2;  /* Place it in the second row */
}

.gallery-images picture:nth-child(3) {
    grid-column: 2;  /* Place the third image in the second column */
    grid-row: 2;  /* Place it in the second row */
}

.gallery-images picture:nth-child(4) {
    grid-column: span 2;  /* Make the fourth image take up 2 columns */
    grid-row: span 2;  /* Make the fourth image span 2 rows */
}
}

/* --- CTA --- */
@media screen and (min-width: 0rem) {
    .cta {
        padding-block: 48px;
        background-color: var(--brown-background);
    }

    .cta-content {
        max-width: 32rem;
        margin-inline: auto;
        padding-inline: 24px;
    }

    .cta .primary-button {
        margin-top: 32px;
    }

    .cta-map {
        display: flex;
        width: 100%;
        padding-inline: 24px;
        height: 450px;
        margin-top: 60px;
        max-width: 32rem;
        margin-inline: auto;
    }
}
@media screen and (min-width: 64rem) {
    .cta-content {
        max-width: 80rem;
        display: flex;
        justify-content: space-between;
    }

    .cta-content .description {
        max-width: 36rem;
    }

    .cta .primary-button {
        margin-top: 0px;
        padding-block: 20px;
        align-self: center;
    }

    .cta-map {
        max-width: 80rem;
    }
}

/* --- FOOTER --- */
@media screen and (min-width: 0rem) {
    .footer {
        padding-inline: 24px;
        max-width: 32rem;
        margin-inline: auto;
    }

    .footer-header {
        font-size: 1.5rem;
        font-weight: 400;
        margin-top: 60px;
    }

    .hours-days-container {
        display: flex;
        justify-content: space-between;
        margin-top: 24px;
    }

    .footer-hours-section .footer-header {
        margin-bottom: 8px;
    }

    .days {
        color: #B7B7B7;
    }

    .hours {
        color: #CFB379;
    }

    .footer-hours-section hr {
        margin-top: 12px;
        border: none;
        height: 0.6px;
        background-color: #949494;
    }

    .footer-explore-section {
        display: flex;
        flex-direction: column;
    }

    .footer-link {
        color: #B7B7B7;
        margin-top: 24px;
        text-decoration: none;
    }

    .footer-contact-section {
        display: flex;
        flex-direction: column;
    }

    .footer .divider {
        border: none;
        height: 0.4px;
        background-color: var(--eyebrow-text-color);
        margin-block: 60px;
    }

    .footer-legal-container {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .footer-legal-container .footer-link {
        margin-top: 0px;
    }

    .footer-legal-container hr {
        border: none;
        width: 0.6px;
        background-color: #949494;
    }

    .copyright {
        margin-top: 32px;
        text-align: center;
        color: #BDBDBD;
    }

    .footer .footer-logo {
        width: 50px;
        display: block;
        margin: 60px auto 25px;
    }
}
@media screen and (min-width: 64rem) {
    .footer {
        max-width: 80rem;
    }

    .footer-header {
        margin-top: 80px;
    }

    .days {
        margin-right: 80px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
    }

    .footer-bottom-content {
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 48px;
    }

    .copyright {
        margin-top: 0px;
    }

    .footer .footer-logo {
       position: absolute;
       margin: 0px;
       left: 50%;
       right: 50%;
    }

}