@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');


::selection {
    background: var(--Main);
    color: var(--Gold);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



body {
    width: 100vw;
    overflow: hidden;
    height: auto;
    margin: 0;

    --Main: #007078;
    --Text: #fff;
    --White: #fff;
    --Black: #000;
    --Brown: #9E7F54;
    --Gold: #BD9C6F;
    --Gray: #dddddd;
    --Red: #E30000;
    --Border: rgba(221, 221, 221, .5);

    --Sans: 'Jost', 'Noto Sans TC', sans-serif;
    --Serif: 'Bodoni Moda', 'Noto Serif TC', serif;

    color: var(--Text);
    background: var(--Main);

    font-family: var(--Serif);
    font-size: 16px;
    font-weight: 600;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: url(../img/aboutBG.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;

}
.mobileBg{
    position: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

main {
    width: 100vw;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: var(--Gold);
}

section {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    white-space: normal;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

picture {
    display: block;
    line-height: 0;
}

picture img {
    width: 100%;
    line-height: 0;
}

.normal {
    font-family: var(--Sans);
}

.mobile {
    display: none !important;
}

.small {
    font-size: 14px;
}
.w1280{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.w1024{
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}

footer {
    width: 100%;
    background: var(--White);
    padding: 80px 0 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.footerSection04 {
    width: fit-content;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--Sans);
    color: var(--Main);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerSection04 a {
    color: var(--Main);
}

.footerSection04 a:hover {
    color: var(--Gold);
    transition: .3s;
}

.footerSection04 span {
    display: block;
    color: var(--Gold);
}

.footerSection01 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
    gap: 20px;
    color: var(--Gold);
}

.footerSection01 img {
    width: 150px;
}

.footerSection01 a {
    width: fit-content;
    font-size: 30px;
    color: var(--Gold);
    transition: .3s;
}

.footerSection01 a:hover {
    color: var(--Main);
    transition: .3s;
}

.FooterTitle {
    width: 100%;
    font-size: 40px;
    color: var(--Main);
    line-height: 1em;
}

.FooterTitle span {
    display: flex;
    font-family: var(--Sans);
    color: var(--Gold);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    margin-top: 10px;
}

.footerSection02 {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
}

.formContent {
    width: calc(50% - 10px);
    font-family: var(--Sans);
    font-weight: 400;
    color: var(--Gold);
}

.wave{
    width: 100%;
    height: auto;
    position: absolute;
    display: block;
    left: 0;
    bottom:0;
    z-index: 1;
}

/*InputText*/
.aForm {
    width: 100%;
    position: relative;
    font-family: var(--Sans);
    font-weight: 400;
}

.form--input {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid var(--Gold);
    font-size: 14px;
}

.form--input2 {
    padding: 0 35px;
}

.form--input4 {
    padding: 0 55px;
}

.form--input6 {
    padding: 0 100px;
}

.form--inputDate {
    padding: 0 20px 0 60px;
}

.form--inputDiscont {
    height: 36px;
    border-radius: 0;
    border: 1px solid var(--Gold);
    padding: 0 10px;
}

.form--inputDiscont::placeholder {
    color: var(--Gold);
    font-family: var(--Sans);

}

/* Error Messages */
.form--error p {
    font-size: 12px;
    color: var(--Red);
    display: none;
}

.form--error:focus~.form--error p {
    display: block;
}

.form--input.form--error:focus {
    border-bottom: 1px solid var(--Red);
    color: var(--Red);
    outline: none;
}

.dropDownB.form--error:focus {
    border-bottom: 1px solid var(--Red);
    color: var(--Red);
    outline: none;
}

.form--text {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--Gold);
    transition: .3s;
}

.form--error:focus+.form--text {
    font-size: 10px;
    transform: scale(.8);
    top: 10px;
    color: var(--Red);
    transition: .3s;
}

/*DropDownList B*/
.dropDownB {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid var(--Gold);
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-color: #fff;
    background-image: url(../img/chevron-down-solid2.svg);
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    font-size: 16px;
    color: var(--Gold);
    font-family: var(--Sans);
}

.dropDownB:focus {
    box-shadow: none;
}

.formContent a {
    color: var(--Gold);
    text-decoration: underline;
}

.formContentSubmit {
    display: flex;
    justify-content: flex-end;
}


.footerSection03 {
    width: 100%;
    border-top: 1px solid var(--Border);
    font-family: var(--Sans);
    color: var(--Gold);
    text-align: center;
    font-size: 12px;
    padding: 10px 0;

}

.footerText {
    width: 100%;
    text-align: center;
    color: var(--White);
    font-size: 11vw;
    position: absolute;
    top: -9vw;
    left: 0;
    line-height: 1em;
}


.btn,
a.btn {
    cursor: pointer;
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    text-align: center;
    background: var(--Main);
    border: 1px solid var(--Main);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    color: var(--White) !important;
    text-decoration: none !important;
    transition: .3s;
}

.btn:hover,
a.btn:hover {
    background: transparent;
    color: var(--Main) !important;
    transition: .3s;

}

header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--Border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
header.isFooter{
    background: rgba(0, 112, 120, .8);
}

header .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    height: 70%;
    width: auto;
    color: var(--White);
    text-transform: uppercase;
}

header .logo img {
    height: 100%;
    width: auto;
}

.navOpen,
.navClose {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% 50%;
    border: 1px solid var(--Border);
    transition: .3s;
}

.navOpen:hover,
.navClose:hover {
    border: 1px solid var(--Gold);
    color: var(--Gold);
    transition: .3s;
}

.headerContent {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/*DropDownList A*/
.dropDownA {
    display: block;
    width: 120px;
    height: 30px;
    padding: 0 15px 0 15px;
    color: var(--White);
    font-size: 12px;
    font-family: var(--Sans);
    text-transform: uppercase;
    border: 1px solid var(--Border);
    border-radius: 20px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-color: transparent;
    background-image: url(../img/chevron-down-solid.svg);
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
}

.dropDownA:focus {
    box-shadow: none;
    outline: none;
}

nav {
    width: 100vw;
    height: 100vh;
    background: url(../img/nav.jpg) no-repeat center center;
    background-size: cover;
    position: fixed;
    bottom: -5vh;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: .5s;
}

nav.active {
    bottom: 0;
    z-index: 11;
    opacity: 1;
    transition: .5s;
}

nav.active .navContent a:nth-child(1) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .4s;

}

nav.active .navContent span:nth-child(2) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .5s;

}

nav.active .navContent a:nth-child(3) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .6s;

}

nav.active .navContent a:nth-child(4) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .7s;

}

