html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arsenal', sans-serif;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 82px;
}

#main .snap-section {
    /* scroll-snap-align: start; */
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    height: 100vh;
    position: relative;
}

.escapades::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 33px;
    background: url('../images/arch-white.svg') repeat-x;
    background-size: 24px 33px;
    z-index: 5;
    transform: rotate(-180deg);
}

.escapades::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 33px;
    background: url('../images/arch-white.svg') repeat-x;
    background-size: 24px 33px;
    z-index: 5;
}

#heroCarousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: top center;
}

#heroCarousel .carousel-item video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 0;
}

#heroCarousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#heroCarousel .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.escapades .slide-content {
    top: 35%!important;
}

#heroCarousel .slide-content h1 {
    font-size: 86px;
    line-height: 96px;
    width: 402px;
    margin: 0 auto;
}

.escapades .slide-content h1 {
    font-weight: 700;
    font-size: 14px!important;
    line-height: 13px!important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px!important;
}

#heroCarousel .slide-content p {
    font-size: 21px;
    line-height: 34px;
    letter-spacing: -0.5px;
    width: 570px;
}

.escapades .slide-content p {
    font-size: 28px!important;
    line-height: 42px!important;
    letter-spacing: 0px!important;
    width: 525px!important;
}

.escapades .slide-content h2 {
    font-size: 42px;
    line-height: 42px;
    margin: 40px 0;
}

.escapades .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.escapades .buttons a {
    margin: 0!important
}

.escapades .buttons a::after {
    content: "";
    display: none;
    width: 21px;
    height: 21px;
    background-image: url('../images/arrow-right-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.escapades .buttons a:hover::after {
    display: inline-block;
}

.escapades .buttons a:hover {
    justify-content: space-between;
    padding-right: 40px;
}

.escapades .buttons a:last-child {
    background: transparent!important;
    border: 1px solid white;
}

.escapades .carousel-bottom-controls {
    bottom: 110px!important;
}

#heroCarousel .slide-content a,
#heroCarousel .slide-content a:hover,
#heroCarousel .slide-content a:focus {
    width: fit-content;
    height: 68px;
    border-radius: 60px;
    background-color: #AF1914;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    gap: 8px;
    text-decoration: none;
}

#heroCarousel .slide-content a:hover,
#heroCarousel .slide-content a:focus {
    background-color: #9B2528;
}

.video-btn::after {
    content: "";
    display: none;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="5 3 19 12 5 21 5 3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.video-btn:hover::after {
    display: inline-block;
}

.video-btn:hover {
    justify-content: space-between;
    padding-right: 40px;
}

#heroCarousel .progress-bar-slide {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 99999;
}

#heroCarousel .progress-fill {
    height: 100%;
    width: 0;
    background: #FFF;
    animation: progressAnimation 4.8s linear forwards;
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

#heroCarousel .carousel-bottom-controls {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#heroCarousel .carousel-bottom-controls .carousel-control-prev,
#heroCarousel .carousel-bottom-controls .carousel-control-next {
    background: transparent;
    border: 1px solid white;
    opacity: 1;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heroCarousel .carousel-bottom-controls .carousel-control-prev {
    left: -55px;
    right: auto;
}

#heroCarousel .carousel-bottom-controls .carousel-control-next {
    right: -55px;
    left: auto;
}

#heroCarousel .carousel-control-next:focus,
#heroCarousel .carousel-control-next:hover,
#heroCarousel .carousel-control-prev:focus,
#heroCarousel .carousel-control-prev:hover {
    border: 1px solid black;
    background-color: white;
    opacity: 1;
}

#heroCarousel .carousel-bottom-controls .carousel-control-prev img,
#heroCarousel .carousel-bottom-controls .carousel-control-next img {
    width: 21px;
    height: 21px;
    transition: filter 0.3s ease;
}

#heroCarousel .carousel-control-prev:hover img,
#heroCarousel .carousel-control-prev:focus img,
#heroCarousel .carousel-control-next:hover img,
#heroCarousel .carousel-control-next:focus img {
    filter: invert(1);
}

#heroCarousel .carousel-bottom-controls button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.scroll-slider-section {
    background-color: white;
    padding: 120px 50px 175px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
}

.scroll-slider-section.destinations {
    background-color: #F6F6F6;
    position: relative;
}

