﻿/*On Page style*/


@font-face {
    font-family: 'Trajan Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('font/Trajan Pro Regular'), url('font/TrajanPro-Regular.woff') format('woff');
}


@font-face {
    font-family: 'Trajan Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('font/Trajan Pro Bold'), url('font/TrajanPro-Bold.woff') format('woff');
}

body {
    font-family: 'Candara', sans-serif;
    background-color: #FEFEE2;
    color: #000000;
}

.banner-area {
    margin-bottom: 30px;
}

    .banner-area img {
        width: 100%;
    }

.titleSlider2 h1 {
    font-family: 'Trajan Pro Regular';
}

.titleSlider2 h2 {
    font-family: 'Trajan Pro Regular';
}

.navbar {
    background-color: #FEFEE2;
}

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: #ffb03b;
    }



.navbar.navbar-expand-lg.navbar-light {
    border-bottom: 6px solid #ff8c0f;
}

.container.position-relative {
    min-height: 56px;
}

@media (min-width: 992px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }

    .navbar-nav {
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 991px) {

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        position: static;
        transform: none;
        margin: auto;
    }

        .navbar-brand img {
            width: 200px;
        }

    .navbar-toggler {
        order: 2;
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .navbar-collapse {
        text-align: center;
    }

    .navbar-brand {
        position: absolute;
        transform: none;
        margin: 0px -100px;
        left: 50%;
        top: 0;
    }
}

.accordion-button:not(.collapsed) {
    font-weight: bold;
    color: #6B3A2D;
    background-color: #FFB03B;
    box-shadow: 0 4px 8px #0000001A;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: hotpink;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

    #myBtn:hover {
        background-color: #555;
    }

/* ------------------------------------------------------END ON PAGE */

/* 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-fontt: "Satisfy", sans-serif;
    --heading-font: 'Trajan Pro Regular';
    --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: #FEFEE2; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #433f39; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ffb03b; /* 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: #FEFEE2; /* 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: #FEFEE2; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #FEFEE2; /* The default color of the main navmenu links */
    --nav-hover-color: #ffb03b; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #FEFEE2; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #FEFEE2; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ffb03b; /* 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. */

.light-background {
    --background-color: #fffaf3;
    --surface-color: #FEFEE2;
}

.dark-background {
    --background-color: #1e160d;
    --default-color: #FEFEE2;
    --heading-color: #FEFEE2;
    --surface-color: #42301c;
    --contrast-color: #FEFEE2;
}

/* 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 Footer
--------------------------------------------------------------*/

.footer {
    background-color: #FEFEE2;
    color: #000000;
    padding: 20px 0;
}

    .footer a {
        color: #000000;
        text-decoration: none;
    }

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


.footer {
    color: var(--default-color);
    background-color: #F4F4D3; /*var(--background-color);*/
    font-size: 14px;
    padding: 40px 0 0 0;
    position: relative;
}

    .footer .icon {
        color: var(--accent-color);
        margin-right: 15px;
        font-size: 24px;
        line-height: 0;
    }

    .footer h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer .address p {
        margin-bottom: 0px;
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

    .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: 5px;
        font-size: 13px;
    }
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

    .page-title .heading {
        padding: 160px 0 60px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .page-title .heading h1 {
            font-size: 38px;
            font-weight: 700;
        }

    .page-title nav {
        background-color: color-mix(in srgb, var(--default-color), transparent 90%);
        padding: 20px 0;
    }

        .page-title nav ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 16px;
            font-weight: 400;
        }

            .page-title nav ol li + li {
                padding-left: 10px;
            }

                .page-title nav ol li + li::before {
                    content: "/";
                    display: inline-block;
                    padding-right: 10px;
                    color: color-mix(in srgb, var(--default-color), transparent 70%);
                }

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

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 105px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
        font-family: var(--default-font);
    }
   

    .section-title div {
        color: var(--heading-color);
        margin: 10px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        font-family: var(--heading-font);
    }

        .section-title div .description-title {
            color: var(--accent-color);
        }

    .section-title h1 {
        color: var(--heading-color);
        margin: 10px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        font-family: var(--heading-font);
    }

        .section-title h1 .description-title {
            color: var(--accent-color);
        }

   

*--------------------------------------------------------------
# Booking
--------------------------------------------------------------*/
.booking .reservation-img {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.booking .reservation-form-bg {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.booking .php-email-form {
    padding: 30px;
}

@media (max-width: 575px) {
    .booking .php-email-form {
        padding: 20px;
    }
}

.booking .php-email-form input[type=text],
.booking .php-email-form input[type=email],
.booking .php-email-form input[type=number],
.booking .php-email-form input[type=date],
.booking .php-email-form input[type=time],
.booking .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 20%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .booking .php-email-form input[type=text]:focus,
    .booking .php-email-form input[type=email]:focus,
    .booking .php-email-form input[type=number]:focus,
    .booking .php-email-form input[type=date]:focus,
    .booking .php-email-form input[type=time]:focus,
    .booking .php-email-form textarea:focus {
        border-color: var(--accent-color);
    }

    .booking .php-email-form input[type=text]::placeholder,
    .booking .php-email-form input[type=email]::placeholder,
    .booking .php-email-form input[type=number]::placeholder,
    .booking .php-email-form input[type=date]::placeholder,
    .booking .php-email-form input[type=time]::placeholder,
    .booking .php-email-form textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.booking .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 4px;
}

    .booking .php-email-form button[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }
/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
    overflow: hidden;
}

    .specials .nav-tabs {
        border: 0;
    }

    .specials .nav-link {
        border: 0;
        padding: 12px 15px 12px 0;
        transition: 0.3s;
        color: var(--default-color);
        border-radius: 0;
        border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
        font-weight: 600;
        font-size: 15px;
    }

        .specials .nav-link:hover {
            color: var(--accent-color);
        }

        .specials .nav-link.active {
            color: var(--accent-color);
            border-color: var(--accent-color);
            background-color:  var(--background-color);
        }

    .specials .tab-pane.active {
        animation: fadeIn 0.5s ease-out;
    }

    .specials .details h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .specials .details p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

        .specials .details p:last-child {
            margin-bottom: 0;
        }

@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }

        .specials .nav-link.active {
            color: var(--accent-color);
            background:#000000;
        }
}