* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #111;
}


/* =========================
   HEADER
   ========================= */

.site-header {
    width: 100%;
    background: #fdf4e7;
    border-bottom: 1px solid #eadfd3;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    align-items: center;

    max-width: 1200px;
    height: 115px;

    margin: 0 auto;
    padding: 0 25px;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 115px;
    overflow: hidden;
}

.site-logo-image {
    display: block;
    width: 220px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.main-nav-left {
    justify-content: flex-end;
    padding-right: 35px;
}

.main-nav-right {
    justify-content: flex-start;
    padding-left: 35px;
}

.main-nav a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    background: #ef7f6d;

    transition: right .2s ease;
}

.main-nav a:hover::after {
    right: 0;
}


/* =========================
   MOBILE
   ========================= */

.mobile-menu-toggle,
.mobile-nav {
    display: none;
}


@media (max-width: 800px) {

    .header-inner {
        display: flex;
        justify-content: center;

        height: 105px;
        padding: 0 20px;
    }

    .main-nav {
        display: none;
    }

    .site-logo-image {
        width: 185px;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 20px;
        top: 50%;

        display: block;

        width: 30px;
        padding: 0;

        border: 0;
        background: transparent;

        transform: translateY(-50%);
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;

        width: 100%;
        height: 2px;

        margin: 6px 0;

        background: #111;
    }

    .mobile-nav {
        display: none;
        padding: 15px 25px 25px;

        background: #fffaf3;
        border-top: 1px solid #eee7de;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav a {
        display: block;

        padding: 14px 0;

        color: #111;
        text-decoration: none;

        font-size: 17px;
        font-weight: 600;

        border-bottom: 1px solid #eee7de;
    }

}


/* =========================
   MAIN PAGE
   ========================= */

.site-main {
    width: 100%;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    margin-top: 80px;
    padding: 50px 35px;
    background: #111;
    color: #fff;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: #999;
    font-size: 13px;
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    height: 560px;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 40px 25px;
}


/* PHOTO */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
    This photo has useful activity around the centre,
    so start here and adjust if required.
    */
    object-position: center 52%;
}


/* DARKEN PHOTO */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0,0,0,.42);
}


/* HERO CONTENT */

.hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    text-align: center;
}


/* TITLE */

.hero h1 {
    margin: 0 0 15px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;

    line-height: 1.05;

    text-shadow: 0 2px 15px rgba(0,0,0,.35);
}


.hero-subtitle {
    margin: 0 0 38px;

    color: rgba(255,255,255,.9);

    font-size: 20px;
}


/* SEARCH BOX */

.search-field {
    display: flex;

    max-width: 900px;

    margin: 0 auto;
    padding: 8px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}


.search-field input {
    flex: 1;

    min-width: 0;

    padding: 18px 22px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #111;

    font-size: 18px;
}


.search-field button {
    min-width: 160px;

    padding: 18px 28px;

    border: 0;
    border-radius: 8px;

    background: #ef7f6d;
    color: #fff;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
}


/* POPULAR */

.popular-searches {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 25px;

    color: rgba(255,255,255,.8);

    font-size: 14px;
}


.popular-searches a {
    color: #fff;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* MOBILE */

@media (max-width: 800px) {

    .hero {
        height: 500px;

        padding: 30px 20px;
    }

    .hero-background img {
        object-position: 55% center;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .search-field input {
        padding: 15px;

        font-size: 15px;
    }

    .search-field button {
        min-width: auto;

        padding: 15px 20px;

        font-size: 15px;
    }

}


.sushi-search {
    width: 100%;
}

.search-field button:hover {
    opacity: .9;
}

.search-field button:active {
    transform: scale(.98);
}
