@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

:root {
    --primary: #005952;
    --primary50: #00595288;
    --secondary: #7B2E00;
    --bg: #837565;
    --dark-bg: #636363;
    --light-bg: #C4C3C5;
    --lighter-bg: #f2f2f2;
    --white: #ffffff;
    --black30: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
}

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

h1 {
    font-weight: 600;
}

h6 {
    font-size: 1.2rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }
}

.bg-primary {
    background-color: var(--primary) !important;
    color: var(--white);
}

.bg-secondary {
    background-color: var(--secondary) !important;
    color: var(--white);
}

.bg-dark {
    background-color: var(--dark-bg) !important;
    color: var(--white);
}

.bg-lighter {
    background-color: var(--lighter-bg) !important;
}


.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

/* ============== 1. PRELOADER CLASSES ================= */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader img {
    width: 10%;
}

@media (max-width: 767px) {
    .preloader img {
        width: 30%;
    }
}

/* ============== END OF PRELOADER CLASSES ================== */

/* ============== SCROLL TO TOP BUTTON CLASSES ================== */

.top-btn {
    transform: scale(0);
    transition: transform 300ms, background-color 300ms;
    position: fixed;
    bottom: 5%;
    right: 2%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid var(--white);
    box-shadow: 0 0 5px #0000004f;
    color: #fff;
    background-color: var(--dark-bg);
    font-size: 25px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    z-index: 300;
}

.top-btn:hover {
    background-color: #fff;
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.show-top-btn {
    transform: scale(1);
}

/* ============== END OF SCROLL TO TOP BUTTON CLASSES ================== */

/* Header */

header {
    position: relative;
    height: 100vh;
}

header.small-header {
    height: auto;
}

.page-title {
    padding: 100px 0;
    text-align: center;
    background-image: url('../images/camping1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    color: var(--white);
    text-shadow: 2px 2px 4px #000000;
}

.page-title h1 {
    margin: 0;
}

/* Breadcrumbs */

.breadcrumbs-list li {
    font-family: 'Kalam', cursive;
    font-weight: 300;
    color: var(--primary);
    display: inline-block;
    font-size: 1.6rem;
    margin-right: 10px;
}

.breadcrumbs-list li.active {
    color: var(--secondary);
    font-weight: 400;
}

/* Footer */

.footer-content {
    background-color: var(--dark-bg);
    color: var(--white);
}

footer ul {
    margin: 0;
    padding: 0;
}

footer .footer-links {
    font-size: 1.2rem;
    padding: 5px 0;
}

footer .footer-links a {
    transition: color .3s;
}

footer .footer-links a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
}

.newsletter-submit-btn {
    height: 38px;
    margin-left: 10px;
    background-color: #6e6e6e;
    border: none;
}

.newsletter-submit-btn:hover {
    background-color: var(--secondary);
}

.newsletter-submit-btn img {
    height: 100%;
    width: auto;
    margin: auto;
}

/* Buttons */

.button-centered {
    text-align: center;
}

.button a {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    padding: 7px 50px;
    font-size: 1.5rem;
    border-radius: 10px;
    transition: all .3s;
}

.button.small a {
    font-size: 1.2rem;
}

.red-button a {
    background-color: var(--secondary);
}

.red-button a:hover {
    background-color: var(--primary);
}

.teal-button a {
    background-color: var(--primary);
}

.teal-button a:hover {
    background-color: var(--secondary);
}

/* Table Classes */

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2rem;
}

th {
    color: var(--lighter-bg);
}

.table-bordered-primary tr {
    border-bottom: 1px solid var(--primary);
}

th, td {
    padding: 8px 12px;
}

.table-header {
    font-size: 20px;
    font-weight: bold;
}

.tr-bg:nth-child(even) {
    background-color: var(--lighter-bg)
}

th {
    background-color: var(--primary);
    color: white;
}

.table-footer {
    font-style: italic;
    text-align: center;
    color: gray;
}

.table-responsive th {
    min-width: 170px;
}

table p {
    margin: 0 !important;
    padding: 0 !important;
}

/* LightGallery plugin style overrides */

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
    .lg-img-wrap img {
        max-width: 75% !important;
        max-height: 80% !important;
        object-fit: cover;
        border-radius: 15px;
    }
}

