@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
    --nav-h: 44px;
    --arrow: url("data:image/svg+xml,%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.83 30.83l9.17-9.17 9.17 9.17 2.83-2.83-12-12-12 12z' fill='%23fff'/%3E%3C/svg%3E");
    --pics: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='m12 9h-1v-1a1 1 0 0 0 -2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2z'/%3E%3Cpath d='m20.56 18.44-4.67-4.67a7 7 0 1 0 -2.12 2.12l4.67 4.67a1.5 1.5 0 0 0 2.12 0 1.49 1.49 0 0 0 0-2.12zm-15.56-8.44a5 5 0 1 1 5 5 5 5 0 0 1 -5-5z'/%3E%3C/g%3E%3C/svg%3E");
}

@view-transition {
  navigation: auto;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Lato", "Microsoft JhengHei", "Microsoft YaHei", "PingFang TC", "Noto Sans CJK TC", sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.45;
    text-rendering: optimizeSpeed;
    background-color: var(--darkest);
    color: var(--lightest);
    -webkit-font-smoothing: antialiased;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
    margin: 0;
}

img {
    border: 0;
    max-width: 100%;
    display: block;
    height: auto;
}

h1,
h2 {
    font-weight: 300;
    opacity: .7;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--lightest);
    margin-bottom: 1.375rem;
}

h3,
h4 {
    color: var(--light);
    margin-bottom: .5rem;
}

h5,
h6,
p {
    margin-bottom: 1.375rem;
}

hr {
    margin: 1rem 0 2rem;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.1;
}

hr:not([size]) {
    height: 1px;
}

.note {
    font-size: 85%;
}

.credit {
    font-size: 70%;
    opacity: .4;
    margin-top: 5rem;
}

strong {
    color: #fff;
}

ul {
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 2rem;
}

ul ul {
    margin-bottom: 0;
}

ul li {
    margin-bottom: .375rem;
}

ol {
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 2rem;
}

ol li {
    margin-bottom: .5rem;
}

a,
a:link,
a:visited {
    color: var(--lighter);
    text-decoration: none;
    transition: all .4s ease;
}

a:not([class]):hover {
    color: #fff !important;
    text-decoration: none !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    background-color: var(--body);
}

td,
th {
    padding: .75rem 1.125rem;
    text-align: left;
    font-size: .9375rem;
}

tr:nth-child(even) {
    background-color: var(--base);
}

th {
    background-color: var(--darker);
}

tr.booknow td {
    background-color: var(--bright);
    text-align: center;
    padding: 1rem;
}

tr.booknow a {
    border-bottom: none;
    color: var(--darker);
    font-weight: 700;
    font-size: 1rem;
}

main {
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    padding-bottom: 50px;
}

#home main {
    padding-bottom: 0;
}

.wrapper {
    padding: 1rem;
    max-width: 740px;
}

.inner .wrapper {
    max-width: 1280px;
}

[class*="band"] {
    padding: 1rem;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .2s ease-in;
    background-color: rgba(0, 0, 0, .1);
}

[class*="band"]>h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

[class*="band"]>h2 a {
    color: inherit;
    border-bottom: none;
}

.band1,
.wrapper {
    margin-top: var(--nav-h);
}

.band2 {
    background-color: rgba(0, 0, 0, .2);
}

.band3 {
    background-color: rgba(0, 0, 0, .3);
}

.band4 {
    background-color: rgba(0, 0, 0, .4);
}

.band5 {
    background-color: rgba(0, 0, 0, .5);
}

.band6 {
    background-color: rgba(0, 0, 0, .6);
}

.band7 {
    background-color: rgba(0, 0, 0, .7);
}

[class*="band"]>div {
    max-width: 680px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    margin-top: 0;
    transition: max-height .45s ease, opacity .3s ease, margin-top .3s ease, visibility .3s;
}

[class*="band"].open>div {
    max-height: 3000px;
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
}

