/* =========================
   FONTS
========================= */
@font-face {
    font-family: Arial_server;
    src: url(Fonts/Arial_normal.woff) format("woff");
}

@font-face {
    font-family: Helvetica_server;
    src: url(Fonts/Helvetica.woff) format("woff");
}

@font-face {
    font-family: Sans_serif_server;
    src: url(Fonts/sans_serif.woff) format("woff");
}

@font-face {
    font-family: Impact_server;
    src: url(Fonts/impact.woff) format("woff");
}

@font-face {
    font-family: Haettenschweiler_server;
    src: url(Fonts/Haettenschweiler.woff) format("woff");
}

@font-face {
    font-family: Arial_black_server;
    src: url(Fonts/Arial_Black.woff) format("woff");
}

@font-face {
    font-family: Franklin_gothic_medium_server;
    src: url(Fonts/Franklin_Gothic_Cond.woff) format("woff");
}

@font-face {
    font-family: Arial_narrow_server;
    src: url(Fonts/Arial_narrow.woff) format("woff");
}

@font-face {
    font-family: myriad-pro;
    src: url("https://bbqhouse.uk/Styles/Fonts/myriad-pro/MyriadPro-Light.otf") format("opentype");
}

@font-face {
    font-family: Handwriting;
    src: url(Fonts/Nevermindhand/NeverMindHand-Medium.woff) format("woff");
}


/* =========================
   RESET / BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url(../Images/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: rgb(35, 34, 34);
    color: white;
    font-family: 'Arial_server', 'Helvetica_server', 'Sans_serif_server', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 95px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    width: 100%;
    padding: 10px 0 30px;
}

/* =========================
   HEADER / LOGO
========================= */
.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header-inner {
    width: 100%;
}

.logo img {
    display: block;
    width: 30%;
    max-width: 200px;
    min-width: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    cursor: pointer;
}

.logo p {
    display: block;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    background-color: rgb(247, 222, 16);
    color: black;
    text-align: center;
    text-transform: lowercase;
    font-weight: 600;

    /* KEEP ORIGINAL LOOK */
    letter-spacing: 6px;
    word-spacing: 6px;

    white-space: nowrap;
    overflow: hidden;

    /* SCALE TEXT WITHOUT CHANGING STYLE */
    font-size: clamp(10px, 2vw, 14px);

    line-height: 1.2;
}

