/*
Theme Name: NovaTravel
Author: Dmitrii
Version: 1.0
*/

[data-face-root-id="navbar"] .navbar-top {
  transition: all 0.3s ease;
}

[data-face-root-id="navbar"] .navbar-scrolled {
  transition: all 0.3s ease;
}




/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: var(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: var(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  line-height: inherit;
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
    1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: var(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: var(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
  2. Set the default placeholder color to a semi-transparent version of the current text color.
*/

::placeholder {
  opacity: 1; /* 1 */
  color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
  cursor: pointer;
}

button:disabled,
input:where([type='button'], [type='reset'], [type='submit']):disabled,
::file-selector-button:disabled,
[role="button"]:disabled {
  cursor: not-allowed;
}

[role="button"] {
  cursor: pointer;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}


*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
  * {
    border-color: var(--border);
  }

  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    font-family: "Inter", sans-serif;

    background-color: var(--background) !important;
  }
.visible {
    visibility: visible;
}
.invisible {
    visibility: hidden;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.sticky {
    position: sticky;
}
.-inset-2 {
    inset: -0.5rem;
}
.inset-0 {
    inset: 0px;
}
.-bottom-6 {
    bottom: -1.5rem;
}
.-bottom-8 {
    bottom: -2rem;
}
.-left-6 {
    left: -1.5rem;
}
.-left-8 {
    left: -2rem;
}
.-right-6 {
    right: -1.5rem;
}
.-right-8 {
    right: -2rem;
}
.-top-6 {
    top: -1.5rem;
}
.-top-8 {
    top: -2rem;
}
.bottom-0 {
    bottom: 0px;
}
.left-0 {
    left: 0px;
}
.left-4 {
    left: 1rem;
}
.right-0 {
    right: 0px;
}
.right-3 {
    right: 0.75rem;
}
.right-4 {
    right: 1rem;
}
.top-0 {
    top: 0px;
}
.top-3 {
    top: 0.75rem;
}
.top-4 {
    top: 1rem;
}
.top-full {
    top: 100%;
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-50 {
    z-index: 50;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-20 {
    margin-bottom: 5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.ml-1 {
    margin-left: 0.25rem;
}
.ml-4 {
    margin-left: 1rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.table {
    display: table;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.aspect-\[16\/9\] {
    aspect-ratio: 16/9;
}
.aspect-\[4\/3\] {
    aspect-ratio: 4/3;
}
.h-1 {
    height: 0.25rem;
}
.h-10 {
    height: 2.5rem;
}
.h-12 {
    height: 3rem;
}
.h-14 {
    height: 3.5rem;
}
.h-16 {
    height: 4rem;
}
.h-20 {
    height: 5rem;
}
.h-24 {
    height: 6rem;
}
.h-32 {
    height: 8rem;
}
.h-4 {
    height: 1rem;
}
.h-5 {
    height: 1.25rem;
}
.h-6 {
    height: 1.5rem;
}
.h-64 {
    height: 16rem;
}
.h-8 {
    height: 2rem;
}
.h-\[400px\] {
    height: 400px;
}
.h-auto {
    height: auto;
}
.h-full {
    height: 100%;
}
.h-px {
    height: 1px;
}
.max-h-0 {
    max-height: 0px;
}
.max-h-96 {
    max-height: 24rem;
}
.max-h-\[800px\] {
    max-height: 800px;
}
.max-h-\[90vh\] {
    max-height: 90vh;
}
.w-0 {
    width: 0px;
}
.w-10 {
    width: 2.5rem;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.w-16 {
    width: 4rem;
}
.w-20 {
    width: 5rem;
}
.w-24 {
    width: 6rem;
}
.w-32 {
    width: 8rem;
}
.w-4 {
    width: 1rem;
}
.w-48 {
    width: 12rem;
}
.w-5 {
    width: 1.25rem;
}
.w-6 {
    width: 1.5rem;
}
.w-8 {
    width: 2rem;
}
.w-fit {
    width: fit-content;
}
.w-full {
    width: 100%;
}
.w-px {
    width: 1px;
}
.w-screen {
    width: 100vw;
}
.min-w-\[200px\] {
    min-width: 200px;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-\[1200px\] {
    max-width: 1200px;
}
.max-w-\[1400px\] {
    max-width: 1400px;
}
.max-w-\[720px\] {
    max-width: 720px;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-8 {
    --tw-translate-y: 2rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
    50% {
        opacity: .5;
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-pointer {
    cursor: pointer;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
    flex-direction: column;
}
.items-start {
    align-items: flex-start;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-16 {
    gap: 4rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-y-auto {
    overflow-y: auto;
}
.rounded {
    border-radius: calc(var(--radius) - 4px);
}
.rounded-2xl {
    border-radius: calc(var(--radius) + 8px);
}
.rounded-3xl {
    border-radius: calc(var(--radius) + 12px);
}
.rounded-\[16px\] {
    border-radius: 16px;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: var(--radius);
}
.rounded-xl {
    border-radius: calc(var(--radius) + 4px);
}
.rounded-t-2xl {
    border-top-left-radius: calc(var(--radius) + 8px);
    border-top-right-radius: calc(var(--radius) + 8px);
}
.border {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-4 {
    border-width: 4px;
}
.border-b {
    border-bottom-width: 1px;
}
.border-t {
    border-top-width: 1px;
}
.border-\[\#513393\]\/10 {
    border-color: rgb(81 51 147 / 0.1);
}
.border-\[\#513393\]\/20 {
    border-color: rgb(81 51 147 / 0.2);
}
.border-\[\#C4A5E0\] {
    --tw-border-opacity: 1;
    border-color: rgb(196 165 224 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
}
.border-white\/30 {
    border-color: rgb(255 255 255 / 0.3);
}
.bg-\[\#513393\] {
    --tw-bg-opacity: 1;
    background-color: rgb(81 51 147 / var(--tw-bg-opacity, 1));
}
.bg-\[\#6644AA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(102 68 170 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F9F7FC\] {
    --tw-bg-opacity: 1;
    background-color: rgb(249 247 252 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FAFAFA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-black\/50 {
    background-color: rgb(0 0 0 / 0.5);
}
.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-muted\/50 {
    background-color: rgb(from var(--muted) r g b / 0.5);
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
    background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/50 {
    background-color: rgb(255 255 255 / 0.5);
}
.bg-white\/90 {
    background-color: rgb(255 255 255 / 0.9);
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#513393\] {
    --tw-gradient-from: #513393 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(81 51 147 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/90 {
    --tw-gradient-from: rgb(0 0 0 / 0.9) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/60 {
    --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.object-cover {
    object-fit: cover;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pb-6 {
    padding-bottom: 1.5rem;
}
.pr-4 {
    padding-right: 1rem;
}
.pt-0 {
    padding-top: 0px;
}
.pt-2 {
    padding-top: 0.5rem;
}
.pt-3 {
    padding-top: 0.75rem;
}
.pt-4 {
    padding-top: 1rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.font-serif {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.text-\[12px\] {
    font-size: 12px;
}
.text-\[13px\] {
    font-size: 13px;
}
.text-\[14px\] {
    font-size: 14px;
}
.text-\[15px\] {
    font-size: 15px;
}
.text-\[16px\] {
    font-size: 16px;
}
.text-\[17px\] {
    font-size: 17px;
}
.text-\[18px\] {
    font-size: 18px;
}
.text-\[20px\] {
    font-size: 20px;
}
.text-\[26px\] {
    font-size: 26px;
}
.text-\[28px\] {
    font-size: 28px;
}
.text-\[32px\] {
    font-size: 32px;
}
.text-\[36px\] {
    font-size: 36px;
}
.text-\[42px\] {
    font-size: 42px;
}
.text-\[44px\] {
    font-size: 44px;
}
.text-\[56px\] {
    font-size: 56px;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.font-bold {
    font-weight: 700;
}
.font-light {
    font-weight: 300;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.uppercase {
    text-transform: uppercase;
}
.italic {
    font-style: italic;
}
.leading-\[22px\] {
    line-height: 22px;
}
.leading-\[24px\] {
    line-height: 24px;
}
.leading-\[26px\] {
    line-height: 26px;
}
.leading-\[28px\] {
    line-height: 28px;
}
.leading-\[30px\] {
    line-height: 30px;
}
.leading-\[32px\] {
    line-height: 32px;
}
.leading-\[34px\] {
    line-height: 34px;
}
.leading-\[36px\] {
    line-height: 36px;
}
.leading-\[42px\] {
    line-height: 42px;
}
.leading-\[44px\] {
    line-height: 44px;
}
.leading-\[50px\] {
    line-height: 50px;
}
.leading-\[52px\] {
    line-height: 52px;
}
.leading-\[64px\] {
    line-height: 64px;
}
.leading-tight {
    line-height: 1.25;
}
.tracking-tight {
    letter-spacing: -0.025em;
}
.tracking-wide {
    letter-spacing: 0.025em;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.text-\[\#333333\] {
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-\[\#4A1F6E\] {
    --tw-text-opacity: 1;
    color: rgb(74 31 110 / var(--tw-text-opacity, 1));
}
.text-\[\#513393\] {
    --tw-text-opacity: 1;
    color: rgb(81 51 147 / var(--tw-text-opacity, 1));
}
.text-\[\#513393\]\/60 {
    color: rgb(81 51 147 / 0.6);
}
.text-\[\#513393\]\/70 {
    color: rgb(81 51 147 / 0.7);
}
.text-\[\#6B2E9E\] {
    --tw-text-opacity: 1;
    color: rgb(107 46 158 / var(--tw-text-opacity, 1));
}
.text-\[\#9E4B2E\] {
    --tw-text-opacity: 1;
    color: rgb(158 75 46 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/70 {
    color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
    color: rgb(255 255 255 / 0.8);
}
.text-white\/90 {
    color: rgb(255 255 255 / 0.9);
}
.text-white\/95 {
    color: rgb(255 255 255 / 0.95);
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.opacity-15 {
    opacity: 0.15;
}
.opacity-20 {
    opacity: 0.2;
}
.opacity-30 {
    opacity: 0.3;
}
.opacity-5 {
    opacity: 0.05;
}
.opacity-80 {
    opacity: 0.8;
}
.opacity-90 {
    opacity: 0.9;
}
.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur-xl {
    --tw-blur: blur(24px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.delay-300 {
    transition-delay: 300ms;
}
.duration-1000 {
    transition-duration: 1000ms;
}
.duration-200 {
    transition-duration: 200ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.duration-500 {
    transition-duration: 500ms;
}
.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.scroll-container {
  position: relative;
  height: 100vh;
  background-color: var(--background);
}

.scroll-container[data-layout="CARD"] {
  background-color: var(--muted);
}

.page-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;

  background-color: var(--background);
  color: var(--foreground);
}

.faces-container {
  width: 100%;
}

[data-face-root] {
  container-type: inline-size;
}

.page-container[data-layout="CARD"] {
  background-color: var(--muted);
}

.page-container[data-layout="REGULAR"] .faces-container {
  position: relative;
  width: 100%;
  max-width: min(2560px, 100vw);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--background);
  min-height: 100vh;
}

.page-container[data-layout="CARD"] .faces-container {
  position: relative;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100vh;
  background-color: var(--background);
  border-radius: var(--radius) var(--radius) 0 0;
  

  box-shadow:
    0 24px 48px 0 rgba(40, 40, 40, 0.03),
    0 10px 18px 0 rgba(40, 40, 40, 0.03),
    0 5px 8px 0 rgba(40, 40, 40, 0.04),
    0 2px 4px 0 rgba(40, 40, 40, 0.04);
}

@media (min-width: 768px) {
  /* CARD layout with width: FULL */
  .page-container[data-layout="CARD"][data-width="FULL"] .faces-container {
    max-width: min(2560px, calc(100% - 64px));
  }

  /* CARD layout with width: MEDIUM */
  .page-container[data-layout="CARD"][data-width="MEDIUM"] .faces-container {
    max-width: min(1264px, calc(100% - 64px));
  }

  /* CARD layout with width: COMPACT */
  .page-container[data-layout="CARD"][data-width="COMPACT"] .faces-container {
    max-width: min(784px, calc(100% - 64px));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-container[data-layout="CARD"] .faces-container {
    margin-top: 12px;
    max-width: calc(100vw - 24px);
  }
}

/* Face container, layout: REGULAR */

/* Width: FULL */
.page-container[data-width="FULL"] [data-face-content-container] {
  width: 100%;
  max-width: 100%;
}

/* Width: MEDIUM */
.page-container[data-width="MEDIUM"] [data-face-content-container] {
  width: 100%;
  max-width: 1200px;
}

/* Width: COMPACT */
.page-container[data-width="COMPACT"] [data-face-content-container] {
  width: 100%;
  max-width: 720px;
}


/* CARD layout face containers - add padding to match faces-container width */
@media (min-width: 768px) {
  .page-container[data-layout="CARD"][data-width="FULL"] [data-face-content-container] {
    width: 100%;
    max-width: 100%;
    padding-left: 64px;
    padding-right: 64px;
  }

  .page-container[data-layout="CARD"][data-width="MEDIUM"] [data-face-content-container] {
    width: 100%;
    max-width: 1200px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .page-container[data-layout="CARD"][data-width="COMPACT"] [data-face-content-container] {
    width: 100%;
    max-width: 720px;
    padding-left: 64px;
    padding-right: 64px;
  }
}

/* SLIDES layout */
.scroll-container[data-layout="SLIDES"] {
  overflow: hidden;
  height: 100vh;
}

.page-container[data-layout="SLIDES"] {
  min-height: auto;
}

.page-container[data-layout="SLIDES"] .faces-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.page-container[data-layout="SLIDES"][data-width="FULL"] [data-face-content-container] {
  width: 100%;
  max-width: 100%;
}

.page-container[data-layout="SLIDES"][data-width="MEDIUM"] [data-face-content-container] {
  width: 100%;
  max-width: 1200px;
}

.page-container[data-layout="SLIDES"][data-width="COMPACT"] [data-face-content-container] {
  width: 100%;
  max-width: 720px;
}

/* Slides hover zones */
.slides-bottom-zone {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.slides-edge-zone {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  cursor: pointer;
}

.slides-edge-zone-left {
  left: 0;
}

.slides-edge-zone-right {
  right: 0;
}

/* New slides preview container - fullscreen with black background */
.slides-preview-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.slides-preview-content {
  position: relative;
  flex-shrink: 0;
}

.slides-preview-scaler {
  position: relative;
}

/* Slides navigation bar with previews */
.slides-navigation-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 1000;
  padding: 6px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid #dddddd;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  max-width: calc(100vw - 24px);
  overflow-x: auto;
}

.slides-navigation-bar[data-visible="true"] {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.slides-navigation-preview {
  width: 120px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  padding: 0;
  background: #f3f3f3;
  flex-shrink: 0;
}

.slides-navigation-preview:hover {
  border-color: #D1D5DB;
}

.slides-navigation-preview[data-active="true"] {
  border-color: #000000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.slides-navigation-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.slides-navigation-preview-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Arrow indicators for prev/next */
.slides-arrow-indicator {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.slides-arrow-indicator:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.slides-arrow-indicator-left {
  left: 24px;
}

.slides-arrow-indicator-right {
  right: 24px;
}

/* Smaller navigation previews on narrow screens */
@media (max-width: 768px) {
  .slides-navigation-bar {
    padding: 6px;
  }
  
  .slides-navigation-preview {
    width: 80px;
    height: 45px;
  }
}



:root {
  --background: #FFFFFF;
  --foreground: #0A0A0B;
  --muted: #FAFAFA;
  --muted-foreground: #52525B;
  --border: #D4D4D8;
  --input: #D4D4D8;
  --card: #FFFFFF;
  --card-foreground: #0A0A0B;
  --card-border: #D4D4D8;
  --primary: #191919;
  --primary-foreground: #FAFAFA;
  --secondary: #D4D4D8;
  --secondary-foreground: #27272A;
  --accent: #000000;
  --accent-foreground: #FFFFFF;
  --destructive: #EF4444;
  --destructive-foreground: #FAFAFA;
  --chart-1: #2E2E30;
  --chart-2: #52525B;
  --chart-3: #7C7C86;
  --chart-4: #A1A1AA;
  --chart-5: #D4D4D8;
  --radius: 0.5rem;
}

.dark {
  --background: #0A0A0B;
  --foreground: #FAFAFA;
  --muted: #27272A;
  --muted-foreground: #A1A1AA;
  --border: #27272A;
  --input: #27272A;
  --card: #0A0A0B;
  --card-foreground: #FAFAFA;
  --card-border: #27272A;
  --primary: #FAFAFA;
  --primary-foreground: #191919;
  --secondary: #18181B;
  --secondary-foreground: #FAFAFA;
  --accent: #FFFFFF;
  --accent-foreground: #000000;
  --destructive: #7F1D1D;
  --destructive-foreground: #FAFAFA;
  --chart-1: #2E2E30;
  --chart-2: #52525B;
  --chart-3: #7C7C86;
  --chart-4: #A1A1AA;
  --chart-5: #D4D4D8;
  --radius: 0.5rem;
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-\[\#513393\]\/20:hover {
    border-color: rgb(81 51 147 / 0.2);
}

.hover\:border-\[\#513393\]\/30:hover {
    border-color: rgb(81 51 147 / 0.3);
}

.hover\:border-\[\#6B2E9E\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(107 46 158 / var(--tw-border-opacity, 1));
}

.hover\:border-white:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#6644AA\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(102 68 170 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/10:hover {
    background-color: rgb(255 255 255 / 0.1);
}

.hover\:bg-white\/20:hover {
    background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-white\/90:hover {
    background-color: rgb(255 255 255 / 0.9);
}

.hover\:text-\[\#9E4B2E\]:hover {
    --tw-text-opacity: 1;
    color: rgb(158 75 46 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:text-white\/80:hover {
    color: rgb(255 255 255 / 0.8);
}

.hover\:shadow-2xl:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:w-full {
    width: 100%;
}

.group:hover .group-hover\:translate-x-1 {
    --tw-translate-x: 0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rotate-3 {
    --tw-rotate: 3deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-\[\#6644AA\] {
    --tw-text-opacity: 1;
    color: rgb(102 68 170 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:opacity-10 {
    opacity: 0.1;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:order-1 {
        order: 1;
    }
    .lg\:order-2 {
        order: 2;
    }
    .lg\:flex {
        display: flex;
    }
    .lg\:hidden {
        display: none;
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.\[\&_a\]\:underline a {
    text-decoration-line: underline;
}

.\[\&_em\]\:italic em {
    font-style: italic;
}

.\[\&_strong\]\:font-bold strong {
    font-weight: 700;
}


/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



          .p__font-lato-w300-w400-w700 {
            font-family: "Lato", sans-serif;
            font-style: normal;
          }
        

/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



          .p__font-playfair-display-w400-w700-w900 {
            font-family: "Playfair Display", sans-serif;
            font-style: normal;
          }
        

/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjx4wXg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



          .p__font-lato-w400-w700 {
            font-family: "Lato", sans-serif;
            font-style: normal;
          }
        

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }

:where(.w-\[calc\(var\(--vw\,1vw\)\*100\)\]) { width: calc(var(--vw,1vw)*100); }


      div.grammarly-desktop-integration {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select:none;
        user-select:none;
      }

      div.grammarly-desktop-integration:before {
        content: attr(data-content);
      }


.perspective-1000 {
    perspective: 1000px;
}

.transform-style-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s;
    position: relative;
}

.backface-hidden {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-front {
    transform: rotateY(0deg);
}

.flip-back {
    transform: rotateY(180deg);
    position: absolute;
    inset: 0;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    transition: color .2s ease;
    text-decoration: none;
}

.header-menu a:hover {
    color: #fff;
}
.face-shell-container a{
    text-decoration:none;
}

.destination-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.destination-menu:hover .destination-dropdown,
.destination-menu:focus-within .destination-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.destination-menu {
    position: relative;
}


[data-face-id="navbar"],
[data-face-id="navbar"] .face-shell-container,
[data-face-id="navbar"] [data-face-root="true"],
[data-face-id="navbar"] nav,
[data-face-id="navbar"] nav > div,
[data-face-id="navbar"] .relative {
    overflow: visible !important;
    clip-path: none !important;
    transform: none !important;
}

[data-face-id="navbar"] {
    position: relative;
    z-index: 99999;
}

.destination-menu {
    position: relative;
    z-index: 999999;
}

.destination-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999999;
}

.destination-menu:hover .destination-dropdown {
    display: block;
}

.destination-menu {
    margin-top:10px;
    padding-bottom: 8px;
}

.destination-dropdown {
    margin-top: 0 !important;
}

.destination-menu:hover .destination-dropdown,
.destination-dropdown:hover {
    display: block;
}
    
.destination-menu svg {
    transition: transform 0.3s ease;
}

.destination-menu:hover svg,
.destination-menu:focus-within svg {
    transform: rotate(180deg);
}

/* ===== TOUR PAGE ===== */

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* ===== TITLE ===== */

.tour-title {
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 40px;
}

.tour-breadcrumbs {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.tour-breadcrumbs a {
    color: #777;
    text-decoration: none;
}

.tour-breadcrumbs a:hover {
    color: #513393;
}

/* ===== MAIN IMAGE ===== */

.tour-main-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.tour-image-wrapper {
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 16px;
}

/* ===== GALLERY ===== */

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.tour-gallery-item {
    height: 120px;
    overflow: hidden;
    border-radius: 18px;
}

.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.tour-gallery-item:hover img {
    transform: scale(1.06);
}

/* ===== CONTENT ===== */

.tour-content h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.tour-content {
    font-size: 18px;
    line-height: 32px;
    color: #333;
}

/* ===== SIDEBAR ===== */

.tour-sidebar {
    position: sticky;
    top: 30px;
}

.tour-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.tour-promo {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0b7a53;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.tour-info-block {
    margin-bottom: 22px;
}

.tour-info-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}

.tour-info-value {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #1f1f1f;
}

.tour-price-block {
    border-top: 1px solid #ececec;
    padding-top: 24px;
    margin-top: 10px;
}

.tour-price-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.tour-price {
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    color: #1f1f1f;
}

/* ===== BUTTON ===== */

.tour-book-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 32px;
    padding: 18px 24px;

    background: #ef4444;
    color: #fff;

    border-radius: 999px;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.tour-book-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: relative;
        top: 0;
    }

    .tour-title {
        font-size: 40px;
        line-height: 48px;
    }

    .tour-main-image {
        height: 420px;
    }
}

@media (max-width: 768px) {

    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-title {
        font-size: 34px;
        line-height: 42px;
    }

    .tour-main-image {
        height: 320px;
    }

    .tour-content {
        font-size: 16px;
        line-height: 28px;
    }

    .tour-price {
        font-size: 34px;
    }
}

@media (max-width: 480px) {

    .tour-container {
        padding: 40px 16px;
    }

    .tour-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .tour-gallery-item {
        height: 90px;
    }

    .tour-card {
        padding: 22px;
    }

    .tour-title {
        font-size: 30px;
        line-height: 38px;
    }
}
.tour-itinerary {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 24px;
}

.tour-itinerary-title {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111;
}

.tour-itinerary-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.tour-itinerary-side {
    position: sticky;
    top: 120px;
}

.tour-itinerary-map {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}

.tour-itinerary-list {
    border-top: 1px solid #ddd;
}

.tour-day-item {
    border-bottom: 1px solid #ddd;
}

.tour-day-toggle {
    width: 100%;
    padding: 24px 0;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
}

.tour-day-icon {
    font-size: 24px;
    transition: transform .25s ease;
}

.tour-day-item.is-open .tour-day-icon {
    transform: rotate(180deg);
}

.tour-day-content {
    display: none;
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 28px;
    color: #333;
}

.tour-day-item.is-open .tour-day-content {
    display: block;
}

@media (max-width: 900px) {
    .tour-itinerary-grid {
        grid-template-columns: 1fr;
    }

    .tour-itinerary-side {
        position: static;
    }
}

.tour-dates {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.tour-dates-title {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.tour-dates-table {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
}

.tour-dates-head,
.tour-date-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.tour-dates-head {
    padding: 18px 24px;
    font-weight: 700;
    border-bottom: 1px solid #e4e4e4;
}

.tour-date-row {
    padding: 26px 24px;
    border-bottom: 1px solid #e4e4e4;
}

.tour-date-row:last-child {
    border-bottom: none;
}

.tour-date-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-date-label {
    display: none;
    font-size: 13px;
    color: #777;
}

.tour-spaces {
    color: #ef4444;
}

.tour-date-price {
    text-align: left;
}

.tour-date-price strong {
    display: block;
    font-size: 24px;
    line-height: 30px;
}

.tour-date-price small {
    color: #777;
}

.tour-price-currency {
    font-size: 14px;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .tour-dates-head {
        display: none;
    }

    .tour-date-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tour-date-label {
        display: block;
    }

    .tour-date-price {
        text-align: left;
    }
}

.tour-physical-rating {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.tour-physical-rating span {
    font-size: 16px;
    color: #d1d5db;
    transition: 0.3s;
}

.tour-physical-rating span.active {
    color: #111827;
}
.horse-icon{
    display:inline-block;
    transform: scaleX(-1);
    margin-right:6px;
}
.tour-dates-head,
.tour-date-row {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1fr 170px;
    gap: 24px;
    align-items: center;
}

.tour-date-action {
    display: flex;
    justify-content: flex-end;
}

.tour-date-book-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}

.tour-date-book-btn:hover {
    background: #ef4444;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .tour-dates-head {
        display: none;
    }

    .tour-date-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tour-date-action {
        justify-content: flex-start;
    }

    .tour-date-book-btn {
        width: 100%;
    }
}

.blog-single-page {
    background: #fff;
}

/* HERO */

.blog-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.blog-hero-image {
    position: absolute;
    inset: 0;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.2)
        );
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    max-width: 900px;
}

/* CONTENT */

.blog-content-section {
    padding: 50px 0px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 32px;
    margin-bottom: 10px;
    color: #513393;
    font-weight: 700;
    line-height: 1.3;
}

.blog-content h2 {
    font-size: 36px;
}

.blog-content h3 {
    font-size: 28px;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 40px 0;
}

.blog-content ul,
.blog-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-content blockquote {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid #513393;
    background: #f8f5ff;
    border-radius: 16px;
    font-size: 22px;
    line-height: 1.6;
    color: #513393;
    font-style: italic;
}

/* MOBILE */

@media (max-width: 768px) {

    .blog-hero {
        height: 420px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 0px;
    }
    .founder-section {
        padding: 0px 0px 0px 0px;
    }

}

#review p{
    margin-bottom:1.2em
}

.event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-button {
    margin-top: auto;
    padding-top: 10px;
}
.event-page p{
    padding:1.2em 0
}
.founder-top {
    display: grid;
    grid-template-columns: minmax(380px, 460px) 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 70px;
}
.founder-content {
    padding-top: 10px;
}
.founder-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}
.founder-section {
    background: #fff;
    padding: 80px 0px 0px 0px;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image-wrap {
    position: relative;
}

.founder-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 24px;
    border: 4px solid #fff;
    box-shadow: 0 24px 60px rgba(81, 51, 147, 0.22);
}

.founder-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(81, 51, 147, 0.18);
    z-index: 1;
}

.founder-circle-1 {
    width: 130px;
    height: 130px;
    top: -35px;
    left: -35px;
}

.founder-circle-2 {
    width: 95px;
    height: 95px;
    right: -25px;
    bottom: -25px;
}

.founder-quote {
    position: absolute;
    z-index: 3;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #513393;
    color: white;
    font-size: 54px;
    line-height: 95px;
    text-align: center;
    font-weight: 700;
}

.founder-subtitle {
    color: #9b85c8;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.founder-title {
    font-size: 48px;
    line-height: 1.1;
    color: #513393;
    margin-bottom: 24px;
    font-family: Georgia, serif;
}

.founder-text {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 34px;
}

.founder-line {
    border-top: 1px solid #7d5cc3;
    padding-top: 14px;
    margin-bottom: 34px;
    text-align: right;
    color: #513393;
    font-style: italic;
}

.founder-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 60px;
    align-items: start;
}
.founder-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 50px;
}

.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border: 1px solid rgba(81, 51, 147, 0.14);
    border-radius: 22px;
    padding: 28px;
    background: white;
    transition: all .3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(81, 51, 147, 0.12);
}

.founder-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #513393;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.founder-card h3 {
    color: #513393;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 14px;
}

.founder-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 900px) {
    .founder-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-cards {
        grid-template-columns: 1fr;
    }

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-title {
        font-size: 36px;
    }

    .founder-cards {
        grid-template-columns: 1fr;
    }
}

.tour-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-tooltip-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /* background: #513393; */
    color: #000;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid black;
    line-height: 0;
}

.tour-tooltip-icon:hover {
    transform: scale(1.08);
}

.tour-tooltip {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    border: 1px solid rgba(81, 51, 147, .12);
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 50;
}

.tour-tooltip-wrapper:hover .tour-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#mobile-menu {
    transition:
        max-height .35s ease,
        opacity .35s ease;
    opacity: 0;
}

#mobile-menu.max-h-\[1200px\] {
    opacity: 1;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

.tour-main-image-wrap {
    margin-bottom: 16px;
}

.tour-main-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
}

.tour-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.tour-thumb {
    flex: 0 0 140px;
    cursor: pointer;
}

.tour-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    transition: .2s;
}

.tour-gallery-wrap{
    margin-bottom: 32px;
}

.tour-main-image-wrap {
    margin-bottom: 10px;
}

.tour-main-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px 24px 0px 0px;
}

.tour-thumbs {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.tour-thumb {
    flex: 1;
    cursor: pointer;
}

.tour-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 0px;
    transition: .2s;
}
.tour-thumb:first-child img{
    border-radius: 0px 0px 0px 12px;
}
.tour-thumb:last-child img{
    border-radius: 0px 0px 12px 0px;
}

.tour-thumb img:hover {
    transform: scale(1.03);
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.tour-inclusions {
    max-width: 1200px;
    margin: 50px auto 0px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tour-inclusion-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(81, 51, 147, .12);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 14px 40px rgba(81, 51, 147, .06);
}

.tour-inclusion-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    line-height: 1.2;
    color: #513393;
    margin: 0 0 18px;
}

.tour-inclusion-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: #513393;
    flex-shrink: 0;
}

.tour-inclusion-no .tour-inclusion-icon {
    background: #ef4444;
}

.tour-inclusion-text {
    font-size: 15px;
    line-height: 1.65;
    color: #333;
}

.tour-inclusion-text ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    columns: 2;
    column-gap: 28px;
}

.tour-inclusion-text li {
    break-inside: avoid;
    padding-left: 24px;
    position: relative;
    margin-bottom: 9px;
}

.tour-inclusion-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #513393;
    font-weight: 700;
}

.tour-inclusion-no .tour-inclusion-text li:before {
    content: "×";
    color: #ef4444;
}

@media (max-width: 768px) {
    .tour-inclusions {
        grid-template-columns: 1fr;
        margin: 32px auto;
        padding: 0 14px;
        gap: 18px;
    }

    .tour-inclusion-card {
        padding: 22px;
        border-radius: 20px;
    }

    .tour-inclusion-card h2 {
        font-size: 21px;
        margin-bottom: 14px;
    }

    .tour-inclusion-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .tour-inclusion-text ul {
        columns: 1;
    }

    .tour-inclusion-text li {
        padding-left: 22px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {

    .tour-gallery-wrap {
        margin-bottom: 24px;
    }

    .tour-main-image {
        height: auto;
        max-width: 100% ;
        border-radius: 18px 18px 0 0;
    }

    .tour-thumbs {
        gap: 0px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tour-thumbs::-webkit-scrollbar {
        display: none;
    }

    .tour-thumb {
        flex: 0 0 90px;
    }

    .tour-thumb img {
        height: 65px;
    }
    .logo {
        width: 50px;
        height: 50px;
    }
    

}

.tour-inclusion-text ul {
    padding-left: 0;
    list-style: none;
}

.tour-inclusion-text li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

.tour-inclusion-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #513393;
    font-weight: 700;
}

.footer-certificates-list {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-certificate-item {
    width: 90px;
    height: 120px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 4px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    overflow: hidden;
    transition: .25s ease;
}

.footer-certificate-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.14);
}

.footer-certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.certificate-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: rgba(0, 0, 0, .85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.certificate-modal.active {
    display: flex;
}

.certificate-modal img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}

.certificate-modal-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #513393;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer-certificate-item {
        width: 76px;
        height: 104px;
    }
}

.footer-certificates-mobile {
    display: none;
}

.footer-certificates-desktop {
    display: block;
}

@media (max-width: 767px) {
    .footer-certificates-mobile {
        display: block;
    }

    .footer-certificates-desktop {
        display: none;
    }
}