@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    src: url("/assets/fonts/montserrat-300.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/montserrat-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url("/assets/fonts/montserrat-500.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url("/assets/fonts/montserrat-600.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url("/assets/fonts/montserrat-700.woff2") format("woff2");
}

:where([class^="ri-"])::before {
    content: "\f3c2";
}

@media (hover: none) {
    .group:active .group-hover\:opacity-100 {
        opacity: 1;
    }

    .group:active .group-hover\:visible {
        visibility: visible;
    }
}

html {
    height: 100%;
    min-width: 320px;
}

html,
body {
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main.main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rating-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 50;
}

.rating-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
}

.rating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rating-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1f2937;
}

.rating-star {
    color: #fbbf24;
}

.rating-widget:hover .rating-button {
    display: none;
}

.rating-widget:hover .rating-expanded {
    display: flex;
}

.rating-expanded {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rating-expanded-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.rating-expanded-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
    cursor: pointer;
    transition: color 0.2s;
}

.star:hover,
.star.active {
    color: #f59e0b;
}

.star.inactive {
    color: #d1d5db;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1em;
    background: rgba(0, 0, 0, 0.7);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 15px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

body.modal-open {
    overflow: hidden;
}

.booking-form {
    backdrop-filter: blur(8px);
}

.room-gallery {
    width: 100%;
    height: 100%;
    display: flex;
}

.room-gallery img {
    width: 100%;
    flex-shrink: 0;
}

.room-gallery button:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

.room-gallery button:active {
    transform: translateY(-50%) scale(0.95);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Checkbox */
.checkbox {
    width: 18px;
    height: 18px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    flex: 0 0 auto;
}

.checkbox:checked {
    background-color: var(--gray-100);
    /* Blue */
    border-color: var(--gray-300);
}

.checkbox:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox:hover {
    border-color: var(--accent);
}

.checkbox:focus {
    outline: none;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

/* checkbox END */

.custom-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #1e40af;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.room-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* cookie */
.cookie-agreement {
    background: #fff;
    color: #333;
    line-height: 1.3em;
    font-size: 16px;
    z-index: 999999;
    font-family: Arial, sans-serif;
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0px 15px 0 rgb(54 61 77 / 25%);
}

.cookie-agreement__wr {
    padding: 16px;
    position: relative;
    margin: 0 auto;
}

.cookie-agreement__content {}

.cookie-agreement__buttons {
    padding-top: 12px;
}

.cookie-agreement__header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.3em;
}

.cookie-agreement__text {
    font-size: 14px;
}

.cookie-agreement__btn-ok {
    background: transparent;
    cursor: pointer;
    padding: 11px 32px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 0;
    border: 2px solid var(--button);
    background: var(--button);
    color: #fff;
    text-align: center;
    transition: background-color 0.2s ease-out;
    max-width: 400px;
}

.cookie-agreement__btn-ok:hover {
    opacity: 0.85;
}

.cookie-agreement a {
    color: inherit;
    text-decoration: underline;
}

@media(min-width: 640px) {
    .cookie-agreement__wr {
        display: grid;
        grid-template-columns: 1fr 150px;
        gap: 20px;
        max-width: calc(100vw - 100px);
        margin: 0 auto 0 0;

    }

    .cookie-agreement__buttons {
        padding-top: 0;
    }
}

@media(min-width: 992px) {
    .cookie-agreement__wr {
        max-width: 780px;
    }
}

@media(min-width: 1800px) {
    .cookie-agreement__wr {
        max-width: 100%;
    }
}

/* cookie END */

.\!rounded-button {
    border-radius: 8px !important;
}





/* NAV */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    display: none;
}

.nav_mobile .drawer-backdrop {
    display: block;
}


    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 84vw;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 50;
        transition: right 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

    body.nav_mobile .header-menu {
        display: flex;
        right: 0;
        overflow-y: auto;
    }

    .header-mobile__footer {
        margin-top: auto;
    }

    body.nav_mobile .header-menu__content {
        padding: 1rem;
    }

    .header-menu__item.level-1>a {
        display: flex;
        justify-content: space-between;
    }

    .toggle-submenu {
        transform: rotate(-90deg);
    }

    .header-menu__item.open .header-menu__submenu {
        display: block;
    }

    .header-menu__item_parent.open a>i {
        transform: rotate(180deg);
    }

    body.nav_mobile .drawer-backdrop {
        opacity: 1;
        pointer-events: auto;
    }


.header-menu {}

.header-menu__content {}

.header-menu__nav {
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 24px 12px;
    color: #1E1E1E;
}

.header-menu__item {
    position: relative;
}

.header-menu__item>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media(min-width: 1025px) {
    .header-menu__item>a:hover {
        color: var(--text-secondary);
    }

}

.header-menu__item:hover>a:hover {
    text-decoration: none;
}



.header-menu__footer {
    display: none;
}

@media (min-width: 992px) {
    .header-menu__nav {
        display: flex;
        gap: 1.5rem;
    }
}


.header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    appearance: none;
    -weblit-appearance: none;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
    background: transparent;
}

