:root {
    --primary-color: #005f80;
    --secondary-color: #82cfcd;
    --tertiary-color: #234c5a;
    --quaternary-color: #bbd9ee;
    --heading-color: #555;
    --dark-color: #011661;
    --alternate-color: #82cfcd;
}

@font-face {
    font-family: 'Gloria Hallelujah';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/gloriahallelujah/v21/LYjYdHv3kUk9BMV96EIswT9DIbW-MIS11zM.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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Nanami Bold";
    src: url("/assets/fonts/NanamiBold.woff2") format("woff2"), url("/assets/fonts/NanamiBold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Nanami Book";
    src: url("/assets/fonts/NanamiBook.woff2") format("woff2"), url("/assets/fonts/NanamiBook.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Nanami Light";
    src: url("/assets/fonts/NanamiLight.woff2") format("woff2"), url("/assets/fonts/NanamiLight.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Nanami Thin";
    src: url("/assets/fonts/NanamiThin.woff2") format("woff2"), url("/assets/fonts/NanamiThin.woff") format("woff");
    font-display: swap;
}

html, body {
    font-family: "Nanami Light", sans-serif;
    letter-spacing: 0.8px;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h4, h5, h6 {
    font-family: "Nanami Book", sans-serif;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 20px;
}

h3 {
    font-family: "Nanami Light", sans-serif;
    letter-spacing: 2px !important;
    margin-top: 0;
    margin-bottom: 20px;
}

div.page-content h3 {
    margin-top: revert;
}

.header-outer {
    z-index: 2;
    display: flex;
    position: sticky;
    height: 120px;
    padding: 10px 0;
    top: 0px;
    transition: background-color 0.25s, transform 0.25s, top 0.25s;
    background: #fff;
    justify-content: center;
    z-index: 100;
}

body.nav-opened .header-outer {
    transform: translateX(calc(76px - 100vw));
}

body.nav-opened {
    overflow: hidden;
}

.no-pets {
    display: block;
    line-height: 80px;
    position: absolute;
    top: 40px;
    z-index: 10;
}

/* Mobile: position on left side */
@media (max-width: 1500px) {
    .no-pets {
        top: 30px;
    }
}

/* Desktop: position on right side */
@media (min-width: 1041px) {
    .no-pets {
        right: 20px;
    }
}

/* Mobile: position on left side */
@media (max-width: 1040px) {
    .no-pets {
        left: 20px;
    }
}

/* Mobile: position on left side */
@media (max-width: 800px) {
    .no-pets {
        top:15px;
    }
}

.header-nav {
    display: flex;
    list-style-type: none;
    padding: 0;
    width: 100%;
    min-width: 700px;
    max-width: 900px;
    gap: 20px;
    margin: auto 20px auto 100px;
}

.header-nav .header-menu a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    height: 40px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border-bottom: solid 3px transparent;
    align-content: center;
}

.header-logo img {
    height: 100%;
}

@media (max-width: 1500px) {
    .header-nav .header-menu a {
        font-size: 16px !important;
    }

    .header-outer {
        height: 100px;
    }
}

@media (max-width: 1300px) {
    .header-nav .header-menu a {
        font-size: 15px !important;
    }
}

@media (max-width: 1200px) {
    .header-nav .header-menu a {
        font-size: 14px !important;
    }
}

.header-nav .header-menu:hover>a,
.header-nav .header-menu a:hover {
    border-bottom-color: var(--secondary-color);
    /*color: var(--secondary-color);*/
}

.header-menu-popup {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    padding: 10px 20px 15px;
    border-radius: 0 0 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 30px;
}

.header-menu .header-menu-popup a {
    color: white;
    line-height: 40px;
    height: 40px;
    border-bottom: solid 1px transparent;
    margin: 0;
}

.header-menu .header-menu-popup a:hover {
    color: white;
    border-bottom-color: var(--secondary-color);
}

.header-menu:hover .header-menu-popup {
    display: flex;
    flex-direction: column;
}

.header-menu:hover .header-menu-popup .sub-menu {
    display: flex;
    flex-direction: column;
}

.header-menu .header-menu-popup .sub-menu-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-left: 0px !important;
    color: #fff;
}

.header-menu .header-menu-popup  .sub-menu-title.accommodation-type  {
    color: var(--secondary-color);
}

.header-menu .header-menu-popup a {
    margin-left: 20px;
    display: inline;
}

.search-button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.search-button svg path {
    fill: var(--primary-color);
}

#side-nav-open,
#side-nav-close
{
    display: none;
    cursor: pointer;
}

.side-nav {
    display: none;
    background-color: var(--primary-color);
    color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    width: calc(100vw - 76px);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.25s;
    overflow-y: auto;
}

.side-nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    width: 100%;
}

.side-nav a {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    padding: 8px 0;
}

.side-nav .side-nav-category {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: var(--secondary-color);
    white-space: nowrap;
    padding: 10px 0;
}

.side-nav > ul > li > a {
    padding: 15px 40px;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav ul li {
    position: relative;
}

.side-nav ul li a {
    color: #ffffff; /* Example text color */
    text-decoration: none;
    display: block;
    width: 100%;
}

.side-nav ul li.toggle-item:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 25px;
    transform: translateY(-50%) rotate(90deg);    
    width: 12px;
    height: 22px;
    background-image: url('data:image/svg+xml;utf8,<svg class="carat-icon" width="11" height="14" viewBox="0 0 12 22" xmlns="http://www.w3.org/2000/svg"><path d="M-1.144 3.357L2.052.144l7.845 7.804.051-.048 3.196 3.213-.034.032.034.03-3.196 3.212-.05-.045-7.846 7.802-3.196-3.214 7.83-7.785z" fill="%2382CFCD" fill-rule="evenodd"></path></svg>');
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.side-nav ul li.toggle-item.expanded:after {
    transform: translateY(-50%) rotate(270deg); /* Rotates the arrow */
}

.side-nav .toggle-content {
    display: none;
    background-color: var(--tertiary-color);
    color: #fff;
    padding: 15px 40px;
}

.side-nav .toggle-content.expanded {
    display: block;
}

main {
    z-index: 1;
    transition: margin 0.25s, transform 0.25s;
    margin: 0;
    padding: 0;
}

.hero-image-container {
    width: auto;
    height: 530px;
    margin: 0;
}

.hero-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    font-family: "Nanami Light", sans-serif;
    position: relative;
    max-width: 1000px;
    color: #fff;
    margin: auto;
    transform: translateY(-320px);
    text-shadow: 0 0 10px rgb(0, 0, 0, 0.25);
}

.hero-text span {
    display: block;
    padding: 0 20px;
    letter-spacing: normal !important;
    transition: font-size 0.25s;
}

.hero-text-line1 {
    font-size: 35px;
}

.hero-text-line2 {
    font-size: 64px;
}

.hero-text-special {
    font-family: 'Gloria Hallelujah', sans-serif;
    display: inline !important; 
    font-size: 50px;
    padding: 0 !important;
}

.hero-text-line3 {
    font-size: 18px;
    letter-spacing: 0.8px;
}

section.video {
    margin-top: 20px;
    width: 100%;
    height: 600px;
}

section.video video {
    width: calc(100% - 40px);
    max-height: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px;
    height: inherit;
    display: block;
}

@media (max-width: 1250px) {
    .header-nav {
        margin-left: calc(100px - (1250px - 100vw));
    }
}

@media (max-width: 1170px) {
    .header-nav {
        margin-left: 20px;
    }
}

@media (max-width: 1040px) {

    .header-nav {
        display: none;
    }

    .header-outer {
        height: 100px;
    }

    .hero-image-container {
        margin: 0;
        border-radius: 0;
    }

    section.video {
        width: 100%;
        height: 400px;
    }
    
    section.video video {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    section.content-block.alternate,
    section.content-block.movies,
    section.content-block.events,
    section.content-block.news {
        margin: 0 !important;
        border-radius: 0 !important;
    }

    #side-nav-open, #side-nav-close {
        position: fixed;
        top: 40px;
        right: 20px;
    }

    body.nav-opened #side-nav-close {
        display: block;
    }

    body.nav-closed #side-nav-open {
        display: block;
    }

    body.nav-opened .main-header {
        transform: translateX(calc(-100% + 76px));
    }

    body.nav-opened main {
        transform: translateX(calc(-100% + 76px));
    }

    body.nav-opened .side-nav {
        transform: translateX(100%);
        padding-top: 26px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 1100px) {

    .header-outer {
        height: 80px;
    }

    .hero-text span {
        font-size: 30px;
        max-width: 800px;
    }

    .hero-text-line2 {
        font-size: 50px !important;
    }
    
    .hero-text-special {
        display: inline !important;
        font-size: 40px !important;
    }
    
    .hero-text-line3 {
        font-size: 16px !important;
    }
    
    div.page-content h2 {
        margin-top: revert;
    }
}

