
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Cotton';
    src: url('../fonts/Cotton-Regular.eot');
    src: url('../fonts/Cotton-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Cotton-Regular.woff2') format('woff2'), url('../fonts/Cotton-Regular.woff') format('woff'), url('../fonts/Cotton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/CormorantGaramond-Bold.woff2') format('woff2'), url('../fonts/CormorantGaramond-Bold.woff') format('woff'), url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont-light';
    src: url('../fonts/CormorantGaramond-Light.woff2') format('woff2'), url('../fonts/CormorantGaramond-Light.woff') format('woff'), url('../fonts/CormorantGaramond-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyCustomFont-medium';
    src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2'), url('../fonts/CormorantGaramond-Regular.woff') format('woff'), url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --color-primary: #8B4513;
    --color-secondary: #FBE1D0;
    --primary-font: 'MyCustomFont';
    --secondary-font: "Roboto", sans-serif;
    --main-font: 'Cotton';
    --color-heading-dark: #8B4513;
    --color-heading-black: #000000;
    --h1: 35px;
    --h2: 30px;
    --h3: 24px;
    --h4: 22px;
    --h5: 18px;
    --h6: 14px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    margin: 0;
    box-sizing: border-box;
    /* background: #fcf0e5; */
    /* background: url(../img/bg-mobile.png); */
    /* background-repeat: repeat-x; */
    /* background-size: cover; */
    /* background: url(../img/bg-mobile.png); */
    /* background-repeat: repeat-y; */
    /* background-position: center; */
    /* background-size: 100%; */
    position: relative;
}
body:before{
    background: url(../img/bg-mobile.png);
    content: "";
    position: fixed;
    inset: 0;
    background: url(../img/bg-mobile.png);
    z-index: -1;
}
p {
    font-size: 14px
}

a {
    text-decoration: none;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

h1 {
    font-size: var(--h1);
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: var(--h2);
    line-height: 1.1;
}

h3 {
    font-size: var(--h3);
    line-height: 1.2;
}

h4 {
    font-size: var(--h4);
    line-height: 1.2;
}

h5 {
    font-size: var(--h5);
    line-height: 1.2;
}

h6 {
    font-size: var(--h6);
    line-height: 1.2;
}



/* ////////////////////////////////////////////////////////////////
        --------------------------------------------------------------
        //////////////////////////////////////////////////////////////// */

.wrapper {
    /* max-width: 480px; */
    margin: 0 auto;
    height: 100%;
}

.logo h1 {
    font-family: var(--primary-font);
    font-size: 22pt;
    line-height: normal;
    font-weight: normal;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0;
    color: #fff;
}

.logo a {
    display: flex;
    align-items: center;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('background.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: end;
    bottom: 0;
}

.video-js {
    color: #fff;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
}

    .video-js .vjs-tech {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        min-height: 91vh;
        object-fit: cover;
    }

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0 0 0 / 76%) 70%, rgb(139 69 19 / 98%));
    z-index: 9;
}

.header {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    top: 0;
    background: rgba(106, 53, 15, 0.6);
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.logo img {
    height: 40px;
}

.menu-icon {
    width: 28px;
    cursor: pointer;
}

    .menu-icon span {
        display: block;
        height: 3px;
        background: #fff;
        margin: 6px 0;
        border-radius: 2px;
    }

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 25px 120px;
    z-index: 99;
}

.masaya-logo {
    padding: 15px 0 30px 0;
}

.welcome {
    letter-spacing: 12px;
    font-size: 16px;
    margin-bottom: 0;
    font-family: var(--secondary-font);
    font-weight: 300;
}


.subtitle {
    font-size: 32pt;
    margin: 10px 0px;
    font-family: var(--primary-font);
}

.description {
    font-size: 16pt;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 21pt;
    font-family: 'MyCustomFont-light';
    font-weight: 300;
    padding: 0;
    margin-top: 0;
    letter-spacing: 0.34pt;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

    .buttons a button {
        display: block;
        padding: 0;
        width: 100%;
        padding: 12px 30px;
        border-radius: 30px;
    }

.btn-primary {
    background: transparent;
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    width: 80%;
    max-width: 280px;
    font-family: var( --secondary-font);
    border: 1px solid var(--color-primary);
    font-size: 14px;
    text-align: center;
}

    .btn-primary:hover {
        background: #f2d1b3;
    }

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 1);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    /* width: 80%; */
    max-width: 280px;
    font-family: var(--secondary-font);
    font-size: 16px;
}

