:root {
    --primary-color: #2a0401;
    --secondary-color: #bc944c;
}

body {
    font-family: 'Lora', serif;
}
.secondary-color {
    color: var(--secondary-color) !important;
}

/* HEADER */
.header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}

.navbar-nav {
    gap: 18px;
}

.navbar {
    background: #fff;
    padding: 45px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.nav-link {
    position: relative;
    color: var(--primary-color);
    margin: 0 14px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 12px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-center img {
    height: 130px;
}

@media(max-width:992px) {
    .logo-center {
        position: static;
        transform: none;
        text-align: center;
        margin: 10px 0;
    }

    .navbar {
        padding: 5px 0;
    }
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle {
    position: relative;
}

.nav-link.dropdown-toggle::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::before {
    transform: translateY(-50%) rotate(-135deg);
    border-color: var(--secondary-color);
}

.dropdown-menu {
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    padding: 15px 0;
    min-width: 220px;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-item.active, .dropdown-item:active,
.dropdown-item:focus {
    background: #D8CCB7;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-toggler {
    border: 1px solid var(--secondary-color);
    padding: 5px 10px;
    font-size: 20px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
}

#menuClose {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu .nav-link {
    color: var(--primary-color);
    display: block;
}

.mobile-menu .dropdown-toggle::after {
    all: unset;
}

.mobile-menu .dropdown-toggle:hover::after {
    border-color: #fff;
}

.mobile-menu .nav-link.dropdown-toggle::before {
    display: none !important;
}

.mobile-menu .nav-item.dropdown>.dropdown-toggle::after {
    content: "";
    position: absolute;
    color: var(--secondary-color);
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.mobile-menu .nav-item.dropdown.open>.dropdown-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
    border-color: #fff;
}

.mobile-menu .dropdown-toggle:hover::after {
    border-color: #fff;
}

.mobile-menu .nav-link.active {
    background: #5a0f0f;
    color: #fff;
    padding-left: 10px;
}

.mobile-menu .nav-link:hover {
    background: #5a0f0f !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.mobile-menu .dropdown-menu {
    position: static;
    background: transparent;
    padding-left: 15px;
    display: none;
}

.mobile-menu .dropdown-item {
    color: #fff;
    padding: 8px 0;
}

.mobile-menu .dropdown.open .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown-toggle {
    position: relative;
    padding-right: 30px;
}

.mobile-menu .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.mobile-menu .dropdown.open .dropdown-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
    border-color: #fff;
}

.mobile-menu .dropdown-toggle:hover::after {
    border-color: #fff;
}

@media(max-width:992px) {
    .navbar-nav.d-lg-flex {
        display: none !important;
    }
}

/* HERO */
#heroSlider .carousel-item {
    height: 75vh;
    background-size: cover;
    background-position: center;
}

.carousel-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* WELCOME */
.welcome {
    text-align: center;
    padding: 60px 0;
}

.welcome h6 {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: bold;
}

.welcome h2 {
    color: var(--secondary-color);
}

.btn-outline-dark.custom-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ROOMS */
.rooms {
    background: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.room-card {
    background: #D8CCB7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card-body {
    padding: 15px 40px;
    text-align: left;
    flex-grow: 1; 
}

.room-card h4 {
    line-height: 1.4;
    /*min-height: 2.8em;*/
}

.room-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-right: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* FACILITIES */
.facilities {
    padding: 60px 0;
    text-align: center;
}

.facilities h6 {
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: bold;
}

.facilities h2 {
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--primary-color);
}

.fac-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    background: #fff;

    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.fac-box:hover {
    transform: perspective(800px) rotateX(5deg) rotateY(-5deg) translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #4b140c;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;
    font-size: 28px;

    transition: all 0.3s ease;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.fac-box:hover .icon-circle:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
    animation: zoomInOut 0.6s ease-in-out infinite;
}

/* IMAGE SECTION */
.image-wrapper {
    position: relative;
}

.main-img {
    border-radius: 120px 0 0 0;
    width: 100%;
}

.sub-img {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 70%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* FEATURE CARDS */
.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 40px 10px;
    transition: 0.3s;
    height: 250px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*.icon-circle {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background: #4b0d07;*/
/*    color: #fff;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto 10px;*/
/*    font-size: 24px;*/
/*}*/

.feature-card p {
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .sub-img {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}

/* FOOTER */
.footer-section {
    background-color: #b7924e;
    color: #000;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #000;
    display: block;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li:hover {
    padding-left: 5px;
}

/* MAP RESPONSIVE */
.map-responsive {
    overflow: hidden;
    border-radius: 8px;
}

.map-responsive iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-bottom {
    background: #2d2b2b;
    color: #fff;
    font-size: 14px;
}

.footer-bottom-link {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Banquet Section */
.banquet-section {
    background: #b7924e;
}

.banquet-content {
    max-width: 700px;
}

.section-subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
}

.banquet-title {
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--primary-color);
}

.banquet-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
}

.banquet-list {
    list-style: none;
    padding: 0;
}

.banquet-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    color: var(--primary-color);
}

.banquet-list li::before {
    /*content: "»";*/
    position: absolute;
    left: 0;
}

.banquet-btn {
    border: 1px solid #000;
    padding: 8px 20px;
    background: transparent;
    transition: 0.3s;
}

.banquet-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.banquet-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: url('../images/gallery5-asm.jpg') center/cover no-repeat;
}

@media (max-width: 992px) {
    .banquet-title {
        font-size: 32px;
    }

    .banquet-image {
        min-height: 300px;
    }

    .banquet-content {
        padding: 30px !important;
    }
    
    #heroSlider .carousel-item {
        height: 35vh;
    }
}