body.nav_mobile .mobile-menu-toggle .ri-menu-line {
    display: none;
}

body.nav_mobile .mobile-menu-toggle .ri-close-line {
    display: inline;
}

body:not(.nav_mobile) .mobile-menu-toggle .ri-menu-line {
    display: inline;
}

body:not(.nav_mobile) .mobile-menu-toggle .ri-close-line {
    display: none;
}



@media (min-width: 1024px) {
    .header__burger {
        display: none;
    }
}



/*typography*/
.u-content {
    font-size: inherit;
    line-height: 1.5em;
    color: inherit;
}

.u-content * {
    padding: 0;
    margin: 0;
    vertical-align: baseline;
}

/* .u-content a {
    color: #1b09e0;
}

.u-content a:hover {
    color: #1b09e0;
}

.u-content a:visited {
    color: #609;
} */

.u-content b,
.u-content strong {
    font-weight: 700;
}

.u-content p {
    margin: 0 0 1.5em 0;
    font-size: inherit;
}



.u-content p:after {
    content: '';
    clear: both;
    display: table;
}

.u-content img {
    max-width: 100%;
    height: auto;
    /*width: 100% !important;*/
}

.u-content img[style*='float:left'],
.u-content img[style*='float: left'] {
    margin: 0.33em 1.25em 1.25em 0;
}

.u-content img[style*='float:right'],
.u-content img[style*='float: right'] {
    margin: 0.33em 0 1.25em 1.25em;
}

.u-content sup {
    vertical-align: super;
    font-size: 80%;
}

.u-content sub {
    vertical-align: sub;
    font-size: 80%;
}

.u-content h1,
.h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
    margin: 0 0 0.5em 0;
    color: #1E1E1E;
}

.u-content h2,
.h2 {
    font-size: 1.5rem;
    line-height: 2.0rem;
    font-weight: 600;
    margin: 0 0 0.5em 0;
    color: #1E1E1E;
}


.u-content h3,
.u-content .h3,
.h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5em 0;
    color: #1E1E1E;
}

.u-content h4,
.h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0.5em 0;
}

.u-content h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 0.5em 0;
}

.u-content h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 0.5em 0;
}


.u-content ul,
.u-content ol {
    margin: 0 0 1.5em 2em;
    list-style-position: outside;
}

.u-content ul>li {
    margin: 0 0 0.0em 0;
    font-size: 1em;
    line-height: 1.5em;
    list-style-type: disc;
}

.u-content ol>li {
    margin: 0 0 0.5em 0;
    font-size: 1em;
    line-height: 1.4em;
    list-style-type: decimal;
}

.u-content li ul,
.u-content li ol {
    margin: 0.5em 0 1em 3em;
}

.u-content hr {
    height: 0;
    line-height: 0;
    font-size: 0;
    display: block;
    border: none;
    border-bottom: solid 1px var(--blue-spb, #ffd700);
    margin: 15px 0;
}

.u-content table {
    width: 100% !important;
    height: auto !important;
    float: none;
    border-collapse: collapse;
    margin: 0 0 1.5em 0;
    max-width: 100%;
}

.u-content table[cellspacing] {
    border-collapse: separate;
}

.u-content table[cellspacing="0"] {
    border-collapse: collapse;
}

/* .u-content td,
.u-content th {
    padding: 0.5em 0.333em;
    font-size: 0.9em;
    line-height: 1.4em;
} */

.u-content td.center {
    text-align: center;
}

/* .u-content th {
    font-weight: 700;
} */

.u-content td p:last-child {
    margin-bottom: 0;
}

.u-content td[valign='middle'] {
    vertical-align: middle;
}

.u-content td[valign='top'] {
    vertical-align: top;
}

.u-content td[valign='bottom'] {
    vertical-align: bottom;
}

.u-content td img {
    max-width: inherit;
}

/* 
.u-content table[border="1"] td,
.u-content table[border="1"] th,
.u-content table td,
.u-content table th {
    border: solid 1px var(--blue-spb, #ffd700);
}

.u-content table[border="0"] td,
.u-content table[border="0"] th {
    border: none !important;
    padding: 0;
} */

.u-content .table-responsive {
    min-height: .01%;
    overflow-x: auto;
}



/* splide */
.splide__container {
    box-sizing: border-box;
    position: relative
}

.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    margin: 0 !important;
    padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
    display: none
}

.splide__progress__bar {
    width: 0
}

.splide {
    position: relative;
    visibility: hidden
}

.splide.is-initialized,
.splide.is-rendered {
    visibility: visible
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative
}

