/* Root Colors */
:root {
    /* --primary-color: #006064; */
    --primary-color: #aa2340;
    --secondary-color: #FAD7A0;
    --accent-color: #F5F2ED;
    --text-dark: #2F2F2F;
    --text-light: #FFFFFF;
    --text-muted: #666;
    --border-color: #ccc;
    --primary-dark: #3d2d0c;
    --black: #000;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Gabriela';
}

/* Colors */
.bg-dark-brown {
    background-color: var(--primary-color);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.know-more-btn {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 1px solid var(--text-light);
    padding: 8px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    align-content: center;
}

.know-more-btn::before,
.know-more-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.know-more-btn::after {
    animation-delay: 1s;
}

.know-more-btn:hover {
    border: 1px solid var(--text-dark);
    background-color: var(--text-dark);
    color: var(--text-light);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.btn_sec {
    position: relative;
    text-align: center;
    padding: 22px 0 10px 0;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Button Styles */
.book-now-button {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.book-now-button::before,
.book-now-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.book-now-button::after {
    animation-delay: 1s;
}

/* Hover Effect */
.book-now-button:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: scale3d(1.1, 1.1, 1.1);
}

@media (max-width: 768px) {
    .book-now-button {
        padding: 5px 15px;
        font-size: 16px;
        border-radius: 20px;
        text-wrap: nowrap;
    }
}

.right-book-now-btn {
    position: fixed;
    right: -35px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s, color 0.3s;
}

.right-book-now-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.right-book-now-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.text-justify {
    text-align: justify;
}

.common-heading .title {
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.common-heading .title-light {
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
    text-shadow: 1px 1px 0 var(--black);
}

.common-heading .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0;
}

.common-heading .subtitle-white {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}

.common-heading .divider {
    align-items: center;
}

.common-heading .divider-img {
    height: 30px;
    width: auto;
}


/* Main Header Rewrite */
#main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

.desktop-split-header .top-header-bar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--secondary-color);
}

.main-navbar-bar {
    z-index: 1000;
}

.main-navbar-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-navbar-bar.is-sticky .nav-spacer {
    flex-grow: 0 !important;
}

.main-navbar-bar.is-sticky .sticky-book-now {
    max-width: 350px !important;
    opacity: 1 !important;
}

.transition-all {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info {
    font-family: 'Kanit';
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
}

.contact-info:hover {
    color: var(--text-dark);
}

.social-icons a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-dark);
    transform: scale(1.2);
}

.contact-info i {
    font-size: 18px;
    line-height: 27px;
    color: var(--primary-color) !important;
}

#sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: top 0.3s ease-in-out;
}

.nav-item {
    border: none;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    gap: 20px;
}

.nav-link {
    font-family: 'Kanit', sans-serif;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 21px;
    color: var(--text-light);
    transition: all 0.3s ease-in-out;

}

.nav-item:hover,
.nav-item.active {
    border-bottom: solid 2px var(--secondary-color);
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--secondary-color) !important;
}

.nav-btn {
    background: var(--primary-color);
    border-radius: 50px;
    margin-left: 10px;
    padding: 5px 20px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    align-content: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    /* keep button above background ripples */
}

/* Pseudo elements for founder-img-style ripple animation */
.nav-btn::before,
.nav-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.nav-btn::after {
    animation-delay: 1s;
}