.gallery-title {
    color: #b7924e;
    font-weight: 600;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.glightbox-container .gslide-image img {
    max-height: 90vh !important;
    width: auto !important;
    object-fit: contain;
}

.glightbox-container .ginner-container {
    align-items: center !important;
}

body.glightbox-open {
    overflow: hidden;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
    display: block !important;
    opacity: 1 !important;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.glightbox-clean .gprev {
    left: 10px;
}

.glightbox-clean .gnext {
    right: 10px;
}

.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {

    .glightbox-clean .gprev,
    .glightbox-clean .gnext {
        width: 40px;
        height: 40px;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: url('../images/image_5.jpeg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-content {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.quote {
    font-size: 96px;
    color: var(--secondary-color);
}

.testimonial-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-content h5 {
    margin-top: 15px;
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators [data-bs-target] {
    background-color: #c59d5f;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 60px 15px;
    }

    .testimonial-content h2 {
        font-size: 26px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .quote {
        font-size: 40px;
    }
}

/* About Us */
.about-header {
    background: var(--secondary-color);
    color: #2b0f0a;
}

.heading-main {
    color: var(--secondary-color);
    font-weight: 700;
}

.intro-text {
    max-width: 1200px;
    margin: auto;
    color: #000;
    font-size: 18px;
}

.temple-content {
    background: var(--secondary-color);
    color: #2b0f0a;
}

.temple-content ul {
    padding-left: 18px;
}

.temple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-section {
    background: url('../images/image_14.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.experience-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.experience-section .container {
    position: relative;
    z-index: 1;
}

.visit-section {
    background: url('../images/image_12.png') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.visit-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.visit-section .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .temple-content {
        padding: 30px 20px !important;
    }

    .experience-section {
        height: 220px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.dark-item .accordion-button {
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
}

.active-item .accordion-button {
    background: var(--secondary-color);
    color: #000;
}

.accordion-button::after {
    display: none;
}

.accordion-button {
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
}

.accordion-body {
    background: #f5f5f5;
    padding: 20px;
}

.icon {
    margin-right: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .icon {
    transform: rotate(90deg);
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item p {
    margin: 0;
    color: #333;
}

.icon {
    color: #4b140c;
    font-size: 18px;
    margin-top: 4px;
}

.map-box iframe {
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 768px) {
    .map-box iframe {
        height: 250px;
    }
}

.footer-links a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 999;
    color: #fff;
    background-color: var(--primary-color);

    border-radius: 50%;
    width: 45px;
    height: 45px;

    font-size: 18px;
    align-items: center;
    justify-content: center;
}

#topBtn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.amenity-item {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.icon-box {
  width: 65px;
  height: 65px;
  background: #3b0a04;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.amenity-item span {
  color: #5a2b1d;
  font-size: 18px;
}

.amenity-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.amenity-item:hover .icon-box {
  background: #c89b5e;
}

/* Hover */
.amenity-item:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 576px) {
  .amenity-item {
    padding: 10px;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .amenity-item span {
    font-size: 14px;
  }
}

.about-img img {
  border-radius: 6px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-content p {
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .about-img img {
    height: 200px;
  }

  .about-content p {
    font-size: 14px;
    text-align: center;
  }
}

.theme-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.theme-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}