﻿:root {
    --site-blue: #34398e;
    --site-gold: #f2d377;
    --site-dark-gold: #70510a;
    --site-menu-text: #4d0200;
    --site-booking-text: maroon;
    --site-whatsapp: #25d366;
    --site-white: #ffffff;
    --site-black: #000000;
    --site-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    --site-shadow-hover: 0 6px 18px rgba(0, 0, 0, 0.4);
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-heading-color: inherit;
    --bs-link-color-rgb: 13, 110, 253;
}

[data-bs-theme="light"] {
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    text-align: var(--bs-body-text-align);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--bs-heading-color);
    font-weight: 500;
    line-height: 1.2;
}

h1,
h2,
h3 {
    font-family: "Californian FB", serif;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
    font-size: 1.25rem;
}

h4,
h5,
h6 {
    display: inline;
}

h5 {
    color: var(--site-blue);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

b,
strong {
    font-weight: bolder;
}

q {
    font-style: italic;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}

    a:link,
    a:visited {
        color: var(--site-black);
        text-decoration: none;
    }

img,
svg {
    vertical-align: middle;
}

button {
    border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

    [role="button"],
    button:not(:disabled),
    [type="button"]:not(:disabled),
    [type="reset"]:not(:disabled),
    [type="submit"]:not(:disabled) {
        cursor: pointer;
    }

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

iframe {
    border: 0;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        margin-top: var(--bs-gutter-y);
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.header,
.map {
    background-color: var(--site-white);
}

    .header a:link,
    .header a:visited {
        color: var(--site-black);
        text-decoration: none;
    }

.banner,
.footer {
    background-color: var(--site-blue);
}

.menu,
.reviews {
    background-color: var(--site-gold);
}

.booking {
    color: var(--site-booking-text);
    font-size: large;
}

.footer {
    color: var(--site-white);
    font-size: small;
}

    .footer a:link,
    .footer a:visited {
        color: var(--site-white);
        text-decoration: none;
    }

.callButton {
    padding: 5px 15px;
    border: 2px solid var(--site-blue);
    background-color: var(--site-gold);
    color: var(--site-black);
    font-size: large;
    text-align: center;
    text-decoration: none;
}

.middleCell,
.centerButton,
.centreText {
    text-align: center;
}

.centerButton,
.centreText {
    align-content: center;
}

.leftCell {
    text-align: left;
}

.centreImg {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.flex-row {
    display: flex;
    justify-content: center;
}

.socialMediaImage {
    width: 25px;
}

.darkBlue {
    color: var(--site-blue);
}

.darkGold {
    color: var(--site-dark-gold);
}

.directions {
    color: var(--site-black);
}

    .directions a:link {
        color: var(--site-blue);
        font-weight: bold;
        text-decoration: none;
    }

    .directions a:visited {
        color: var(--site-white);
        text-decoration: none;
    }

.topnav {
    overflow: hidden;
    background-color: var(--site-gold);
}

    .topnav a {
        display: block;
        float: left;
        width: 12%;
        background-color: var(--site-gold);
        color: var(--site-menu-text);
        font-size: large;
        text-align: center;
        text-decoration: none;
    }

    .topnav .icon {
        display: none;
    }

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-bars::before {
    content: "\f0c9";
}

.pixel {
    display: none;
}

.businessDirectoryHidden,
.businessAdverts {
    position: absolute;
    visibility: hidden;
}

.whatsYourHours {
    border: 0;
}

.cylex {
    width: 60px;
    height: 30px;
}

.slideshow-container {
    position: relative;
    background: #f1f1f1;
}

.mySlides {
    display: none;
    padding: 20px;
    text-align: center;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    border-radius: 0 3px 3px 0;
    color: #888;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
        color: var(--site-white);
    }

.dot-container {
    padding: 20px;
    background: #ddd;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 2px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

    .active,
    .dot:hover {
        background-color: #717171;
    }

.author {
    color: blueviolet;
}

#floatingButtons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 16px;
}

#floatingWhatsApp,
#myBtn {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    box-shadow: var(--site-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#floatingWhatsApp {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--site-whatsapp);
    text-decoration: none;
}

    #floatingWhatsApp img {
        display: block;
        width: 44px;
        height: 44px;
    }

#myBtn {
    position: static;
    display: none;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    outline: none;
    background-color: var(--site-blue);
    color: var(--site-white);
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

    #floatingWhatsApp:hover,
    #floatingWhatsApp:focus-visible,
    #myBtn:hover,
    #myBtn:focus-visible {
        transform: scale(1.08);
        box-shadow: var(--site-shadow-hover);
    }

@keyframes whatsappPulse {
    0%, 70%, 100% {
        transform: scale(1);
        box-shadow: var(--site-shadow);
    }

    74% {
        transform: scale(1.10);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    }

    78% {
        transform: scale(1);
        box-shadow: var(--site-shadow);
    }

    82% {
        transform: scale(1.10);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    }

    86% {
        transform: scale(1);
        box-shadow: var(--site-shadow);
    }
}

#floatingWhatsApp {
    animation: whatsappPulse 5s infinite;
}

    #floatingWhatsApp:hover,
    #floatingWhatsApp:focus-visible {
        animation-play-state: paused;
    }

@media screen and (max-width: 600px) {
    body {
        padding: 0;
    }

    .container {
        margin: 0;
        padding: 0;
    }

    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        display: block;
        float: right;
    }

    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive a.icon {
            position: absolute;
            top: 0;
            right: 0;
        }

        .topnav.responsive a {
            display: block;
            float: none;
            text-align: left;
        }

    #floatingButtons {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    #floatingWhatsApp,
    #myBtn {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
    }

        #floatingWhatsApp img {
            width: 48px;
            height: 48px;
        }

    #myBtn {
        font-size: 19px;
    }
}


@media (prefers-reduced-motion: reduce) {
    #floatingWhatsApp {
        animation: none;
    }
}