.splide__slide img {
    vertical-align: bottom
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
    display: none
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide__track--fade>.splide__list>.splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide__track--ttb>.splide__list {
    display: block
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
    opacity: .9
}

.splide__arrow:disabled {
    opacity: .3
}

.splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__pagination {
    bottom: .5em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1
}

.splide__pagination__page {
    background: #d1d5db;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 12px
}

.splide__pagination__page.is-active {
    background: #ffd700;
    transform: scale(1.4);
    z-index: 1
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__progress__bar {
    background: #ccc;
    height: 3px
}

.splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.splide__slide:focus {
    outline: 0
}

@supports(outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide__slide:focus-visible {
        border: 3px solid #0bf
    }
}

@supports(outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast:none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #0bf
    }

    .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
        border-color: #0bf
    }
}

.splide__toggle {
    cursor: pointer
}

.splide__toggle:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__track--nav>.splide__list>.splide__slide {
    border: 3px solid transparent;
    cursor: pointer
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
    left: auto;
    right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
    top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
    bottom: 1em;
    top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide__pagination--ttb {
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: .5em;
    top: 0
}

.splide__slide img {
    width: 100%;
    height: auto;
}

.splide__arrow {
    background: rgba(255, 255, 255, 255.9);
    border-radius: 0;
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 100%;
    color: #000;
}

.splide__arrow--next {
    right: 20px;
}

.splide__arrow--prev {
    left: 20px;
}

.splide__arrow svg {
    fill: #000;
    font-size: 20px;
    width: 16px;
}

.splide__pagination {
    bottom: 1em;
}

.splide__arrow:disabled {
    opacity: 0;
}

.splide__pagination {
    bottom: 1em;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.2);
    z-index: 1;
}

/* /splide */



@media screen and (max-width: 768px) {
    .price-table {
        position: relative;
        overflow-x: auto;
    }

    .price-table tr td {
        padding-left: 8px;
        padding-right: 8px;
    }

    .price-table .w-3.h-3 {
        display: none
    }

    .price-table tr td:first-child,
    .price-table thead th:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        background: #FFF;
    }

    .price-table thead th:first-child {
        background: var(--gray-50);
    }
}



.video-player {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-player video,
.video-player iframe {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.video-player,
.video-preview {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #000;
}
.video-preview:hover {
    transform: translateY(-3px);
}
.video-player > img,
.video-player > iframe,
.video-player > video,
.video-preview > img,
.video-preview > iframe,
.video-preview > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}
.video-player {
    margin-bottom: 2rem;
}

.video-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: end;
    padding: 1rem;
}

.video-preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}




.room-recommendation {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
}

.toc-sticky {
    position: sticky;
    top: 7rem;
}

.network-bar {
    background-color: #4B342E;
    border-bottom: 1px solid #5d4238;
    color: #ffffff;
}

.toc-link {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.toc-link:hover,
.toc-link.active {
    color: var(--text-primary);
    border-left-color: var(--text-primary);
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

@media (max-width: 1023px) {
    .hero-section {
        background-attachment: scroll;
    }

    .toc-sticky {
        position: static;
    }

    .desktop-toc {
        display: none;
    }

    .mobile-toc {
        display: block;
    }

    .photo-gallery {
        gap: 0.5rem;
    }

    .photo-item {
        width: 100px;
        height: 70px;
    }

    .main-photo {
        height: 250px;
    }

    .video-container {
        height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .article-content h1 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        line-height: 2rem;
        margin: 1.5rem 0 1rem 0;
    }

    .article-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .room-recommendation {
        margin: 1.5rem 0;
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .mobile-toc {
        display: none;
    }
}

.bg-background-alt article.bg-gray-50 {
    background-color: #fff;
}
.pseudo-link:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
}

@media (max-width: 768px) {

    .tabs .overflow-x-auto {
        /* position: relative;
        left: -1rem;
        right: -1rem;
        width: 100vw; */
    }
}

.nav_mobile {
    overflow-y: hidden;
}

.nav_mobile #contact-main-button,
.nav_mobile #back-to-top {
    display: none;
}

/* breadcrumbs */
.breadcrumb {

}
.breadcrumb li a, .breadcrumb li span {

}
.breadcrumb li span {

}
/* breadcrumbs END */

.article-card {
    display: block;
    margin: 0 auto;
    max-width: 350px;
}

.search-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.search-progress__text {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.search-progress__bar {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.search-progress__fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #4a6cf7, #6a8dff);
  border-radius: 4px;
  position: absolute;
  animation: progressMove 1.8s ease-in-out infinite;
}

@keyframes progressMove {
  0% {
    left: -50%;
  }
  50% {
    left: 0%;
    width: 70%;
  }
  100% {
    left: 100%;
    width: 50%;
  }
}

