﻿/*
        Holiday Travel Park
        PHD Consulting
        Copyright 2025
    */

:root {
    --font-header: 1rem;
    --font-nav: clamp(1.125rem, 0.9028rem + 0.463vw, 1.25rem);
    --font-nav-dropdown: clamp(1rem, 0.7778rem + 0.463vw, 1.125rem);
    --font-nav-icon: 2.25rem;
    --font-small: clamp(0.875rem, 0.6528rem + 0.463vw, 1rem);
    --font-medium: clamp(1rem, 0.7778rem + 0.463vw, 1.25rem);
    --font-large: clamp(1.25rem, 0.9028rem + 0.463vw, 1.375rem);
    --font-footer: clamp(0.875rem, 0.653rem + 0.463vw, 1rem);
    --font-h6: clamp(0.875rem, 0.653rem + 0.463vw, 1rem);
    --font-h5: clamp(1rem, 0.7778rem + 0.463vw, 1.125rem);
    --font-h4: clamp(1.125rem, 0.6806rem + 0.9259vw, 1.375rem);
    --font-h3: clamp(1.375rem, 0.9306rem + 0.9259vw, 1.625rem);
    --font-h2: clamp(1.625rem, 1.1806rem + 0.9259vw, 1.875rem);
    --font-h1: clamp(1.875rem, 1.4306rem + 0.9259vw, 2.125rem);
}

html {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

body {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    margin: 0 0;
    padding: 0 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: var(--font-medium);
    font-weight: normal;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #202020;
}

#frmMaster {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
}

/* Some Bootstrap Fixes */

.container-xl {
    max-width: 1366px;
}

hr {
    opacity: 1;
}