@media (max-width: 800px) {

    .header-outer {
        height: 60px;
    }

    .header-logo img {
        height: 60px;
    }
   
    .hero-image-container {
        height: 400px;
    }

    .hero-text {
        padding-top: 0;
    }

    .hero-text span {
        font-size: 30px;
        max-width: 100vw;
    }

    .hero-text-line2 {
        font-size: 40px !important;
    }
    
    .hero-text-special {
        display: inline !important;
        font-size: 35px !important;
    }
    
    .hero-text-line3 {
        font-size: 16px !important;
    }
    
    #side-nav-open, #side-nav-close {
        top: 30px;
    }
}

.page-header {
    height: 550px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin-bottom: 80px;
}

.page-title {
    font-size: 48px;
    font-family: "Nanami Book", sans-serif;
    color: #fff;
    padding: 20px 40px 20px 20px;
    background-color: var(--primary-color);
    display: inline-block;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
    top: 460px;
    height: 80px;
    line-height: 80px;
    vertical-align: middle;
    margin: 0;
}

.page-content {
    max-width: 1100px;
    margin: auto;
}

.page-content h2 {
    font-size: 36px;
    font-family: "Nanami Bold", sans-serif;
}

.page-icons {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 10px;
}

.page-icons .icon {
    display: flex;
    flex-direction: row;
    place-items: center;
    gap: 10px;
}