button.btn-outline:hover {
    background: #f2d1b3;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

@media(min-width: 768px) {
    h1 {
        font-size: 72px;
    }

    .subtitle {
        font-size: 26px;
    }

    .description {
        max-width: 700px;
        margin: 0 auto 50px;
    }
}


.seasideView img {
    width: 100%;
}

.about-masaya {
    padding: 30px 15px;
    text-align: center;
    color: #a56a4f;
    font-size: 15px;
    line-height: 1.8;
}

    .about-masaya p {
        font-size: 20px;
        line-height: 30px;
        color: var(--color-primary);
        margin: 0;
        font-family: 'MyCustomFont-medium';
        margin: 15px 0;
    }

.main {
    /* background: url(../img/bg-mobile.png); */
    background-repeat: repeat-y;
    background-position: center;
    background-size: 100%;
}

.upcomingEvent {
    overflow: hidden;
}

.events-title h2 {
    text-align: center;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-family: 'MyCustomFont';
    font-size: 44pt;
}


.poster-card {
    position: relative;
    width: 100%;
    /* height: 350px; */
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    box-shadow: 7px 5px 20px 0px rgb(0 0 0 / 10%);
}

    .poster-card .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .poster-card .top-text {
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 2px;
        margin: 5px 0;
        font-family: var(--primary-font);
    }

    .poster-card .date {
        font-size: 60px;
        font-weight: 700;
        line-height: 1;
        font-family: var(--secondary-font);
    }

        .poster-card .date sup {
            font-size: 40px;
            font-weight: 400;
        }

    .poster-card .bottom-text {
        font-size: 16px;
        margin-top: 15px;
        line-height: 1.5;
        max-width: 300px;
        font-family: var(--secondary-font);
    }

.swiper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-bottom: 50px;
}

.swiper-slide {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        /* height: 100%; */
        /* object-fit: cover; */
    }

.upcomingEvent .swiper-pagination-bullet {
    border: 2px solid #8B4513;
    background: transparent;
    width: 20px;
    height: 20px;
}

.upcomingEvent .swiper-pagination-bullet-active {
    background: #8B4513;
    width: 20px;
    height: 20px;
}

.heading-title {
    text-align: center;
}

    .heading-title h1 {
        font-size: 52pt;
        color: var(--color-primary);
    }

    .heading-title h2 {
        color: var(--color-primary);
        font-size: 44pt;
        font-family: var(--primary-font);
        margin: 50px 0 0 0;
        position: relative;
        padding: 0 0 20px 0;
    }

        .heading-title h2:after {
            position: absolute;
            content: '';
            background: #000;
            width: 80px;
            height: 3px;
            left: 50%;
            bottom: 0;
            border-radius: 10px;
            transform: translate(-50%, 0px);
        }

/* masaya menu */
.masaya-menu {
    /* max-width:900px; */
    width: auto;
    margin: 0 10px 50px;
}

    .masaya-menu .title {
        text-align: left;
        margin-bottom: 15px;
        letter-spacing: 0;
        font-size: 30px;
        position: relative;
        overflow: hidden;
    }

        .masaya-menu .title:after {
            width: 100%;
            height: 2px;
            background: #000;
            content: "";
            position: absolute;
            margin-left: 10px;
            bottom: 14px;
        }

.heading-title p {
    font-size: 22px;
    font-style: italic;
    padding: 0 10%;
}

.masaya-menu .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
}

.masaya-menu .card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    border: none;
}

    .masaya-menu .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .masaya-menu .card span {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 14pt;
        width: 100%;
        text-align: center;
        font-family: var(--primary-font);
        text-transform: uppercase;
    }

/* Layout areas */

.masaya-menu .masaya-menu .card-large {
    grid-row: auto;
}

.masaya-menu .middle {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.masaya-menu .card:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 53%, rgb(0 0 0 / 90%) 100%);
}

.masaya-menu .card-wide {
    /* grid-column: span 2; */
    /* height:200px; */
}

.masaya-menu .card-large img {
    height: 100%;
}

.card.card-large img {
    height: 100%;
}