.scroll-slider-section:not(.destinations)::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 33px;
    background: url('../images/arch.svg') repeat-x;
    background-size: 24px 33px;
    z-index: 5;
}

.scroll-slider-section h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 13px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.scroll-slider-section h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    width: 825px;
    margin: 30px auto 90px;
}

.scroll-slider-section.destinations h1 {
    margin-bottom: 30px;
}

.scroll-slider-section p {
    width: 550px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -0.5px;
    font-weight: 400;
    text-align: center;
}

.scroll-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #00000033 #ffffff;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.scroll-slider::-webkit-scrollbar {
    height: 6px;
    -webkit-appearance: always;
}

.scroll-slider::-webkit-scrollbar-track {
    background: #ffffff;
}

.scroll-slider::-webkit-scrollbar-thumb {
    background-color: #00000033;
    border-radius: 5px;
}

.scroll-wrapper {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.scroll-wrapper .card {
    flex: 0 0 auto;
    width: 400px;
    border: none;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent
}

.scroll-slider-section.destinations .scroll-wrapper .card {
    width: 500px;
    position: relative;
}

.scroll-wrapper .card-text {
    font-size: 24px;
    line-height: 42px;
    max-width: 350px;
}

.scroll-slider-section.destinations .scroll-wrapper .card-text {
    position: absolute;
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    left: 30px;
    bottom: 70px;
    width: unset;
    color: white;
}

.scroll-wrapper .card-img-top {
    height: 70vh;
    width: 400px;
    object-fit: cover;
    border-radius: 32px;
}

.scroll-slider-section.destinations .scroll-wrapper .card-img-top {
    height: 70vh;
    width: 500px;
}

.scroll-slider-section a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 68px;
    background-color: #AF1914;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border-radius: 60px;
    margin: 115px auto 0;
    padding: 0 20px;
    gap: 12px;
    text-decoration: none;
}

.scroll-slider-section.destinations a {
    margin: 30px auto 80px;
}

.scroll-slider-section a:hover,
.scroll-slider-section a:focus {
    background-color: #9B2528;
}

.scroll-slider-section a::after {
    content: "";
    display: none;
    width: 21px;
    height: 21px;
    background-image: url('../images/arrow-right-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.scroll-slider-section a:hover::after {
    display: inline-block;
}

.scroll-slider-section a:hover {
    justify-content: space-between;
    padding-right: 20px;
}

.scroll-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.scroll-slider::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.custom-scrollbar {
    position: relative;
    height: 3px;
    width: 60%;
    background-color: rgb(224, 224, 224);
    border-radius: 3px;
}

.custom-scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 30%;
    background-color: #1A1A1A;
    border-radius: 3px;
    left: 0;
    cursor: pointer;
}

#sliderPlus {
    min-height: 100vh;
    position: relative;
}

#sliderPlus::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 33px;
    background: url('../images/arch-white.svg') repeat-x;
    background-size: 24px 33px;
    z-index: 5;
}

#sliderPlus .carousel-inner {
    position: relative;
    min-height: 100vh;
}

#sliderPlus .carousel-item h1 {
    position: absolute;
    left: 40px;
    bottom: 15%;
    font-size: 76px;
    line-height: 72px;
    color: white;
    width: 209px;
}

#sliderPlus .carousel-item h2 {
    font-size: 32px;
    line-height: 36px;
    color: white;
    margin-bottom: 20px;
}

#sliderPlus .carousel-item p {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: -0.5px;
    width: 500px;
    color: white;
    margin-bottom: 30px;
}

#sliderPlus .carousel-item img {
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

#sliderPlus .carousel-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 68px;
    background-color: #AF1914;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    gap: 12px;
    text-decoration: none;
}

#sliderPlus .carousel-item a:hover,
#sliderPlus .carousel-item a:focus {
    background-color: #9B2528
}

#sliderPlus .carousel-item a::after {
    content: "";
    display: none;
    width: 21px;
    height: 21px;
    background-image: url('../images/arrow-right-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#sliderPlus .carousel-item a:hover::after {
    display: inline-block;
}

#sliderPlus .carousel-item a:hover {
    justify-content: space-between;
    padding-right: 20px;
}

#sliderPlus .carousel-item .col-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-position: top -50px right 0;
    padding: 100px 50px;
    position: relative;
    background-color: #F6F6F6;
}