nav.active .navContent a:nth-child(5) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .8s;

}

nav.active .navContent a:nth-child(6) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: .9s;

}

nav.active .navContent a:nth-child(7) {
    opacity: 1;
    transition: .5s linear;
    transition-delay: 1s;
}

nav.active .navContent {
    margin: 0;
    transition: .5s linear;
}

.navContent {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -50px;
}

.navClose {
    position: absolute;
    top: 30px;
    right: 30px;
}

.navContent svg {
    width: 200px;
    height: auto;
    display: block;

    fill: var(--Gold);
    fill-opacity: 0;
    stroke-width: 0;
    stroke: url(#gradation-1);
    stroke-linecap: round;
    stroke-linejoin: round;
}

@-webkit-keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 3px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 2px;
        fill: #d2b;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #fff;
        stroke-width: 0;
        fill: #fff;
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

@keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 3px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 2px;
        fill: #1bb;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #fff;
        stroke-width: 0;
        fill: var(--Gold);
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

nav.active .navContent svg {
    -webkit-animation: dash1 1.8s linear forwards;
    animation: dash1 1.8s linear forwards;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.navContent div {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    gap: 30px;
}

.navContent span {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    color: var(--White);
    font-family: var(--Sans);
    font-weight: 400;
    opacity: .8;
}

.navContent a {
    font-size: 40px;
    font-family: var(--Sans);
    color: var(--White);
    font-weight: 300;
    line-height: 1em;
    transition: .3s;
    transition-delay: 0;
    opacity: .1;
}

nav.active .navContent a:hover {
    color: var(--Gold);
    transition: .3s;
    transition-delay: 0;
}

.reservation {
    width: 120px;
    height: 120px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    opacity: 1;
    transition: .3s;
}

.reservation.isFooter {
    opacity: 0;
    transition: .3s;
}

.reservationContainer {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservationContainer img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
    transform-origin: center center;
}

.reservationContent {
    width: 65%;
    height: 65%;
    border-radius: 50% 50%;
    border: 1px solid var(--Gold);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--Gold);
    font-size: 24px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.reservation:hover .reservationContent {
    color: var(--White);
    border: 1px solid var(--Border);
    transition: .5s;
}


@-webkit-keyframes rotate {
    0% {

        transform: rotate(0deg);
    }

    100% {

        transform: rotate(360deg);
    }
}

.sectionTitle{
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    color: var(--Gold);
    font-family: var(--Sans);
    font-size: 15vw;
    font-weight: 400;
    line-height: .8sem;

    ffill: var(--Gold);
    fill-opacity: 0;
    stroke-width: 0;
    stroke: url(#gradation-1);
    stroke-linecap: round;
    stroke-linejoin: round;
}
svg.sectionTitle{
    padding: 0;
}

.isReady .sectionTitle {
    webkit-animation: dash1 1.8s linear forwards;
    animation: dash1 1.8s linear forwards;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.scroll {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 17.5px);
    font-size: 10px;
    font-family: var(--Sans);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.scrollContainer {
    position: relative;
}

.scrollContainer::before,
.scrollContainer::after {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    top: calc(-10vh - 25px);
    width: 1px;
    height: 10vh;
    background: var(--White);
}

.scrollContainer::before {
    animation: 3s line infinite;
}

.scrollContainer::after {
    opacity: .2;
}

@keyframes line {
    from {
        height: 0vh;
    }



    to {
        height: 10vh;
    }
}

/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {}

@media (orientation:landscape) and (max-height: 768px) {}

@media (orientation:portrait) and (max-height: 1180px) {
    body {
        background: url(../img/aboutBG2.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }
    .sectionTitle{
        height: 40vh;
        font-size: 20vw;
    }

}

@media (orientation:portrait) and (max-height: 1024px) {
    .reservation {
        width: 120px;
        height: 120px;
        right: 20px;
        bottom: 20px;
    }

    .reservationContent {
        font-size: 20px;
    }


}

@media (orientation:portrait) and (max-width: 640px) {
    body {
        font-size: 14px;
        background: transparent;
    }

    .mobile {
        display: block !important;
    }

    .desktop {
        display: none !important;
    }





    .headerContent {

        gap: 10px;
    }

    /*DropDownList A*/
    .dropDownA {

        width: 100px;
        font-size: 10px;
    }

    .navContent a {
        font-size: 36px;
    }

    .reservation {
        width: 100px;
        height: 100px;
        bottom: 10px;
        right: 10px;
    }

    .reservationContent {
        font-size: 20px;
    }

    footer {
        justify-content: center;
        gap: 30px;
    }

    .footerSection04,
    .footerSection02 {
        width: 90%;
        justify-content: center;
        text-align: center;
    }
    .footerSection04{
        order: 3;
    }
    .footerSection02{
        order: 2;
    }
    .footerSection03{
        order: 4;
    }

    .footerSection01 {
        flex-direction: initial;
        flex-wrap: wrap;
    }

    .footerSection01 a:first-child {
        display: block;
        width: 100%;
    }

    .footerSection01 a img {
        display: block;
        margin: 0 auto;
    }

    .formContent {
        width: 100%;
    }

    .formContentSubmit {
        justify-content: center;
    }
     .sectionTitle{
        height: 30vh;
        font-size: 20vw;
    }

    @-webkit-keyframes dash1 {
    0% {
        stroke-dashoffset: 800;
        stroke-width: 1px;
    }

    50% {
        stroke-dashoffset: 1600;
        stroke-width: 0.1px;
    }

    50.1% {
        stroke-dashoffset: 800;
    }

    80% {
        stroke-width: 1px;
        fill: var(--Main);
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: var(--Gold);
        stroke-width: 0;
        fill: var(--Gold);
        fill-opacity: 1;
        stroke-dasharray: 400;
    }
}

}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {
    body {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {}