@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=M+PLUS+1:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background-color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#463F3A;
}


/* =========================
   BANNER
========================= */

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(111, 78, 55, 0.40);
    z-index: 1;
}

/* TEXT OVER IMAGE */

.banner-text {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
    color: white;

    width: 90%;

    z-index: 2;
}

.banner-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(35px, 6vw, 80px);
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.banner-text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 2vw, 22px);
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   GENERAL HOME PAGE SECTIONS
========================= */

.section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* FOUNDERS SECTION ///////////////////////////
///////////////////////////////////////////////
//////////////////////////////////////////////
/////////////////////////////////////////////
*/

.founders {
    background-color:#ffffff;
    color:black;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
}

.founders-text {
    max-width: 550px;
}

.founders h1 {
    color: #e94505;
    font-family: "Montserrat", sans-serif;
    font-size:90px;
    line-height:.8;
    font-weight:450;

    margin-bottom: 5px;

}

.description {
    font-family: "Montserrat", sans-serif;
    max-width: 450px;

    font-size: 15px;
    line-height: 1.7;
    margin-top:20px;
}

/* IMAGE */

.founders-image {
    width: 100%;
    height: 60vh;
    min-height: 400px;
}

.founders-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
   PHONE FOUNDERS IMAGE
========================= */

.founders-phone-image {
    display: none;
}

/* PHONE */
@media (max-width: 767px) {
    .founders {
        padding: 60px 20px;
    }
    .founders-image {
        margin-top: 40px;
        display: none;
    }

    .founders-phone-image {
        display: block;

        width: 100%;

        margin: 35px 0;
    }


    .founders-image img {
        height: 400px;
    }

    .founders-phone-image img {
        width: 100%;
        height: 300px;

        object-fit: cover;

        border-radius: 10px;
        display: block;
    }

    .founders h1 {
        font-size: 55px;
    }
}


/* FOUNDERS SECTION ENDING ///////////////////////////
///////////////////////////////////////////////
//////////////////////////////////////////////
///////////////////////////////////////////// END
*/


/* =========================
   SECTION 2 — BEANS
========================= */

/* =========================
SECTION 2 — BEANS
========================= */

.about {
    background-color: #1a4d6f97;
    color: white;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 100px 20px;
}


/* =========================
CENTER CONTENT
========================= */

.about-content {
    width: 45%;
    max-width: 600px;

    text-align: center;

    position: relative;
    z-index: 10;
}

.about-content p {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(24px, 3.5vw, 52px);
    line-height: 1.2;

    margin: 30px 0 45px;
}


/* =========================
BUTTON
========================= */

.outline-button {
    display: inline-flex;

    padding: 15px 32px;
    margin-bottom: 20px;

    border: 1px solid white;
    border-radius: 20px;

    color: white;
    text-decoration: none;

    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    position: relative;
    z-index: 20;

    transition: 0.3s ease;
}

.outline-button:hover {
    background: white;
    color: #111;
}


/* =========================
CIRCLE IMAGES
========================= */

.circle-image {
    position: absolute;

    width: 320px;
    height: 320px;

    border: 1px solid rgba(255, 255, 255, 0.579);
    border-radius: 50%;

    object-fit: cover;

    pointer-events: none;

    z-index: 1;
}


/* DESKTOP */

.circle-one {
    left: 3vw;
    bottom: 5vh;
}

.circle-two {
    right: 3vw;
    top: 5vh;
}

/* =========================
TABLET
========================= */

@media (max-width: 1000px) {

    .about {
        padding: 100px 30px;
    }

    .about-content {
        width: 50%;
    }

    .circle-image {
        width: 250px;
        height: 250px;
    }

    .circle-one {
        left: 10px;
        bottom: 30px;
    }

    .circle-two {
        right: 10px;
        top: 30px;
    }
}


/* =========================
PHONE
========================= */

@media (max-width: 767px) {

    .about {

        min-height: 100vh;

        padding: 40px 20px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* TEXT */

    .about-content {
        width: 90%;
        max-width: 450px;

        margin: 0 auto;

        z-index: 10;
    }

    .about-content p {
        font-size: clamp(21px, 5.5vw, 30px);
        line-height: 1.4;

        margin: 20px 0 35px;
    }


    /* CIRCLES */

    .circle-image {

        width: 190px;
        height: 190px;

        position: absolute;
    }


    /* TOP CIRCLE */

    .circle-two {

        top: 20px;
        right: 20px;

    }


    /* BOTTOM CIRCLE */

    .circle-one {

        bottom: 20px;
        left: 20px;

    }
}


/* =========================
SMALL PHONE
========================= */

@media (max-width: 480px) {

    .about {

        padding: 40px 15px;

    }


    .about-content {

        width: 90%;

    }


    .about-content p {

        font-size: 20px;
        line-height: 1.45;

    }


    .circle-image {
        width: 170px;
        height: 170px;
    }

    .circle-two {
        top: 15px;
        right: 15px;
    }

    .circle-one {
        bottom: 15px;
        left: 15px;
    }
}

/* BEANS SECTION ENDING ///////////////////////////
///////////////////////////////////////////////
//////////////////////////////////////////////
///////////////////////////////////////////// END
*/


/* =========================
   SECTION 3 — MENU
========================= */

.delicious {
    background-color: #fbf8ddb2;
    color: black;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 60px 5vw;
}


/* LEFT CONTENT */

.delicious-content {
    max-width: 700px;
    margin-top: 40px;
    text-align: left;
}

.delicious h2 {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(60px, 10vw, 150px);
    font-weight: 400;

    line-height: 0.9;

    margin: 0 0 20px 0;
}

.delicious p {
    max-width: 350px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;

    margin: 0 0 0 12px;
}


/* MENU BUTTON CONTAINER */

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* MENU BUTTON */

.menu-button {
    width: 150px;
    height: 150px;

    border: 1px solid black;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;

    transition: 0.3s ease;
}

.menu-button:hover {
    background-color: black;
    color: white;
}


@media (max-width: 767px) {

    .delicious {
        min-height: auto;
        padding: 80px 7vw;
    }

    .delicious-content {
        margin-top: 0;
        margin-bottom: 80px;
    }

    .delicious h2 {
        font-size: clamp(45px, 14vw, 80px);
        letter-spacing: -3px;
        white-space: nowrap;
    }

    .delicious p {
        margin-left: 0;
    }

    .menu-container {
        padding: 20px 0 40px;
    }

    .menu-button {
        width: 130px;
        height: 130px;
    }

}



/* MENU SECTION ENDING ///////////////////////////
///////////////////////////////////////////////
//////////////////////////////////////////////
///////////////////////////////////////////// END
*/

/* =========================

   SECTION 4 — SOCIAL

========================= */



/* =========================
SECTION 4 — SOCIAL
========================= */

.social {
    position: relative;

    /*background-image: url("images/founders.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
    background-color: #e94605d8;

    color: white;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 7vw;

    overflow: hidden;
}



.social-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;



    width: 100%;

    text-align: center;

}



.social h2 {

    font-family: "Montserrat", sans-serif;



    font-size: clamp(55px, 10vw, 100px);

    font-weight: 500;




    line-height: 0.9;


    margin: 100px 0 50px 0;

    text-align: center;

}



/* =========================

   HERE BUTTON

========================= */


.here-button {

    display: inline-flex;
    color:#ffffff;
    border: 1px solid white;



    padding: 15px 42px;



    border-radius: 30px;



    font-size: 13px;

    letter-spacing: 2px;



    transition: 0.3s ease;

}



.here-button:hover {

    background: white;

    color: black;

}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 80px;

    font-family: "Montserrat", sans-serif;
    font-size: small;

    background: #e94505;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;

    position: relative;
    z-index: 1001;

    border-bottom: 1px solid white;
}


/* =========================
   BRAND
========================= */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.nav-logo img {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    border: 1px solid white;

    display: block;

    object-fit: cover;
}


/* =========================
   NAV LINKS
========================= */

.nav-links {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    list-style: none;

    display: flex;
    align-items: center;

    gap: 40px;

    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;

    color: white;

    font-weight: 600;

    position: relative;

    transition: color 0.3s;
}


/* UNDERLINE */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #669cc0;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #669cc0;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   FIND US
========================= */

.find-btn {
    display: inline-block;

    text-decoration: none !important;

    color: white !important;

    padding: 10px 20px;

    border: 1px solid white !important;

    border-radius: 20px;

    font-family: "Montserrat", sans-serif;

    font-size: small;

    font-weight: 600;

    transition: 0.3s ease;
}

.find-btn::after {
    display: none !important;
}

.find-btn:hover {
    background: white !important;
    color: #e94505 !important;
}


/* =========================
   DESKTOP
========================= */

.menu-btn {
    display: none;
}

.desktop-find {
    display: inline-block;
    margin-left: auto;
}

.nav-links li.mobile-find {
    display: none;
}

.sidebar-logo {
    display: none;
}


.mobile-nav-buttons {
    display: none;
}
/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 768px) {

    /* TOP NAVBAR */
    .navbar {
        width: 100%;
        height: 75px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 10px 20px;

        position: relative;
        z-index: 1001;
    }


    /* =========================
       LOGO — LEFT
    ========================= */

    .brand {
        order: 1;

        display: flex;
        align-items: center;

        margin: 0;
        padding: 0;
    }

    .nav-logo {
        margin: 0;
        padding: 0;
    }

    .nav-logo img {
        width: 55px;
        height: 55px;

        border-radius: 50%;
        border: 1px solid white;

        display: block;
        object-fit: cover;
    }


    /* =========================
       HAMBURGER — RIGHT
    ========================= */

    .menu-btn {
        order: 2;

        display: block;

        font-size: 30px;
        line-height: 1;

        color: white;

        cursor: pointer;

        z-index: 1002;
    }


    /* =========================
       SIDEBAR — SLIDES FROM LEFT
    ========================= */

    .nav-links {
        position: fixed;

        top: 0;
        right: 0;
        left: auto;

        width: 280px;
        height: 100vh;

        background: #af3302;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 30px;

        padding: 30px 20px;

        margin: 0;

        list-style: none;

        transform: translateX(100%);

        transition: transform 0.3s ease;

        z-index: 1000;
    }


    /* SIDEBAR OPEN */

    .nav-links.active {
        transform: translateX(0);
    }


    /* =========================
       SIDEBAR LOGO
    ========================= */

    .nav-links::before {
        content: "";

        width: 65px;
        height: 65px;

        background-image: url("../images/logo.jpg");
        background-size: cover;
        background-position: center;

        border-radius: 50%;
        border: 1px solid white;

        margin-bottom: 15px;
    }


        /* =========================
        SIDEBAR LINKS
        ========================= */

        .nav-links li {
            width: 100%;
            text-align: center;
        }

        .nav-links a {
            color: white;
            font-size: 15px;
        }


        /* =========================
        FIND US
        ========================= */

        .desktop-find {
            display: none;
        }

        .nav-links li.mobile-find {
            display: block;
        }

        /* =========================
    RIGHT SIDE BUTTONS
    ========================= */

    .mobile-nav-buttons {
        display: flex;

        align-items: center;

        gap: 18px;

        order: 2;
    }


    /* =========================
    LOCATION PIN
    ========================= */

    .location-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        color: white;

        text-decoration: none;

        font-size: 25px;

        width: 35px;
        height: 35px;

        transition: 0.3s ease;
    }

    .location-btn:hover {
        color: #669cc0;
    }