#sliderPlus .carousel-item .col-6:last-child h2 {
    color: #1A1A1A;
}

#sliderPlus .carousel-item .col-6:last-child p {
    color: #1A1A1A;
}

#sliderPlus .carousel-item .col-6:last-child.green{
    background-image: url("../images/green_branding.png");
}

#sliderPlus .carousel-item .col-6:last-child.blue{
    background-image: url("../images/blue_branding.png");
}

/* #sliderPlus .carousel-item .green {
    background-color: #22A548;
}

#sliderPlus .carousel-item .blue {
    background-color: #4caee0;
} */

#sliderPlus .blue h1,
#sliderPlus .blue h2,
#sliderPlus .blue p {
    color: black
}

@keyframes zoomIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.zoom-in {
    animation: zoomIn 0.6s ease forwards;
}

.zoom-out {
    animation: zoomOut 0.6s ease forwards;
}

#sliderPlus .arrows-wrapper {
    position: absolute;
    right: 60px;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#sliderPlus .arrow-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#sliderPlus .arrow-btn:hover,
#sliderPlus .arrow-btn:focus {
    background-color: white;
    border-color: black;
}

#sliderPlus .blue .arrow-btn {
    border: 1px solid black;
}

#sliderPlus .arrow-btn::before {
    content: '';
    width: 21px;
    height: 21px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#sliderPlus .arrow-btn.up::before {
    background-image: url('../images/arrow-right-white.svg');
    transform: rotate(-90deg);
    filter: invert(1);
}

#sliderPlus .arrow-btn.down::before {
    background-image: url('../images/arrow-right-white.svg');
    transform: rotate(90deg);
    filter: invert(1);
}

#sliderPlus .arrow-btn:hover::before,
#sliderPlus .blue .arrow-btn.up::before,
#sliderPlus .blue .arrow-btn.down::before {
    filter: invert(1);
}

#sliderPlus .arrow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-section {
    text-align: center;
    padding: 60px 20px 160px;
    background-color: white;
    min-height: 100vh;
    position: relative;
}

.social-section .arch-divider {
    background: url('../images/arch.svg') repeat-x;
    background-size: 24px 33px;
    height: 33px;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 10;
}

.social-section h2 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 50px;
}

.social-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.social-section .social-icons img {
    width: 42px;
    height: 42px;
}

.social-section .social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1340px;
    margin: 0 auto 60px;
}

.social-section .social-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    flex: 1 1 calc(25% - 20px);
}

.social-section .social-card.large {
    flex: 1 1 calc(50% - 20px);
}