@keyframes navBtnRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.nav-book-btn {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: auto;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.nav-btn:hover .nav-book-btn {
    color: var(--text-dark);
}

/* Secondary Button Option (Gold/Secondary Color base with same ripples) */
.nav-btn.nav-btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary .nav-book-btn {
    color: var(--primary-color);
}

.nav-btn.nav-btn-secondary::before,
.nav-btn.nav-btn-secondary::after {
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary:hover .nav-book-btn {
    color: var(--secondary-color);
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-item {
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}


.navbar-toggler {
    background: var(--primary-color);
    border: none;
    padding: 2px;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    border: solid 2px var(--secondary-color);
    padding: 2px;
    border-radius: 5px;
    box-shadow: none !important;
}

/* Extracted Header Inline Styles */
.top-logo-img {
    height: 80px;
    width: auto;
}

.contact-section {
    flex: 1;
    text-align: center;
}

.contact-text {
    color: var(--text-dark) !important;
    font-size: 14px;
}

.top-social-icons a {
    color: var(--primary-color) !important;
}

.top-book-btn {
    font-size: 14px;
}

.nav-spacer {
    flex-grow: 1;
}

.mobile-book-btn {
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
}

.nav-right {
    flex-grow: 1;
}

.sticky-book-now {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .mobile-logo-img {
        height: 60px;
        width: auto;
        background: white;
        border-radius: 0 0 10px 10px;
        padding: 5px;
    }

    .mobile-menu-95 {
        width: 95% !important;
        margin: 0 auto !important;
    }

    .top {
        display: none !important;
    }

    #main-header {
        height: auto;
    }

    #main-header .logo {
        height: 80px;
        width: 80px;
        z-index: 9999;
        position: relative;
        padding: 0;
    }

    #main-header .logo .logo-img {
        height: 78px;
        width: 78px;
    }

    .contact-info {
        font-family: 'Kanit';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
    }

    .contact-info i {
        font-size: 12px;
        line-height: 12px;
    }

    .social-icons {
        gap: 5px;
    }

    .top {
        display: none !important;
    }

    #sticky-header {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background-color: transparent;
        box-shadow: none;
        padding: 10px 0;
    }

    #navbarNav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100vw;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        background-color: var(--primary-color);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        z-index: 9990;
        padding: 20px 15px 30px 15px;
    }

    .nav-item {
        border: none;
        box-shadow: none;
        margin-top: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
    }

    .nav-link {
        font-size: 16px;
        transition: all 0.3s ease-in-out;
        padding: 5px 15px;
    }

    .nav-item:hover,
    .nav-item.active {
        border: none;
        background: var(--secondary-color);
    }

    .nav-item:hover .nav-link,
    .nav-item.active .nav-link {
        color: var(--text-dark) !important;
    }

    .nav-btn {
        background: var(--secondary-color);
        border-radius: 5px;
        margin: 15px 0 0 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease-in-out;
        padding: 5px 10px;
    }

    .nav-book-btn {
        font-family: 'Kanit', sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: auto;
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.1);
        /* Slightly darker inner bg for dropdowns */
        border-radius: 0;
        padding-left: 15px;
    }

    .dropdown-item {
        color: var(--text-dark);
        padding: 10px 15px;
    }

}


/*footer*/
.footer {
    position: relative;
    padding: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    z-index: 1;
    bottom: 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/logo-bg.png) no-repeat center;
    background-size: contain;
    opacity: 0.2;
    /* 20% opacity */
    z-index: -1;
    /* Places the background behind the content */
}

.footer-title {
    color: var(--secondary-color);
    font-family: 'Kanit';
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 172px;
    height: 0px;
    left: 53px;
    top: 50.5px;
    border: 2px solid var(--text-light);

}

.footer-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Gabriela';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: var(--text-light);
}

.footer-list li,
.footer-links li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-list li i,
.footer-links li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-list li:hover,
.footer-links li:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Info Section */
.footer .contact-info {
    padding: 10px 0;
}

.footer .contact-info .info-box {
    background-color: var(--secondary-color);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.footer .contact-info .info-box:hover {
    transform: translateY(-5px);
}

.footer .contact-info .icon {
    background-color: var(--secondary-color);
    border: solid 1px var(--primary-color);
    color: var(--text-dark);
    padding: 20px;
    height: 25px;
    width: 25px;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: -22px;
    /* Positions the icon outside the box */
    top: 0;
    transform: translateY(-50%);
}

.footer .contact-info .info-text {
    color: var(--text-dark);
    font-family: 'Gabriela';
}

.footer .contact-info .info-text h4 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: bold;
    word-break: break-word;
}

.footer .contact-info .info-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: block;
    padding: 20px 0;
    border-top: 2px dashed rgba(255, 160, 122, 0.5);
    border-bottom: 2px dashed rgba(255, 160, 122, 0.5);
    text-align: center;
    align-items: center;
    width: 60%;
    margin: 0 auto;
}

.footer-social-icons a i {
    font-size: 26px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-bottom {
    padding-bottom: 10px;
}

.footer-bottom p {
    font-size: 14px;
    font-family: 'Gabriela';
    margin: 0;
    color: var(--text-light);
}

.footer-bottom hr {
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-social {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        column-gap: 20px;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (min-width:768px) {
    .order-md-6 {
        order: 6 !important
    }

    .order-md-7 {
        order: 7 !important
    }

    .order-md-8 {
        order: 8 !important
    }
}

@media (max-width:767.9px) {
    .order-6 {
        order: 6 !important
    }

    .order-7 {
        order: 7 !important
    }

    .order-8 {
        order: 8 !important
    }
}

/* Breadcrumb Design */
.breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
}

.breadcrumb ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb ul li {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(250, 215, 160, 0.5);
}

.breadcrumb ul li:not(:last-child)::after {
    content: '\00bb';
    /* » */
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1;
}

.breadcrumb ul li:last-child {
    color: var(--secondary-color);
    font-weight: 700;
    pointer-events: none;
}

/* Mobile Responsiveness for Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb {
        bottom: 15px;
        position: relative;
        transform: none;
        left: 0;
        margin-top: 10px;
    }

    .breadcrumb ul {
        gap: 8px !important;
    }

    .breadcrumb ul li {
        font-size: 14px !important;
    }

    .breadcrumb ul li:not(:last-child)::after {
        margin-left: 8px;
        font-size: 14px;
        line-height: 0.1;
    }
}