/**
* Template Name: Tour
* Template URL: https://bootstrapmade.com/tour-bootstrap-travel-website-template/
* Updated: Jul 01 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #051e23;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1c4b56;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #008cad;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(255,
            255,
            255,
            0.7);
    /* The default color of the main navmenu links */
    --nav-hover-color: #32d5d2;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-color: #051e23;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #008cad;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.dark-background {
    --background-color: #031013;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: rgba(0, 0, 0, 0.26);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

@media screen and (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media screen and (min-width: 1200px) {
    .navmenu {
        padding: 0;
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu .dropdown div,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>div,
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .toggle-dropdown {
        padding-left: 2px;
        transition: transform .5s ease;
    }

    .navmenu ul li:hover .toggle-dropdown {
        transform: rotate(180deg);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media screen and (max-width: 1199px) {
    .mobile-nav-toggle {
        font-size: 15px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    #toggle-close {
        background-color: lightseagreen;
        border-radius: 100%;
        width: 30px;
        height: 30px;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
        position: fixed;
        overflow: auto;
        inset: 0;
        transform: translateY(-100%);
        background-color: white;
        transition: transform 0.5s;
    }

    .navmenu>ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        list-style: none;
        padding: 20px 10px 10px 20px;
    }

    .navmenu-title {
        color: black;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        transition: 0.3s;
    }

    .navmenu a:hover,
    .navmenu .dropdown .dropdown-active li a:hover,
    .navmenu .dropdown .dropdown-active li a:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown ul {
        display: flex;
        flex-direction: column;
        padding-inline: 4px;
        margin-left: 24px;
        border-left: 2px solid var(--accent-color);
        gap: 12px;
        z-index: 99;
        transition: all 0.5s;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform-origin: top;
    }

    .navmenu .dropdown ul.dropdown-active {
        max-height: max-content;
        opacity: 1;
    }

    .navmenu .dropdown ul li a {
        color: var(--nav-dropdown-color);
    }

    .toggle-dropdown {
        cursor: pointer;
        color: var(--nav-dropdown-color);
        transition: transform .5s ease;
    }

    .toggle-dropdown-active {
        transform: rotate(180deg);
    }

    .mobile-nav-active .navmenu {
        transform: translateY(0);
    }

    .mobile-navmenu-decoration {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        aspect-ratio: 1/1;
    }

    .mobile-navmenu-decoration .circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.6;
        width: 100%;
        height: 100%;
        background: lightblue;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer.footer-teal {
    background: linear-gradient(180deg, #078ea2, #057c8e);
    color: #eaf8fb;
}

.footer.footer-teal .sitename,
.footer.footer-teal strong {
    color: #fff;
}

.footer.footer-teal p,
.footer.footer-teal li,
.footer.footer-teal .credits {
    color: #eaf8fb;
}

.footer.footer-teal a {
    color: #fff;
    opacity: .95;
}

.footer.footer-teal a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer.footer-teal .footer-top,
.footer.footer-teal .copyright {
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links p {
    font-size: 16px;
    font-weight: bold;
}

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul a {
    color: white;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    opacity: 75%;
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top svg {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Global Page Titles
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: black;
    opacity: 75%;
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}