.modal {
    z-index: 99990;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

textarea {
    resize: none;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card .card-body {
    padding: 25px 25px;;
}

.btn-primary,
.btn-primary:visited {
    color: #FFFFFF;
    font-weight: bold;
    background-color: #144F37;
    border-color: #003720;
}

.btn-primary:hover {
    background-color: #003720;
    border-color: #003720;
}

.shadow {
    box-shadow: 0px 5px 15px -5px rgba(0,0,0,0.2) !important;
}

figure {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

figure figcaption {
    display: none;
}

figure img {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/* ADA Skip Links */

.skip_links {
    text-align: left;
    position: fixed;
    z-index: 99999;
}

.skip_links a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip_links a:focus, .skip_links a:active {
    position: static;
    left: 5px;
    top: 5px;
    width: auto;
    height: auto;
    padding: 1rem 1rem;
    overflow: visible;
    text-decoration: none;
    color: #000000;
    border: 1px solid #FFFFFF;
    background-color: #FCFCFC;
} 

/* Header */

header {
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 9999;
    font-size: var(--font-header);
    line-height: 1.4;
    color: #FFFFFF;
    background-color: #008080;
}

header a:not(.btn),
header a:not(.btn):visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:not(.btn):hover {
    color: #FFFFFF;
}

header i {
    color: #FFFFFF;
}

    header ul.header-contact {
        font-size: 110%;
        font-weight: bold;
        line-height: 1.6;
    }

        header ul.header-contact a i.fa-square-facebook,
        header ul.header-contact a:visited i.fa-square-facebook,
        header ul.header-contact a:hover i.fa-square-facebook {
            color: #FFFFFF;
        }

        @media (max-width: 1199px) {
            /* Add a little extra padding to the header on mobile / tablet sizes */

            header {
                padding-top: 25px;
                padding-bottom: 25px;
            }
        }

/* Navbar */

nav {
    z-index: 9999;
    color: #FFFFFF;
    background-color: #202020;
    box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.1);
}

/* Main */

main {
    color: #000000;
    background-color: #FFFFFF;
}

/* Footer */

footer {
    font-size: var(--font-footer);
    color: #FFFFFF;
    background-color: #202020;
    background: linear-gradient(to bottom, #202020 0%, #303030 75%);
}

footer .footer-main {
    padding: 45px 15px;
}

    footer .footer-copyright {
        padding: 30px 15px;
        text-align: center;
        background-color: #202020;
        border-top: 1px solid transparent;
        border-image-source: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.33) 50%, rgba(255,255,255,0.0) 100%);
        border-image-slice: 5;
    }

footer a:not(.btn),
footer a:visited:not(.btn) {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover:not(.btn) {
    color: #FFFF00;
    text-decoration: none;
}

footer ul.fa-ul {
    margin-left: 2rem;
}

footer ul.fa-ul li {
    line-height: 1.8;
}

footer ul.fa-ul li:last-child {
    padding-bottom: 0;
}

footer ul.fa-ul span.fa-li {
    width: 2rem;
}

footer h2 {
    margin-bottom: 15px;
    padding-bottom: 2px;
    font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    font-size: var(--font-h4);
    font-weight: bold;
    line-height: 1.2;
    border-bottom: 2px solid #FFFFFF;
}

/* Back to Top Button */

.back-to-top {
    z-index: 9999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
}

/* Main Content */

main section .container-xl,
main section .container-fluid {
    padding: 45px 15px;
}

main section.hero .container-xl,
main section.hero .container-fluid {
    padding: 0 0;
}

main a:not(.btn),
main a:not(.btn):visited {
    color: #3333FF;
    text-decoration: none;
}

main a:not(.btn):hover {
    color: #FF3333;
    text-decoration: none;
}

main p, ul, ol {
    margin-bottom: 1.5rem;
}

main ul, ol {
    padding-left: 1.5rem;
}

main h1, main h2, main h3, main h4, main h5, main h6,
main .h1, main .h2, main .h3, main .h4, main .h5, main .h6 {
    margin-bottom: 1.5rem;
    font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    font-weight: bold;
    text-wrap: balance;
}

main h1, main .h1 {
    font-size: var(--font-h1);
    line-height: 1.2;
}

main h1 .subtitle, main .h1 .subtitle {
    font-size: var(--font-h2);
    font-weight: bold;
    color: #606060;
    line-height: 1.3;
}

main h2, main .h2 {
    font-size: var(--font-h2);
    line-height: 1.3;
}

main h3, main .h3 {
    font-size: var(--font-h3);
    line-height: 1.4;
}

main h4, main .h4 {
    font-size: var(--font-h4);
    line-height: 1.5;
}

main h5, main .h5 {
    font-size: var(--font-h5);
    line-height: 1.6;
}

main h6, main .h6 {
    font-size: var(--font-h6);
    line-height: 1.7;
}

main small, main .small {
    font-size: var(--font-small);
    line-height: 1.6;
}

main .big {
    font-size: var(--font-large);
    line-height: 1.6;
}

main .page-titles {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Multi Column Lists */

.list-four-col {
    columns: 4;
    column-gap: 30px;
}

.list-three-col {
    columns: 3;
    column-gap: 30px;
}

.list-two-col {
    columns: 2;
    column-gap: 30px;
}

@media (max-width : 991px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 2;
    }

}

@media (max-width : 767px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 1;
    }

}

/* Swiper */

.swiper-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #878057;
}

.swiper-slide {
    text-align: center;
}

    .swiper-slide .img-fluid {
        width: 100%;
        height: auto;
    }

    .swiper-slide .slide-title {
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        font-size: var(--font-h1);
        font-weight: bold;
        color: #FFFFFF;
        line-height: 1.5;
        text-align: center;
    }

        .swiper-slide .slide-title .slide-title-text {
            align-self: center;
            padding: 1rem 8rem;
            background-color: rgba(0,0,0,0.75);
            background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 20%,rgba(0,0,0,0.75) 80%,rgba(0,0,0,0) 100%);
        }

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255,255,255,0.75);
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #000000;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width : 767px) {

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none;
    }

    .swiper-slide {
        position: relative;
        display: flex;
        flex-direction: column;
    }

        .swiper-slide img {
            position: relative;
        }

        .swiper-slide .slide-title {
            position: relative;
            top: initial;
            right: inherit;
            bottom: inherit;
            left: initial;
            font-size: var(--font-h4);
            line-height: 1.5;
            background-color: #404040;
        }

            .swiper-slide .slide-title .slide-title-text {
                margin-bottom: 0;
                padding: 16px 16px;
                background-color: transparent;
                background: none;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;
            }
}


/* Marquee */

.marquee-bg {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    background-color: #008080;
}

    .marquee-bg .container-xl .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

.marquee-wrapper {
    overflow: hidden;
    display: none;
    width: 100%;
    background-color: transparent;
}

.marquee {
    font-family: Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    font-weight: bold;
    font-size: var(--font-h1);
    color: #FFFFFF;
    line-height: 2.5;
}

.marquee-background > .container-xl {
    padding-left: 0;
    padding-right: 0;
}

    .marquee-background > .container-xl > .row {
        margin-left: 0;
        margin-right: 0;
    }

        .marquee-background > .container-xl > .row > .col-12 {
            padding-left: 5px;
            padding-right: 5px;
        }

