/* Custom styles beyond Tailwind if needed */
.red {
    color: #BB3D2E;
}

.yellow {
    color: #FFE400;
}

.bg-yellow {
    background-color: #FFE400;
}

.bg-pink {
    background-color: #700D54;
}

.gray {
    color: #333333;
}

p {
    color: #333333;
}

@media (min-width: 1024px) {
    .header--logo {
        transform: translate(-50%, -50%);
    }
}

header > div,
main {
    max-width: 1568px;
    margin: 0 auto;
}

.nav-arrow-left,
.nav-arrow-right {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.nav-arrow-left:hover,
.nav-arrow-right:hover {
    opacity: 0.8;
}

/* FAQ Styling */
.faq-item {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgb(245 245 245);
}

.faq-summary {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-arrow, .arrow {
    width: 1.5rem;
    height: 1.5rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transform: rotate(0deg);
    flex-shrink: 0;
}

.faq-item {
    overflow: hidden;
}

.faq-item .faq-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-item[open] .faq-arrow, .accordion-item[open] .arrow, .readmore-expandable-item[open] .arrow {
    transform: rotate(-180deg);
    transition: 0.3s ease;
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 300ms ease, opacity 300ms ease;
}

.faq-item[open] .faq-content {
    max-height: 999px;
    opacity: 1;
}



/* Utility Components */
.absolute-overlay {
    @apply absolute top-0 left-0 right-0 bottom-0;
}

.flex-center {
    @apply flex justify-center items-center;
}

.flex-between {
    @apply flex justify-between items-center;
}

.transition-smooth {
    @apply transition-transform duration-300 ease-in-out;
}

.swiper-button-disabled {
    opacity: 0.6;
}

#features-section-with-video video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

@media (min-width: 1568px) {
    #topic-cta-carousel-wrapper,
    #topic-carousel-wrapper,
    #hero-carousel-wrapper,
    #club-section {
        padding-left:64px;
        padding-right: 64px;
    }
}

.list-bp li:before {
    content: "•";
    position: absolute;
    left: -18px;
    top: 1px;
}

/* Hide scrollbars for hero sliders while maintaining scroll functionality */
#hero-slider-1,
#hero-slider-2 {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#hero-slider-1::-webkit-scrollbar,
#hero-slider-2::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Ensure hero-slider-2 stops on hover with higher specificity */
#hero-slider-2:hover .swiper-wrapper,
#hero-slider-2.manual-scroll .swiper-wrapper {
    animation-play-state: paused !important;
}