.social-section .social-card img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.social-section .social-card video {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.social-section .social-badge {
    position: absolute;
    bottom: 30px;
    right: 25px;
    background: white;
    padding: 6px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-section .social-badge img {
    width: 28px;
    height: 28px;
}

.social-section .load-more-wrapper {
    margin-top: 20px;
    display: none;
}

.social-section .load-more-btn {
    padding: 16px 32px;
    background-color: #AF1914;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
}

.social-section .load-more-btn:hover {
    background-color: #9B2528;
}

.social-section .load-more-btn::after {
    content: "";
    display: none;
    width: 21px;
    height: 21px;
    background-image: url('../images/arrow-right-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-section .load-more-btn:hover::after {
    display: inline-block;
}

.social-section .load-more-btn:hover {
    justify-content: space-between;
    padding-right: 20px;
}

@media only screen and (max-width: 600px) {
    .slide-content h1 {
        font-size: 72px;
        line-height: 72px;
        width: unset;
    }
    .slide-content p {
        width: unset;
    }
    .carousel-item:first-child {
        background-position: right 35% bottom 50%;
    }
    .carousel-item:nth-child(2) {
        background-position: right 20% bottom 50%;
    }
    .carousel-bottom-controls {
        display: none;
    }
    #heroCarousel .slide-content h1 {
        font-size: 72px;
        line-height: 72px;
        width: unset;
    }
    #heroCarousel .slide-content p {
        width: unset;
    }
    #heroCarousel .slide-content p:has(a) {
        width: 570px;
    }
    #sliderPlus .row {
        display: flex;
        flex-direction: column;
    }
    #sliderPlus .col-6 {
        width: 100%!important;
    }
    #sliderPlus .carousel-item img {
        height: 316px;
    }
    #sliderPlus .carousel-item:not(:first-child) h1 {
        left: 20px;
        bottom: 65%;
        font-size: 48px;
        line-height: 44px;
        width: 132px;
    }
    #sliderPlus .carousel-item[data-group="sea"]:not(:first-child) h1 {
        bottom: 67%;
    }
    #sliderPlus .carousel-item:first-child h1 {
        bottom: 5%;
        left: 20px;
        font-size: 48px;
        line-height: 44px;
        width: 132px;
    }
    #sliderPlus .carousel-item .col-6:last-child {
        padding: 40px 20px 100px 20px;
        text-align: center;
    }
    #sliderPlus .carousel-item h2 {
        font-size: 38px;
        line-height: 44px;
    }
    #sliderPlus .carousel-item p {
        font-size: 23px;
        line-height: 38px;
        letter-spacing: -0.5px;
        width: unset;
    }
    #sliderPlus .carousel-item a {
        width: 85%;
        margin: auto;
    }
    #sliderPlus .arrows-wrapper {
        flex-direction: row;
        top: 90%;
        gap: 180px;
    }
    .scroll-slider-section {
        padding: 120px 10px;
    }
    .scroll-slider-section h1 {
        width: unset;
        font-size: 38px;
        margin: 30px auto 20px;
        line-height: 90%;
    }
    .scroll-wrapper {
        gap: 10px;
    }
    .scroll-wrapper .card {
        width: 320px;
    }
    .scroll-wrapper .card-img-top {
        width: 320px;
        height: 50vh;
    }
    .scroll-slider-section.destinations p {
        width: 90%;
    }
    .scroll-slider-section.destinations .scroll-wrapper .card {
        width: 375px;
    }
    .scroll-slider-section.destinations .scroll-wrapper .card-img-top {
        height: 500px;
        width: 95%;
    }
    .escapades .slide-content {
        top: 50% !important;
        width: 80%;
    }
    .escapades .slide-content p {
        width: unset!important;
    }
    .escapades .slide-content h2 {
        font-size: 28px;
        line-height: 21px;
        margin: 30px 0;
    }
    .escapades .buttons {
        flex-direction: column;
    }
    .escapades .buttons a {
        width: 100%!important;
    }
    .escapades .slide-content a,
    .escapades .slide-content a:hover,
    .escapades .slide-content a:focus {
        width: 100%!important;
    }
    .escapades .carousel-bottom-controls {
        display: unset!important;
    }
    .social-section .social-grid {
        flex-wrap: nowrap;
        gap: 10px;
        max-width: unset;
        overflow-x: auto;

        /* Hide scrollbar but maintain functionality */
        -ms-overflow-style: none;  /* For Internet Explorer and Edge */
        scrollbar-width: none;     /* For Firefox */
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
    }

    /* Hide scrollbar for Chrome, Safari and Opera */

    .social-section {
        padding: 50px 10px 120px 10px;
    }
    .social-section .social-grid::-webkit-scrollbar {
        display: none;
    }
    .social-section .social-card {
        flex: unset;
        min-width: 350px;
    }
    .social-section .social-card>img, .social-section .social-card>video {
        width: 350px;
        height: 440px;
    }
    .social-section h2 {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    .social-section .social-icons {
        gap: 15px;
        margin-bottom: 40px;
    }
    .social-section .social-icons img {
        width: 42px;
        height: 42px;
    }
    .mobile-scroll-slider .custom-scrollbar-container {
        margin-bottom: 50px;
    }
    .scroll-slider-section.mobile-scroll-slider::after {
        background-image: none;
    }

    .scroll-slider-section .social-icons a{
        height: 42px;
        background-color: transparent;
        border-radius: 0;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .scroll-slider-section .social-card {
        background-color: transparent;
        border-radius: 0;
        margin: 0;
        padding: 0;
        gap: 0;
        height: max-content;
    }

    .scroll-slider-section .social-card:hover, .scroll-slider-section .social-card:focus {
        background-color: transparent;
    }
}

.card_url {
    text-decoration: none !important;
    color: inherit !important;
    background-color: transparent !important;
    height: auto !important;
    width: auto !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.card_url:hover {
        background-color: transparent !important;
        color: inherit !important;
        margin: 0 !important;
        padding: 0 !important;
}

.card_url:hover::after {
    display: none !important;
}