nav {
    width: 100vw;
    height: var(--nav-h);
    background: rgba(0, 0, 0, .5);
    font-size: 1rem;
    line-height: var(--nav-h);
    padding: 0 1rem;
    color: var(--lighter);
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    nav {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.cyc {
    position: relative;
}

.cyc>div {
    min-width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.cyc>div.active {
    opacity: 1;
    visibility: visible;
}

.cyc img {
    min-width: 100%;
    height: 100vh;
    object-fit: cover;
}

a.home {
    opacity: .7;
}

.home-strip {
    background-color: var(--dark);
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
}

.home-strip h1,
.home-strip h3 {
    margin-bottom: 0;
    opacity: .8;
    color: var(--lightest);
    line-height: 1;
}

.home-strip h3 {
    color: var(--base);
    line-height: 1.75;
}

.home-strip div {
    padding: .875rem 1rem;
    text-align: right;
}

.home-strip div a {
    border: none;
    color: var(--lighter);
}

.home-strip div:first-child {
    background-color: rgba(0, 0, 0, .2);
}

.home-strip div:nth-child(2) {
    background-color: rgba(0, 0, 0, .5);
}

.home-strip div span {
    display: block;
}

@media screen and (min-width: 48em) {
    [class*="band"] {
        padding: 1rem 2rem;
    }

    [class*="band"]:hover {
        background-color: var(--dark);
    }

    [class*="band"]>h2 {
        font-size: 2.875rem;
        letter-spacing: -2px;
    }

    .home-strip div {
        padding: .875rem 2rem;
    }

    .home-strip div span {
        display: inline-block;
    }

    .home-strip div span::before {
        content: "|";
        padding: 0 1rem;
    }

    nav {
        padding: 0 2rem;
    }

    .wrapper {
        padding: 1rem 2rem;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: -2px;
    }
}

main img {
    width: 100%;
}

.scrolltop {
    position: fixed;
    right: 8px;
    bottom: 8px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, .45) var(--arrow) center/70% no-repeat;
    border-radius: 50%;
    z-index: 99;
    display: block;
    border: 1px solid rgba(255, 255, 255, .15);
}

.scrolltop:hover {
    background-color: var(--base);
}

#index .scrolltop {
    display: none !important;
}

.bookable .scrolltop {
    bottom: 70px;
}

.bookable main .wrapper {
    padding-bottom: 51px;
}

a.bookthis {
    position: fixed;
    left: 0;
    bottom: 0;
    background: var(--bright);
    padding: 1rem;
    display: block;
    width: 100%;
    z-index: 10;
    color: var(--darker) !important;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

a.bookthis.show {
    opacity: 1;
    pointer-events: auto;
}

a.bookthis:hover {
    color: var(--base) !important;
}

.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent !important;
    border: 1px solid var(--lighter) !important;
    padding: .5rem 1.25rem !important;
    line-height: 1.5;
    transition: all .2s ease-in-out;
    cursor: pointer;
    color: var(--lighter) !important;
    font-size: .875rem !important;
    margin: 0 8px 8px 0;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: .85;
    font-weight: 700 !important;
}

.btn:hover {
    border: 1px solid var(--lightest) !important;
    opacity: 1;
}

.btn.active {
    background-color: var(--base) !important;
    color: var(--lightest) !important;
    opacity: 1;
}

.mb-0 {
    margin-bottom: 0
}

.mb-2 {
    margin-bottom: 2rem
}

.cards {
    color: var(--lightest);
    padding: 0 1rem;
}

.cards .card {
    flex: 1 1 400px;
}

.card {
    margin-bottom: 2rem;
}

.card h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.card p {
    font-size: .9375rem;
    margin-bottom: 0;
}

.card-header {
    padding: 1.125rem;
    background: var(--darker);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.card-header p {
    opacity: .6;
}

.card table {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.card table tr:last-child td {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.card table tr td:nth-child(2),
.card table tr th:nth-child(2) {
    text-align: right;
    font-weight: 700
}

.card table tr td:nth-child(2) {
    color: #fefefe
}

.card-pic {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--darker);
}

.card-pic a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-pic::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    display: block;
    background: transparent var(--pics) no-repeat;
    background-size: contain;
    pointer-events: none;
}

.card table tr td{
    vertical-align: top !important;
}

@media screen and (min-width: 64em) {
    .grid {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .col {
        flex: 1;
    }

    .x15 {
        -ms-flex: 1.5;
        flex: 1.5;
    }

    .x2 {
        -ms-flex: 2;
        flex: 2;
    }

    .cards .card {
        padding: .5rem;
        flex: 0 1 400px;
    }

    .cards {
        padding: 0 2rem;
        margin-left: -.5rem
    }

    .order {
        order: 2
    }

    .pr-md-2 {
        padding-right: 3rem !important
    }
}

::view-transition-old(root) {
    animation: jugra-fade-out .35s ease both;
}

::view-transition-new(root) {
    animation: jugra-fade-in .35s ease both;
}

@keyframes jugra-fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes jugra-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cyc>div {
        transition: none;
    }

    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }
}

.wpbc_container_booking_form .wpbc_bfb__field[data-type="captcha"] img.captcha_img, .wpbc_container_booking_form .booking_form_div img.captcha_img {
margin-left: 0;
}