.masaya-menu .card-wide img {
    height: 100%;
    width: 100%;
}

.masaya-story {
    padding: 20px 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

    .masaya-story .card {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        margin-bottom: 10px;
        width: 32.7%;
        background: transparent;
        border: none;
    }

        .masaya-story .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .masaya-story .card:before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            left: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 53%, rgb(0 0 0 / 90%) 100%);
        }


        .masaya-story .card span {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 14pt;
            width: 100%;
            text-align: center;
            font-family: var(--primary-font);
            text-transform: uppercase;
        }

.services {
    max-width: 960px;
    margin: auto;
    padding: 15px 0 0;
    text-align: center;
    display: flex;
    gap: 90px;
}


.service-item {
    margin-bottom: 30px;
}

    .service-item h3 {
        margin-top: 15px;
        color: var(--color-primary);
        font-weight: 600;
        margin-bottom: 0;
        font-family: var(--secondary-font);
        font-size: 14px;
    }

    .service-item p {
        font-size: 14px;
        color: var(--color-primary);
        margin-top: 8px;
        font-family: var(--secondary-font);
    }

    .service-item .icon {
        background: var(--color-primary);
        display: inline-block;
        border-radius: 50%;
        padding: 10px;
    }

.reserve-table {
    background: rgb(255 241 232 / 80%);
    border: 1px solid var(--color-primary);
    margin: 30px 15px;
    border-radius: 20px;
    padding-bottom: 30px;
}



