body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Gabriela';
  }
/* Colors */
.bg-dark-brown {
    background-color: #493812;
}

.text-gold {
    color: #D4B773 !important;
}

.btn-gold {
    background-color: #D4B773;
    color: #493812;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: #e2c080;
    color: #493812;
}

.know-more-btn {
    display: inline-block;
    background-color: #D4B773;
    color: #493812;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    border: 1px solid #493812;
    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 {
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    font-family: 'Fugaz One';
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #493812;
    outline: 3px dashed #493812;
    outline-offset: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.book-now-button:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale3d(1.5);
}

@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: #493812;
    border: 1px solid #493812;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Fugaz One';
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }

  .right-book-now-btn:hover {
    background-color: #D4B773;
    color:#493812;
  }

  /* Sliding Form */
  .book-now-form {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden initially */
    width: 400px;
    height: 100%;
    background-color: #D4B773;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 999999;
  }

  .book-now-form.open {
    right: 0; /* Slide in when open */
  }

  .book-now-form-header{
    text-align: center;
    font-size: 28px;
    margin: 0 0 20px;
    padding: 10px 0;
    background-color: transparent;
    border-bottom: 2px solid #493812;
    border-radius: 10px;
    cursor: pointer;
  }

  .book-now-form h2 {
    font-size: 24px;
    color: #493812;
  }

  .book-now-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #2F2F2F;
  }

  .book-now-form input,
  .book-now-form textarea,
  .book-now-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }

  .book-now-form button {
    background-color: #493812;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

  .book-now-form button:hover {
    background-color: #3d2d0c;
  }

  /* Close Button */
  .book-now-form .close-btn {
    position: absolute;
    top: 15px;
    left: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #493812;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #FFFFFF;
  }
  
  .common-heading .title{
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: #493812;
    margin-bottom: 0;
  }
  .common-heading .title-light{
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: #e2c080;
    margin-bottom: 0;
    text-shadow: 1px 1px 0 #000;
  }
  .common-heading .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: #666;
    margin-bottom: 0;
  }

  .common-heading .subtitle-white {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
  }
  
  .common-heading  .divider {
    align-items: center;
  }
  
  .common-heading .divider-img {
    height: 30px;
    width: auto;
  }


/* Main Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    height: 95px;
    z-index: 999;
    transition: all 0.3s ease;
}

#main-header .top {
    border-bottom: dashed 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    transition: max-height 0.3s ease;
}


#main-header .logo {
    background: #493812;
    border-radius: 100%;
    height: 163px;
    width: 163px;
    transition: all 0.3s ease;
    z-index: 9999;

}

#main-header .logo .logo-img {
    height: 160px;
    width: 160px;
    transition: all 0.3s ease;

}

.contact-info {
    font-family: 'Kanit';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
}

.contact-info i {
    font-size: 18px;
    line-height: 27px;
}

#sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
}

.nav-item {
    border: dashed 2px #D4B773;
    border-bottom: none !important;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
    padding: 0 10px;

}

.nav-link {
    font-family: 'Fugaz One';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 21px;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;

}

.nav-item:hover,
.nav-item.active {
    border: solid 2px #D4B773;
    border-bottom: none !important;
    background: #D4B773;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: #493812;
}

.nav-btn {
    background: #D4B773;
    border-radius: 50px 0px 0px 50px;
    margin-left: 10px;
    width: 130px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease-in-out;
}

.nav-book-btn {
    font-family: 'Fugaz One';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #493812;
    text-transform: uppercase;
}

.nav-btn:hover {
    transform: scale(1.2);
}

.dropdown-menu {
    background-color: #D4B773;
    border: none;
    border-radius: 5px;
}

.dropdown-item {
    color: #493812;
}

.dropdown-item:hover {
    background-color: #493812;
    color: #FFFFFF;
}


.navbar-toggler {
    background: #493812;
    border: none;
    padding: 2px;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    border: solid 2px #D4B773;
    padding: 2px;
    border-radius: 5px;
    box-shadow: none !important;
}


@media (max-width: 768px) {
    #main-header {
        height: 55px;
    }

    #main-header .logo {
        background: #493812;
        border-radius: 100%;
        height: 80px;
        width: 80px;
        z-index: 9999;
        position: relative;
    }

    #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;
        flex-direction: row-reverse;
        background-color: none;
        box-shadow: none;
    }

    #navbarNav {
        margin-top: 8px;
        margin-right: -12px;
        padding: 5px 5px 20px 5px;
        overflow: hidden;
        background-color: #493812;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    .nav-item {
        border: none;
        box-shadow: none;
        margin-top: 5px;
    }

    .nav-link {
        font-size: 14px;
        transition: all 0.3s ease-in-out;
        padding: 5px 15px;

    }

    .nav-item:hover,
    .nav-item.active {
        border: none;
        background: #D4B773;
    }

    .nav-item:hover .nav-link,
    .nav-item.active .nav-link {
        color: #493812;
    }

    .nav-btn {
        background: #D4B773;
        border-radius: 50px 0px 0px 50px;
        margin-left: 10px;
        width: 100%;
        text-align: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease-in-out;
    }

    .nav-book-btn {
        font-family: 'Fugaz One';
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: #493812;
        text-transform: uppercase;
    }

}


/*footer*/
.footer {
    position: relative;
    padding: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #493812;
    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: #D4B773;
    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 #FFFFFF;

}

.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: #FFFFFF;
}

.footer-list li,
.footer-links li {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.footer-list li i,
.footer-links li i {
    color: #D4B773;
    margin-right: 8px;
}

.footer-list li:hover,
.footer-links li:hover {
    color: #D4B773;
    text-decoration: underline;
}

/* Contact Info Section */
.footer .contact-info {
    padding: 10px 0;
}

.footer .contact-info .info-box {
    background-color: #d4b773;
    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: #D4B773;
    border: solid 1px #493812;
    color: #493812;
    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: #493812;
    font-family: 'Gabriela';
}

.footer .contact-info .info-text h4 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: bold;
}

.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(212, 183, 115, 0.5);
    border-bottom: 2px dashed rgba(212, 183, 115, 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: #FFFFFF;
}

.footer-bottom hr {
    border-color: #D4B773;
}

@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}
}