@media only screen and (max-width : 991px) {

    .marquee-background {
        top: 0;
        margin-bottom: 0;
    }

        .marquee-background .container-xl {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .marquee-background > .container-xl > .row > .col-12 {
            width: 100%;
        }

    .marquee-wrapper {
        border: 0 none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }
}

/* Table Customizations */

.table thead tr th {
    color: #FFFFFF;
    background-color: #008080;
    border-color: #008080;
}

/* List Customizations */

ul.category-list{
    margin-left:1.75rem !important
}

    ul.category-list li {
        font-size: calc(var(--font-medium) * .9);
    }

/* Colored Sections */

section.blue-bg {
    background-color: #f2f9f9;
}

section.blue-bg a:not(.btn),
section.blue-bg a:not(.btn):visited {
    color: #CC0000;
}

section.blue-bg a:not(.btn):hover {
    color: #0000CC;
}

section.green-bg {
    background-color: #eefcd2;
}

section.sand-bg {
    color: #000000;
    background-color: #F4E1C1;
    background-image: url('/Images/Layout/sand-bg.webp');
}

section.sand-bg h2{
    color:#ffffff !important;
}

section.sand-bg .card {
    background-color: rgba(255,255,255,0.90);
    border-color: #FFFFFF;
}

section.sand-bg .card h2{
    color:#000000 !important;
}

    section.sand-bg .table thead tr th {
        color: #FFFFFF;
        background-color: #008080;
        border-color: #008080;
    }
    section.sand-bg .table tr td,
    section.sand-bg .table.table-striped tr td {
        background-color: rgba(255,255,255,0.33);
    }

/* Home Page */

.overlay {
    position: relative;
    z-index: 9990;
    top: -160px;
    margin-top: 0;
    margin-bottom: -145px;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 30px;
    background-color: #f2f9f9;
    box-shadow: 0px -5px 3px 0px rgba(0,0,0,0.125);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .overlay a .card,
    .overlay a .card:visited {
        color: #9B111E;
        background-color: #FFFFFF;
        border-radius: 8px;
        transition: background-color 300ms ease-in-out;
        box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.125);
    }

        .overlay a .card:hover {
            color: #FFFFFF;
            background-color: #9B111E;
        }

.overlay .overlay-icon {
    margin-bottom: 1rem;
    font-size: 4rem;
}

.overlay .overlay-title {
    margin-bottom: 1.25rem;
    font-size: var(--font-h5);
    font-weight: bold;
    line-height: 1.3;
    text-wrap:balance;
}

@media (max-width : 991px) {

    .overlay {
        top: -95px;
        margin-bottom: -80px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .overlay .overlay-icon {
        margin-bottom: 1rem;
        font-size: 3rem;
    }

    .overlay .overlay-title {
        margin-bottom: 1.25rem;
        font-size: calc(var(--font-h5) * 0.9);
        font-weight: bold;
        line-height: 1.3;
        text-wrap:balance;
    }

}

/* Contact Page */

.ratio.google-map {
    padding-bottom: 33%;
    border-top: 4px solid #FFFFFF;
    background-color: #FFFFFF;
}

@media (max-width : 767px) {

    .ratio.google-map {
        padding-bottom: 75%;
    }

}

/* Event Calendar */

.event-calendar-desktop {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}

.event-calendar-desktop iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-calendar-mobile {
    position: relative;
    width: 100%;
    height: 800px;
}

.event-calendar-mobile iframe {
    width: 100%;
    height: 800px;
}

        /* News */

        .news-summary-title {
            font-weight: bold;
            margin-bottom: 4px;
        }

        .news-summary-content {
            text-overflow: ellipsis;
        }

        .news-summary-readmore {
            text-align: end !important;
        }

        .highlights .card-body {
            padding-top: 15px;
            padding-bottom: 10px;
        }

        .card-header-info {
            background-color: #008080;
            color: #fff !important;
        }

            .card-header-info a {
                color: #fff !important;
            }

        @media (min-width: 992px) {

            .collapse.collapse-on-mobile {
                display: block;
                height: auto !important;
                visibility: visible;
            }
        }
        /* Buttons */

        .btn-login {
            background-color: #008080;
            border-color: #008080;
            color: #fff !important;
        }

            .btn-login:hover {
                background-color: #004D4D !important;
                border-color: #004D4D !important;
                color: #fff !important;
            }


/* Cycle slideshow fix */

.cycle-slideshow {
    visibility: hidden;
}

    .cycle-slideshow.cycle-loaded {
        visibility: visible;
    }