/* /////////////////////////////footer start //////////////////////////////*/
.contact-section {
    max-width: 420px;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
    color: #000;
}

    .contact-section .logo h1 {
        color: #a45533;
        letter-spacing: 3px;
        margin-bottom: 10px;
        font-size: 30px;
        margin-top: 10px;
    }

    .contact-section h2 {
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--color-primary);
        font-size: 24px;
    }

    .contact-section .menu {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

        .contact-section .menu li {
            margin: 20px 0;
        }

        .contact-section .menu a {
            text-decoration: none;
            color: #000;
            font-size: 20px;
            font-family: var(--secondary-font);
        }

            .contact-section .menu a:hover {
                color: #a45533;
            }

    .contact-section .address h3,
    .contact-section .phone h3 {
        color: #a45533;
        margin-bottom: 8px;
        font-family: var(--secondary-font);
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .contact-section .address {
        margin-bottom: 30px;
    }

    .contact-section .phone {
        margin-bottom: 40px;
    }

    .contact-section .footer {
        font-size: 14px;
        color: #000;
    }

        .contact-section .footer p {
            font-size: 14pt;
            font-family: var(--secondary-font);
        }

        .contact-section .footer span {
            display: block;
            margin-top: 6px;
            font-size: 14px;
            font-family: var(--secondary-font);
        }

    .contact-section .address p, .phone p {
        font-family: var(--secondary-font);
        font-size: 18px;
        margin: 0;
        letter-spacing: 0;
        color: #000;
    }

    .contact-section .logo {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

        .contact-section .logo img {
            height: 120px;
        }

    .contact-section .address img {
        height: 35px;
    }

    .contact-section .phone img {
        height: 35px;
    }


/* reservation page css */
.steps div {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 5px;
    border-radius: 15px;
    background: #e6c3a5;
    color: #6b3f1d;
    font-size: 16px;
    font-weight: 500;
}

.steps .active {
    background: #8b4b20;
    color: #fff;
}

.reservation_sec {
    /* background: url('../img/bg-mobile.png') no-repeat center/cover; */
    width: 100%;
    /* height: 100vh; */
    position: relative;
}

section.reservation_sec:before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(139 69 19 / 68%)); */
    z-index: 9;
    /* height: 100%; */
    /* width: 100%; */
    /* overflow: scroll; */
}

.tabel-reservation {
    text-align: center;
    margin: 20px 0 0;
    z-index: 99;
    position: relative;
}

    .tabel-reservation .subtitle {
        font-size: 20px;
        margin: 10px 0;
    }

    .tabel-reservation h2 {
        font-size: 30px;
    }

    .tabel-reservation .steps {
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .tabel-reservation .steps span {
            width: 30px;
            height: 3px;
            background: #8b4b20;
            display: block;
            border-radius: 15px;
            margin: 0 5px;
        }

/* calander */
div#calendar {
    max-width: 500px;
    margin: 0 auto;
}

.ui-widget.ui-widget-content {
    border: none;
    width: 100%;
    padding: 30px;
    border-radius: 40px;
}

.ui-state-default, .ui-widget-content .ui-state-default {
    text-align: center;
    padding: 0;
    font-size: 16px;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.ui-datepicker th {
    font-size: 18px;
    ;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
    border: none;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 3.3em;
    line-height: 1.8em;
    text-align: center;
    background: #FBE1D0;
    display: inline-block;
    padding: 5px 50px;
    border-radius: 10px;
    border: 1px solid #8B4513;
    font-size: 16px;
    color: #8B4513;
}

.ui-state-active, .ui-widget-content .ui-state-active {
    background: #FBE1D0;
    color: #1C1C1C;
    border: 1px solid #8B4513;
    border-radius: 15px;
}

.ui-state-default, .ui-widget-content .ui-state-default:hover {
    border: 1px solid #EAC2A5;
    border-radius: 15px;
}

/* step-2 */
.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 572px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: left;
    margin: 30px auto;
}

.form-control,
.form-control:focus {
    box-shadow: none;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #fff;
}

textarea.form-control {
    resize: none;
    height: 100px;
}

.btn-custom {
    background: #d6a77a;
    color: #7a4b2c;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

    .btn-custom:hover {
        background: #c99663;
        color: #5a3721;
    }

label {
    font-size: 14px;
    color: #777;
}

.form-card .form-label {
    position: absolute;
    top: -10px;
    font-size: 12px;
    left: 10px;
    background: #fff;
    z-index: 9;
}

.form-card h5 {
    font-family: var(--secondary-font);
    color: #1C1C1C !important;
    margin-bottom: 30px;
}

.select_wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    user-select: none;
    border: 1px solid #ddd;
    border-radius: 10px;
}

    .select_wrap .default_option {
        border-radius: 5px;
        position: relative;
        cursor: pointer;
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .select_wrap .default_option li {
            padding: 12px;
            font-size: 14px;
        }

        .select_wrap .default_option:before {
            content: "";
            position: absolute;
            top: 18px;
            right: 18px;
            width: 6px;
            height: 6px;
            border: 2px solid;
            border-color: transparent transparent #555555 #555555;
            transform: rotate(-45deg);
        }

    .select_wrap .select_ul {
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 5px;
        display: none;
        padding: 0;
        list-style: none;
        z-index: 99;
        border: 1px solid #00000014;
        box-shadow: 0px 3px 6px rgba(102, 102, 102, 0.05);
    }

        .select_wrap .select_ul li {
            padding: 10px 20px;
            cursor: pointer;
        }

            .select_wrap .select_ul li:first-child:hover {
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }

            .select_wrap .select_ul li:last-child:hover {
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }

            .select_wrap .select_ul li:hover {
                background: #fff4dd;
            }

    .select_wrap .option {
        display: flex;
        font-size: 14px;
        align-items: center;
    }

        .select_wrap .option p {
            padding: 0;
            margin: 0
        }

    .select_wrap.active .select_ul {
        display: block;
    }

    .select_wrap.active .default_option:before {
        top: 25px;
        transform: rotate(-225deg);
    }


/* select table card */
.table-card {
    border: 1px solid #d8bba7;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    background: #f7efe9;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .table-card.selected {
        background: #8f4a10;
        color: #fff;
        border-color: #8f4a10;
    }

        .table-card.selected .muted,
        .table-card.selected .availability,
        .table-card.selected .price,
        .table-card.selected .table-desc {
            color: #fff;
        }

    .table-card .price {
        font-size: 22px;
        font-weight: 500;
        margin-top: 20px;
    }

    .table-card .availability {
        font-size: 14px;
    }

.badge-custom {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #020100;
    /* background: #efe3d8; */
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000000;
}

.selected .badge-custom {
    background: #d5b08b;
    border: none;
    color: #fff;
}

.table-heading {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.table-desc {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #2d2d2d;
}

.wrapper-selectTable {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 8px 20px;
    width: 100%;
}

    .wrapper-selectTable .title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 0.25rem;
        font-family: var(--secondary-font);
        color: #1C1C1C !important;
    }

    .wrapper-selectTable .subtitle {
        font-size: 14px;
        color: #555;
        margin-bottom: 1rem;
        font-family: var(--secondary-font);
    }

.selected-label {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-size: 14px;
}


.otp-input {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

    .otp-input input {
        width: 60px;
        height: 60px;
        font-size: 20px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 15px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .otp-input input:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

.form-card p {
    font-size: 16px;
}


@media(max-width: 768px) {
    .events-title h2 {
        font-size: 50px;
        padding: 0 20px;
    }

    .heading-title h2 {
        font-size: 50px;
        padding: 0 20px;
    }

    .masaya-menu .title {
        font-size: 22px;
    }

    .heading-title p {
        font-size: 18px;
        margin-top: 20px;
    }

    .about-masaya p {
        font-size: 18px;
    }

    .masaya-menu .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
    }

    .masaya-menu .card-wide {
        grid-column: span 2;
        height: 200px;
    }

    .masaya-story .card {
        width: 100%;
        ;
    }

    .services {
        display: block;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .poster-card .top-text {
        font-size: 28px;
        line-height: normal;
    }

    .poster-card .date {
        font-size: 50px;
    }

        .poster-card .date sup {
            font-size: 30px;
        }

    .poster-card {
        /* height: 350px; */
    }

    .masaya-logo img {
        width: 80%;
    }

    .form-card {
        padding: 20px;
    }

    .heading-title h1 {
        font-size: 38pt;
    }

    .wrapper-selectTable {
        padding: 10px;
        width: 100%;
        border: 1px solid #EAC2A5;
        border-radius: 15px;
    }

    .reservation_sec {
        height: 100vh;
        overflow: scroll;
        position: revert;
    }

    .form-card p {
        font-size: 18px;
        font-weight: 500;
    }
}

@media screen and (min-width: 1600px) {
    .reservation_sec {
        /* height: 100vh; */
    }
}


@media screen and (min-width: 1900px) {
    .reservation_sec {
        /* height: 100%; */
    }
}


section.page-bg {
    height: 100%;
    /* background: url(../img/bg-mobile.png); */
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

    section.page-bg ul li {
        list-style: none;
        font-size: 18px;
        font-family: var(--primary-font);
        /* font-weight: 300; */
        color: var(--color-primary);
    }

.about-us p {
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 300;
    color: var(--color-primary);
}

section.page-bg h2 {
    margin-top: 30px;
}

.faq-container {
    /* max-width: 800px; */
    margin: 0 auto;
}

.faq-title {
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8B4513;
    font-family: var(--primary-font);
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #f0f0f0;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.4s ease;
    padding: 0 20px;
    line-height: 1.6;
    color: #555;
    font-size: 18px;
    font-family: var(--primary-font);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate( 180deg);
}




/* navbar */
.nav-bar {
    position: fixed;
    background-color: #000000;
    top: -165%;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s ease-out;
    z-index: 9999;
    background: url(../img/bg-mobile.png), rgb(252 243 235);
    overflow: hidden;
}

.toggle {
    top: 0;
    box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
}

.toggle-menu {
    position: fixed;
    top: 2rem;
    right: 1rem;
    width: 4.5rem;
    height: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.line {
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: #fff;
    transition: 0.2s ease-out;
}

.toggle .line1 {
    background-color: #ffffff;
    transform: scale(0.9) rotateZ(-45deg) translate(-10px, 10px);
}

.toggle .line2 {
    display: none;
}

.toggle .line3 {
    background-color: #ffffff;
    transform: scale(0.9) rotateZ(45deg) translate(-7px, -8px);
}

.toggle .toggle-menu {
    background-color: var(--color-primary);
    height: 5rem;
    width: 5.5rem;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list-item {
    text-align: center;
    padding: 0.5rem 0;
}

.nav-link {
    color: var(--color-primary);
    font-size: 4rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.4rem;
    font-family: var(--primary-font);
}

    .nav-link::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
        transform: scaleX(0);
        transition: 0.4s ease-in-out;
        transform-origin: left;
    }

    .nav-link:hover::before {
        transform: scaleX(1);
    }

.input-error {
    border: 1px solid red !important;
}

.error-text {
    color: red;
    font-size: 14px;
    margin: 10px 0;
}

