@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

.google-sans-bold {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "GRAD" 0;
}

.google-sans-semibold {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
        "GRAD" 0;
}

.google-sans-medium {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "GRAD" 0;
}

.google-sans-regular {
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "GRAD" 0;
}

@font-face {
    font-family: 'Bison-Bold';
    src: url('https://raw.githubusercontent.com/0resmon/0resmon-fonts/refs/heads/main/Bison-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

html.no-scroll {
  overflow: hidden;
  overscroll-behavior-y: none;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-slow {
    animation: float 8s ease-in-out infinite;
}

.float-medium {
    animation: float 6s ease-in-out infinite;
}

.float-fast {
    animation: float 4s ease-in-out infinite;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid #ffffff40;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

#youtube-video-section {
    position: relative;
    z-index: 10;
}

section:has(.faq-item) {
    position: relative;
    z-index: 1;
}

.pin-spacer {
    z-index: 10 !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scroll-container {
    animation: scroll 30s linear infinite;
}

.scroll-container:hover {
    animation-play-state: paused;
}

.package-card {
    will-change: transform, opacity;
}

.package-card article {
    will-change: transform;
}

.swiper {
    width: 100%;
    height: 384px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide iframe,
.swiper-slide img {
    width: 100%;
    height: 384px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-theme-color:  #E7434F!important;
    color: #E7434F!important;
    padding: 8px !important;
    width: 36px !important;
    height: 36px !important;
}

.swiper-pagination-bullet-active {
    --swiper-pagination-color: #E7434F!important;
    background: var(--swiper-pagination-color);
    opacity: var(--swiper-pagination-bullet-opacity,1)
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #FF5A66!important;
    background-color: #00000020!important;
    border-radius: 99999px;
}

#package-description h1 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 4px;
}

#package-description h2 {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 4px;
}

#package-description hr {
    border-color: #ffffff10;
    margin: 12px 0;
}

#package-description a {
    color: #E7434F;
    text-decoration: underline;
}

#package-description a:hover {
    color: #FF5A66;
}

#package-description p {
    color: #FFFFFF;
    line-height: 1.6;
}

.accordion-content {
    overflow: hidden;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.mobile-menu.active {
    max-height: 100vh;
}

.btn-primary {
    background-color: #FF3A52;
    color: #FFF;
    padding: 12px 16px;
    border-radius: 6px;
}

#faq-items::-webkit-scrollbar {
    width: 2px;
}

#faq-items::-webkit-scrollbar-track {
    background: transparent;
}

#faq-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

#faq-items::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}