/* =========================
   NAVIGATION
========================= */
.site-nav {
    width: 100%;
    max-width: 1280px;
    margin: 16px auto 24px;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    margin: 0 0 12px auto;
    padding: 10px 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: rgb(247,
            222,
            16);
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-menu a {
    display: inline-block;
    min-width: 11cap;
    margin: 0;
    padding: 12px 18px;
    background-color: rgb(164, 164, 164);
    border-radius: 0.2em;
    color: black;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Franklin_gothic_medium_server', 'Arial_narrow_server', 'Arial_server', 'Sans_serif_server', Arial, sans-serif;
    font-size: 100%;
    font-weight: bolder;
    letter-spacing: 3px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    background-color: rgb(168, 3, 3);
    color: white;
    transform: translateY(-1px);
    cursor: pointer;
}

.nav-menu a.active {
    background-color: rgb(168, 3, 3);
    color: white;
}

/* =========================
   FOOTER
========================= */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.back-to-top {
    display: block;
    padding: 8px 12px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 80%;
    letter-spacing: 3px;
}

.footer {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(164, 164, 164);
    color: black;
    text-align: left;
    font-size: 80%;
    font-weight: bolder;
    letter-spacing: 3px;
    line-height: 250%;
}

.footer-socials {
    float: right;
}

.footer img {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 12px;
    vertical-align: middle;
    cursor: pointer;
}

/* =========================
   GENERAL PAGE SUPPORT
========================= */
.comingsoon {
    color: white;
    text-align: center;
    font-size: 300%;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 100px;
}

.container {
    margin-bottom: 60px;
}

.container table {
    margin-left: auto;
    margin-right: auto;
    padding-top: 5%;
    border-spacing: 30px;
}

.container table tr td {
    padding: 7px;
    background-color: white;
}

.container td {
    min-width: 240px;
    max-width: 250px;
    border-radius: 1em;
    text-align: center;
    vertical-align: top;
    font-size: 100%;
    letter-spacing: 2px;
    cursor: pointer;
}

.container img {
    width: 50%;
    height: auto;
    padding: 20px;
    margin: 0 auto;
    /* ✅ centers horizontally */
}

.container td:hover {
    background-color: rgb(164, 164, 164);
    color: rgb(168, 3, 3);
    font-weight: 800;
    transform: scale(1.1);
    transition: transform 0.2s;
}

.container a {
    color: black;
}

.container a:hover {
    color: rgb(168, 3, 3);
}

/* =========================
   ABOUT US
========================= */
.aboutus_container {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 50px;
}

.aboutus {
    margin-bottom: 22px;
    color: rgb(164, 164, 164);
    font-family: myriad-pro, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
}

/* =========================
   SERVICES
========================= */
.service-container {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 50px;
    padding-left: 3%;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

.service-heading,
.service-heading-second {
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(247, 222, 16);
    text-transform: uppercase;
    font-family: myriad-pro, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
}

.service-heading-second {
    padding-bottom: 20px;
    color: rgb(164, 164, 164);
}

.service-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 25px;
}

.service-section p {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.service-main-heading {
    color: rgb(247, 222, 16);
    font-weight: 900;
}

.service-para-heading {
    color: white;
}

.service-para {
    color: rgb(164, 164, 164);
}

/* =========================
   ALLERGENS
========================= */
.allergen-container {
    max-width: 900px;
    margin: 20px auto 80px;
    padding: 0 20px;
}

.allergen-container .subcontainer {
    margin-bottom: 34px;
    text-align: center;
}

.allergen-container .title {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 12px auto;
    padding: 10px 16px;
    background-color: rgb(164, 164, 164);
    border: none;
    border-radius: 1em;
    color: black;
    text-align: center;
    font-weight: bolder;
    cursor: pointer;
}

.allergen-container button {
    display: block;
    margin: 0 auto;
}

.allergen-container .content {
    display: block;
    margin: auto;
    padding: 10px;
    background-color: transparent;
    color: white;
    text-align: center;
}

.allergen-container .content table {
    margin-left: auto;
    margin-right: auto;
    border-spacing: 0;
}

.allergen-container .content table tr td {
    min-width: 170px;
    max-width: none;
    padding: 4px 16px;
    background-color: transparent;
    border-radius: 0;
    color: white;
    text-align: left;
    vertical-align: middle;
    letter-spacing: 2px;
}

.allergen-container .content img {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
}

.allergen-note {
    margin: 0 auto 12px auto;
    padding: 0 20px;
    color: white;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.7;
}

/* =========================
   REVIEWS
========================= */
.reviews-page {
    padding: 40px 20px 20px;
}

.reviews-container {
    max-width: 700px;
    margin: 20px auto 60px;
}

.review {
    display: none;
    margin-bottom: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    text-align: center;
    font-family: Handwriting, Arial, sans-serif;
    font-size: small;
    letter-spacing: 2px;
    line-height: 1.6;
}

.load-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadMore {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 13px;
    background-color: rgb(174, 174, 174);
    border: none;
    border-radius: 20px;
    color: black;
    cursor: pointer;
    font-family: 'Franklin_gothic_medium_server', 'Arial_narrow_server', 'Arial_server', 'Sans_serif_server', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

#loadMore:hover {
    background-color: rgb(35, 34, 34);
    color: white;
}

/* =========================
   MENU PAGE
========================= */
.menu-page {
    padding: 10px 0 30px;
}

.menu-table {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: transparent;
    text-align: left;
    font-weight: 100;
    letter-spacing: 2px;
}

.menu-table td {
    min-width: 0;
    max-width: none;
    padding-left: 10px;
    background-color: transparent;
    border-radius: 0;
    vertical-align: top;
    border-spacing: 0;
}

.menu-emphasis {
    margin-bottom: 0;
    color: white;
    text-transform: uppercase;
    font-family: 'Impact_server', 'Haettenschweiler_server', 'Sans_serif_server', sans-serif;
    font-size: 150%;
    line-height: 1.1;
}

.menu-sub {
    margin-bottom: 10px;
    color: rgb(164, 164, 164);
    text-transform: lowercase;
    font-size: 110%;
    letter-spacing: 3px;
}

.menu-footer-note {
    padding: 2px;
    background-color: rgb(247, 222, 16);
    color: black;
    text-align: center;
    font-size: 100%;
    font-weight: lighter;
    line-height: 1.6;
}

.menu-footer-note span {
    font-weight: 500;
    font-family: 'Impact_server', 'Haettenschweiler_server', 'Sans_serif_server', sans-serif;
}

.menu-image {
    margin-top: 40px;
    margin-bottom: 5px;
    padding: 0;
}

.menu-table img {
    max-height: 5vh;
    padding: 0;
}

/* =========================
   GALLERY
========================= */
.gallery-page {
    padding: 0 0 20px;
}

.images {
    padding-top: 40px;
    padding-right: 5px;
    padding-bottom: 80px;
    padding-left: 5px;
    text-align: center;
}

.myImages {
    display: inline-block;
    width: 200px;
    height: 200px;
    padding: 2px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    transition: 0.3s;
}

.myImages:hover {
    opacity: 0.7;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    width: 80%;
    max-width: 700px;
    margin: auto;
}

#caption {
    display: block;
    width: 80%;
    max-width: 700px;
    min-height: 60px;
    margin: auto;
    padding: 10px 0;
    color: #ccc;
    text-align: center;
}

.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0);
    }

    to {
        -webkit-transform: scale(1);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media only screen and (max-width: 768px) {
    body {
        padding-bottom: 110px;
    }

    .site-nav {
        position: absolute;
        top: 10px;
        right: 16px;
        width: auto;
        margin-top: 0;
        padding: 0;
        z-index: 1100;
    }

    .nav-toggle {
        display: block;
        margin: 0;
        padding: 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 42px;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        width: 220px;
        gap: 8px;
        padding: 10px;
        background: rgba(35, 34, 34, 0.98);
        border-radius: 10px;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        min-width: 0;
        margin: 0;
        font-size: 85%;
        text-align: center;
        letter-spacing: 2px;
    }

    .logo {
        position: relative;
        padding: 10px 16px 0;
    }

    .logo img {
        width: 40%;
        max-width: 170px;
        margin-bottom: 10px;
    }

    .logo p {
        display: block;
        width: 100%;
        margin: 0;
        padding: 8px 0;
        background-color: rgb(247, 222, 16);
        color: black;
        text-align: center;
        text-transform: lowercase;
        font-weight: 600;

        /* KEEP ORIGINAL LOOK */
        letter-spacing: 6px;
        word-spacing: 6px;

        white-space: nowrap;
        overflow: hidden;

        /* SCALE TEXT WITHOUT CHANGING STYLE */
        font-size: clamp(10px, 2vw, 14px);

        line-height: 1.2;
    }

    .aboutus_container {
        margin-left: 6%;
        margin-right: 6%;
        margin-bottom: 40px;
    }

    .aboutus {
        font-size: 1rem;
        line-height: 1.8;
    }

    .footer {
        padding: 10px 12px;
        font-size: 60%;
        line-height: 180%;
        text-align: center;
        letter-spacing: 2px;
    }

    .footer-socials {
        display: block;
        float: none;
        margin-top: 6px;
    }

    .footer img {
        width: 18px;
        height: 18px;
        margin: 0 6px;
    }

    .container td {
        min-width: 140px;
        max-width: 140px;
        font-size: 65%;
    }

    .container table {
        border-spacing: 20px;
    }

    .reviews-page {
        padding: 20px 16px 10px;
    }

    .reviews-container {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .review {
        padding: 16px;
        letter-spacing: 1px;
    }

    #loadMore {
        width: 90%;
    }
}

@media only screen and (max-width: 685px) {
    .menu-table {
        width: 90vw;
    }

    .menu-emphasis {
        font-size: 95%;
    }

    .menu-sub {
        font-size: 75%;
    }
}

@media only screen and (max-width: 480px) {
    .nav-menu a {
        padding: 11px 12px;
        font-size: 70%;
        letter-spacing: 2px;
    }

    .logo p {
        display: block;
        width: 100vw;
        /* full screen width */
        margin-left: calc(-50vw + 50%);
        /* pull it edge-to-edge */

        padding: 6px 0;
        background-color: rgb(247, 222, 16);
        color: black;
        text-align: center;
        text-transform: lowercase;
        font-weight: 600;

        letter-spacing: 2px;
        word-spacing: 2px;

        white-space: nowrap;
        overflow: hidden;

        font-size: clamp(10px, 2vw, 14px);
        line-height: 1.2;
    }

    .aboutus_container {
        margin-left: 5%;
        margin-right: 5%;
    }

    .footer {
        font-size: 50%;
        letter-spacing: 1px;
    }

    .allergen-container .content table tr td {
        padding: 8px 12px;
        font-size: 100%;
        letter-spacing: 2px;
    }

    .allergen-container .content img {
        max-width: 9%;
    }

    .allergen-container .title {
        min-width: 90%;
        max-width: 90%;
        letter-spacing: 2px;
    }

    .allergen-container button {
        font-size: 100%;
    }

    .allergen-note {
        font-size: 60%;
        padding: 0 12px;
    }

    .modal-content {
        width: 100%;
    }

    .myImages {
        width: 150px;
        height: 150px;
    }

    .images {
        padding-right: 3px;
        padding-left: 3px;
    }
}

@media only screen and (min-width: 481px) {
    .allergen-container .content table tr td {
        font-size: 130%;
        letter-spacing: 3px;
    }

    .allergen-container .content img {
        max-width: 15px;
    }

    .allergen-container .title {
        min-width: 400px;
        max-width: 400px;
        letter-spacing: 3px;
    }

    .allergen-container button {
        font-size: 130%;
    }

    .allergen-note {
        font-size: 90%;
        padding: 0 20px;
    }
}

@media only screen and (min-width: 685px) {
    .menu-table {
        width: 75vw;
    }
}