/* =========================
   HAMBURGER
========================= */


}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;

    background-color: #001427;
    color: white;

    padding: 80px 7vw 30px;
}


/* =========================================================
   FOOTER — THREE COLUMNS
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 60px;

    align-items: start;
}


/* =========================================================
   LEFT — EXPLORE OUR SITE
========================================================= */

.footer-links {
    text-align: left;
}

.footer-links h2 {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    font-weight: 500;

    margin: 0 0 25px;
}

.footer-links ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #e94505;
}


/* =========================================================
   CENTER — SOCIAL BEAN
========================================================= */

.footer-center {
    text-align: center;

    display: flex;
    flex-direction: column;

    align-items: center;
}

.footer-center h1 {
    font-family: "Montserrat", sans-serif;

    font-size: 45px;
    font-weight: 400;

    line-height: 1;

    margin: 0 0 30px;
}


/* =========================================================
   FOOTER SOCIAL LINKS
========================================================= */

.footer-social-links {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;
}

.footer-social-links a {
    width: 48px;
    height: 48px;

    border: 1px solid white;
    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.footer-social-links img {
    width: 21px;
    height: 21px;

    object-fit: contain;

    filter: invert(1);

    transition: 0.3s ease;
}

.footer-social-links a:hover {
    background-color: white;

    transform: translateY(-4px);
}

.footer-social-links a:hover img {
    filter: invert(0);
}


/* =========================================================
   RIGHT — BUSINESS HOURS
========================================================= */

.footer-hours {
    width: 100%;
    max-width: 350px;

    margin-left: auto;
}

.footer-hours h2 {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    font-weight: 500;

    margin: 0 0 25px;

    text-align: left;
}


/* =========================================================
   FOOTER HOURS LIST
========================================================= */

.footer-hours-list {
    width: 100%;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
}

.footer-hours-list div {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 8px 0;

    border-bottom: 1px solid #444;
}

.footer-hours-list div span:first-child {
    font-weight: 500;
}

.footer-hours-list div span:last-child {
    text-align: right;

    white-space: nowrap;
}


/* =========================================================
   FOOTER OPEN/CLOSED STATUS
========================================================= */

#footer-status {
    text-align: left;

    margin: 20px 0 0;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-bottom {
    width: 100%;

    max-width: 1400px;

    margin: 70px auto 0;

    padding-top: 25px;

    border-top: 1px solid #444;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    letter-spacing: 1px;

    color: #aaa;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .site-footer {
        padding: 70px 6vw 25px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 60px;
    }

    .footer-center {
        grid-column: 1 / -1;
        grid-row: 1;

        order: -1;
    }

    .footer-links {
        grid-column: 1;
    }

    .footer-hours {
        grid-column: 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 60px 25px 25px;
    }

    .footer-container {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 50px;
    }


    /* Center */

    .footer-center {
        order: -1;
    }

    .footer-center h1 {
        font-size: 38px;

        margin-bottom: 25px;
    }


    /* Social */

    .footer-social-links {
        gap: 12px;
    }

    .footer-social-links a {
        width: 45px;
        height: 45px;
    }


    /* Links */

    .footer-links {
        width: 100%;

        text-align: center;
    }

    .footer-links h2 {
        font-size: 20px;
    }


    /* Hours */

    .footer-hours {
        width: 100%;
        max-width: 400px;

        margin: 0;

        text-align: center;
    }

    .footer-hours h2 {
        text-align: center;

        font-size: 20px;
    }

    .footer-hours-list {
        font-size: 11px;
    }

    #footer-status {
        text-align: center;
    }


    /* Copyright */

    .footer-bottom {
        margin-top: 50px;
    }

}