.page-icons .icon svg {
    height: 24px;
    width: 24px;
}

.page-icons svg path {
    fill: var(--tertiary-color);
}

.page-content .overview {
    font-family: "Nanami Light", sans-serif;
    font-size: 18px;
}

.page-gallery {
    display: grid;
    grid-gap: 10px; /* Gap between grid items */
    padding: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.page-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.page-gallery img:hover {
    transform: scale(1.05);
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.row {
    display: block;
}

.vc-pane-layout {
    gap: 20px;
}

.vc-title-wrapper span {
    font-size: 16px;
    font-weight: bold;
}

.vc-day-content {
    font-size: 16px !important;
}

.vc-blue {
    --vc-accent-200: #82CFCD !important;
    --vc-accent-600: #234C5A !important;
    --vc-accent-700: #005F80 !important;
    --vc-accent-900: #005F80 !important;
}

button.vc-arrow, .vc-title-wrapper button {
    background-color: transparent;
}

@media screen and (max-width: 1100px) {

    .page-content {
        padding: 0 40px;
    }

    .two-columns {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
}

@media screen and (max-width: 500px) {

    .page-header {
        height: 200px;
    }

    .page-title {
        font-size: 30px;
        top: 160px;
        height: 40px;
        line-height: 40px;
    }

    .page-content {
        padding: 0 20px;
    }

    .calendar-wrapper > .vc-container {
        width: 100% !important;
        max-width: 500px;
    }

    section.content-block {
        padding: 20px !important;
    }

    :not(.movies) .wrapping-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important; 
        gap: 20px !important;
    }    
}

section.video {
    margin-bottom: 40px;
}

section.content-block {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

section.content-block h2 {
    font-size: 36px;
    color: var(--heading-color);
    text-align: center;
}

section.content-block > h3 {
    font-size: 36px;    
}

section.content-block.alternate h2 {
    color: var(--alternate-color);
}

section.content-block.alternate.light {
    background: #eee;
}

section.content-block.news {
    background: #eee;
}

section.content-block.events {
    background: #83cfcd;
}

section.content-block.events h2 {
    color: var(--primary-color);
}

section.content-block.movies {
    background: linear-gradient(to top, #005f80, #005f80, #1b1b1b);
    color: #fff;
    background-image:url(/assets/night-sky.jpg);
    background-size:cover;
    background-position: bottom
}

section.content-block > p {
    text-align: center;
}

section.content-block.movies h2 {
    color: #fff;
}

section.content-block.alternate.light h2 {
    color: var(--header-color);
}

.wrapping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    justify-items: center;
}

.wrapping-grid:has(:only-child) {
    gap: 0;
}

.movies .wrapping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(312px, max-content));
    gap: 2rem;
    justify-content: center;
    width: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.movies .wrapping-grid img {
    width: 312px;
    height: 493px;
}

.movies .wrapping-grid > div {
    width: 312px;
}

.wrapping-grid > div {
    width: 300px;
}

@media (max-width: 1100px) {
    .movies .wrapping-grid {
        grid-template-columns: repeat(auto-fit, minmax(312px, max-content));
        max-width: 700px;
    }
}

@media (max-width: 750px) {
    .movies .wrapping-grid {
        grid-template-columns: 1fr;
        max-width: 312px;
    }
}

.wrapping-grid .shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.wrapping-grid img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#cabins-for-hire .wrapping-grid img, #sites-for-hire .wrapping-grid img {
    height: auto;
}

.wrapping-grid p {
    margin-bottom: 0;
}

.wrapping-grid h3 {
    margin: 0;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    letter-spacing: 0.8px;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.wrapping-grid a {
    text-decoration: none;
}

section.content-block.alternate {
    background: var(--quaternary-color);
    border-radius: 20px;
    margin:20px;
}

section.content-block.alternate.dark {
    background: linear-gradient(to top, #005f80, #005f80, #1b1b1b);
    color: #fff;
}

section.content-block.alternate.dark h2 {
    color: var(--alternate-color) !important;
}

section.content-block.alternate.dark h3 {
    color: #fff !important;
}

footer {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
}

footer h2 {
    font-size: 40px;
    letter-spacing: 0.8px;
    margin: 0;
    display: block;
}

footer svg.trip-advisor {
    width: clamp(30vw, 30vw, 350px);
    max-width: 350px;
}

footer a {
    text-align: right;
}

footer .content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5vw;
}

footer .copyright {
    font-size: 14px;
    font-weight: normal;
}

footer .socials svg {
    padding: 10px 5px;
}

p {
    font-size: 17px;
    letter-spacing: 0.8px;
    font-family: "Nanami Light", sans-serif;
}

@media screen and (max-width: 1100px) { footer h2 { font-size: 36px; } }
@media screen and (max-width: 800px) { footer h2 { font-size: 24px; } }
@media screen and (max-width: 600px) { footer h2 { font-size: 20px; } }
@media screen and (max-width: 500px) { footer h2 { font-size: 18px; } }
@media screen and (max-height: 400px) { .header-outer { position: unset; } }


div.spacer {
    height: 40px;
}
@media screen and (max-width: 800px) { div.spacer { display: none; } }

@media screen and (max-width: 800px) { main.local-attraction-main { margin-top: -60px; } }

main.local-attraction-main h3 {
    font-size: 40px;
}

@media screen and (max-width: 800px) { main.local-attraction-main h3 { font-size: 32px; } }
@media screen and (max-width: 600px) { main.local-attraction-main h3 { font-size: 26px; } }
@media screen and (max-width: 500px) { main.local-attraction-main h3 { font-size: 24px; } }


main.local-attraction-main section {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

main.local-attraction-main section a {
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    text-decoration: none;
    font-size:17px;
    line-height: 40px;
}

/* Style 1 */

main.local-attraction-main section.style1 {
    display:flex;
    flex-direction: row;
}

main.local-attraction-main section.style1 .local-attraction-info {
    flex: 1;
    padding: 5%;
    margin: auto 0; 
}

main.local-attraction-main section.style1 .local-attraction-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.local-attraction-main section.style1 .local-attraction-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Style 2 */

main.local-attraction-main section.style2 {
    display:flex;
    flex-direction: row-reverse;
    background: #333;
    color: #fff;
}

main.local-attraction-main section.style2 .local-attraction-info {
    flex: 1;
    padding: 5%;
    margin: auto 0; 
}

main.local-attraction-main section.style2 .local-attraction-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

main.local-attraction-main section.style2 .local-attraction-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Carousel */

section.sites {
    width: calc(100% - 40px);    
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    max-height: 800px;
    margin: 20px auto;
    overflow: hidden;
    background-color: #333;
}

.carousel-container * {
    user-select: none;
}

.carousel-slide {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide > * {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.carousel-slide > *:first-of-type {
    object-fit: cover;
}

.carousel-slide > *.active {
    opacity: 1;
    display: block;
}

.carousel-container .prev, 
.carousel-container .next,
.carousel-slide .prev, 
.carousel-slide .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 40px;
    line-height: 40px;
    z-index: 10; /* Ensures the buttons are above the images */
}

.carousel-slide .prev, .carousel-container .prev {
    left: 20px;
}

.carousel-slide .next, .carousel-container .next {
    right: 20px;
}

.carousel-slide .prev:hover, 
.carousel-slide .next:hover,
.carousel-container .prev:hover,
.carousel-container .next:hover {
    background-color: rgba(0,0,0,0.8);
}

  /* Styling for the centered information box */
.carousel-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 15; /* Higher than buttons to stay on top */
    transition: top 0.5s ease, left 0.5s ease; /* Smooth transition when moving */
}

.carousel-info h2 {
    font-family: "Arsenal", sans-serif;
    font-size: 64px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.carousel-info h3 {
    font-family: "Arsenal", sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.carousel-container.non-starter .carousel-info {
    top: 10px;
    left: 10px;
    transform: scale(0.6); /* Remove centering */
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px 20px 20px;
    border-radius: 10px;
}

@media screen and (max-width: 800px) { 
    section.sites { width: 100% }
    .carousel-info h2 { font-size: 48px; } 
    .carousel-info h3 { font-size: 32px; } 

    .carousel-container.non-starter .carousel-info {
        transform: scale(0.6);
    }
}

@media screen and (max-width: 600px) { 
    .carousel-info h2 { font-size: 40px; } 

    .carousel-container .enquire {
        font-size: 16px !important;
    }

    .carousel-container.non-starter .carousel-info {
        top: 0px;
        left: -20px;
    }

    .carousel-container.non-starter .carousel-info :not(h2) {
        display: none;
    }

    .carousel-container.non-starter h2 {
        margin: 0;
    }
}

.carousel-container .enquire {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: sans-serif;
}

.carousel-container .sold {
    font-family: "Arsenal", sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


/* Dots styling */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: white;
}

section.wip {
    display: flex;
    justify-content: center;
    align-content: center;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto 60px auto;
    background: var(--quaternary-color);
    border-radius: 20px;
}

section.wip h2 {
    font-size: 40px;
    text-align: center;
    margin: auto;
    display: inline-block;
}

.contact-text {
    color: #fff;
    padding: 20px;
    margin-left: auto;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    max-width: 500px;
}

@media screen and (max-width: 400px) {
    .contact-text h2 {
        font-size: 20px;
    }

    .contact-text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 500px) {
    .contact-text {
        margin-top: -100px;
    }
}

@media screen and (min-width: 1000px) {
    .contact-text {
        margin-right: calc(0.5 * (100vw - 1000px));
    }
}

.global-data-panel {
    position: absolute;
    top: 100px;
    right: 0;
    background-color: var(--primary-color);
    font-family: 'Nanami Book', sans-serif;
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.global-data-panel a{ 
    text-decoration: none;
    color: white;
}

.global-data-panel img {
     width: 32px;
     height: 32px;
}

.global-data-panel .value {
    font-size: 20px;
}
.global-data-panel .label {
    font-size: 10px;
}

@media only screen and (min-width: 800px) {

    .global-data-panel {
        top: 130px;
        font-size: 30px;
        padding: 15px;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .global-data-panel .value {
        font-size: 30px;
    }
    .global-data-panel .label {
        font-size: 12px;
    }

    .global-data-panel img {
        width: 48px;
        height: 48px;
   }
}

@media only screen and (min-width: 1100px) {

    .global-data-panel {
        top: 170px;
        padding: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        flex-direction: column;
    }

    .global-data-panel .value {
        font-size: 40px;
    }
    .global-data-panel .label {
        font-size: 14px;
    }

    .global-data-panel img {
        width: 64px;
        height: 64px;
   }
}

.btn.btn-primary {
    display: inline;
    width: max-content;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    font-family: "Nanami Book", sans-serif;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

input, textarea, select {
    border: 1px solid var(--primary-color);
    padding: 10px;
    font-family: "Nanami Light", sans-serif;
    font-size: 16px;
}

select {
    appearance: none;
    background-image: url('/assets/icons/down-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

form label {
    font-family: "Nanami Book", sans-serif;
    font-size: 16px;
}

/* Card Slider Styles */
.slider-container {
    --handle-size: 3rem;
    position: relative;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}

.slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    margin: 0 3rem !important;
    justify-content: center;
}

/* When slides overflow, remove centering to allow normal scrolling */
.slider[data-scrollable="true"] {
    justify-content: flex-start;
}

/* Hide handles when there's no overflow */
.slider-container:has(.slider:not([data-scrollable="true"])) .handle {
    display: none;
}

.slider::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.slider::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.slider {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.handle {
    border: none;
    border-radius: 1rem;
    flex-grow: 0;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, .25);
    z-index: 10;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 0;
    transition: background-color 150ms ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius:50%;
}

.left-handle {
    left: -20px;
    background-image: url('/assets/icons/chevron-left.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.right-handle {
    right: -20px;
    background-image: url('/assets/icons/chevron-right.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.handle:hover,
.handle:focus {
    background-color: rgba(0, 0, 0, .5);
}

.slide {
    flex: 0 0 300px;
    scroll-snap-align: start;
    pointer-events: none;
}

.slide a {
    pointer-events: all;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.slide h3 {
    margin: 0;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    letter-spacing: 0.8px;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.slide p {
    margin: 10px 0;
    pointer-events: all;
}

@media (hover: none) {
    .handle {
        display: none;
    }
    
    .slider {
        margin: 0;
        padding-bottom: 0;
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.visible {
    opacity: 1;
    visibility: visible;
}

.accommodation-type {
    display: block;
    background: var(--quaternary-color);
    padding: 15px 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 15px;
    text-align: left;
    margin: 20px auto 20px 0;
}

.accommodation-type h2 {
    color: var(--primary-color) !important;
    padding: 0;
    margin: 0;
    text-align:left !important;
}

.accommodation-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}

.accommodation-page .carousel-container {
    height: initial !important;
    margin: 0 !important;
}

.accommodation-type h2 {
    font-size: 32px;
}
h3.accommodation-name {
    font-size: 24px;
    color: var(--primary-color);
}

@media (max-width: 786px) {
    .accommodation-type h2 {
        font-size:24px !important;
    }

    .accommodation-type {
        padding: 15px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 10px;
        margin: 10px auto 10px 0;
    }
}

@media (min-width: 768px) {
    .accommodation-type {
        min-width: calc(50% - 80px);
    }
    .accommodation-item {
        grid-template-columns: 1fr 1fr;
    }
    .accommodation-type h2 {
        font-size: 48px;
    }
    h3.accommodation-name {
        font-size: 32px;
    }
}

/* Mobile-first responsive slider behavior */
@media (max-width: 671px) {
    /* Hide slider on mobile */
    .events .slider-container {
        display: none;
    }
    
    /* Show mobile grid instead */
    .events .mobile-grid {
        display: block;
    }
    
    /* Style mobile grid like news but with events colors */
    .events .mobile-grid .wrapping-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        justify-content: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .events .mobile-grid .wrapping-grid > div {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .events .mobile-grid .wrapping-grid > div > a {
        display: block;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.2s ease;
    }
    
    .events .mobile-grid .wrapping-grid > div > a:hover {
        transform: translateY(-2px);
    }
    
    .events .mobile-grid .wrapping-grid img {
        width: 100%;
        height: 300px !important;
        min-height: 300px;
        max-height: 300px;
        object-fit: cover;
        border-radius: 8px 8px 0 0;
        display: block;
    }
    
    .events .mobile-grid .wrapping-grid h3 {
        margin: 0;
        background: var(--primary-color);
        color: white;
        font-size: 24px;
        letter-spacing: 0.8px;
        padding: 10px;
        text-align: center;
        border-radius: 0 0 8px 8px;
        text-wrap: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    
    .events .mobile-grid .wrapping-grid p {
        padding: 15px 0 0 0;
        margin: 0;
        color: #333;
        line-height: 1.5;
        font-weight: 500;
    }
    
    .events .mobile-grid .wrapping-grid a {
        text-decoration: none;
    }
}

/* Desktop: hide mobile grid, show slider */
@media (min-width: 672px) {
    .events .mobile-grid {
        display: none;
    }
}