@font-face {
    font-family: "BodoniPoster";
    src: url("assets/fonts/BOD_PSTC.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}


/* commom navbar css */
/* navbar scss */
.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
}
/* this css is used to remove the transperant while click the toggler icon.. */

@media (max-width: 991px) {

    .custom-navbar {
        transition: none !important;
    }

    /* Entire navbar becomes white instantly when toggle is open */
    .custom-navbar:has(.navbar-collapse.show),
    .custom-navbar:has(.navbar-collapse.collapsing) {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    /* Menu dropdown also white */
    .custom-navbar .navbar-collapse.show,
    .custom-navbar .navbar-collapse.collapsing {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
    }

    /* All links turn black in mobile */
    .custom-navbar:has(.navbar-collapse.show) .nav-link,
    .custom-navbar:has(.navbar-collapse.collapsing) .nav-link {
        color: #000 !important;
    }

    .custom-navbar:has(.navbar-collapse.show) .book-btn,
    .custom-navbar:has(.navbar-collapse.collapsing) .book-btn {
        color: #fff !important;
    }

    /* Active link remains golden in mobile too */
    .custom-navbar:has(.navbar-collapse.show) .nav-link.active,
    .custom-navbar:has(.navbar-collapse.collapsing) .nav-link.active {
        color: #f7eee7 !important;
    }

    .custom-navbar:has(.navbar-collapse.show) #logo_res,
    .custom-navbar:has(.navbar-collapse.collapsing) #logo_res {
        color: #000 !important;
    }

    .custom-navbar:has(.navbar-collapse.show) .navbar-toggler-icon,
    .custom-navbar:has(.navbar-collapse.collapsing) .navbar-toggler-icon {
        filter: invert(1) brightness(0);
    }

    .custom-navbar:has(.navbar-collapse.show) .navbar-toggler,
    .custom-navbar:has(.navbar-collapse.collapsing) .navbar-toggler {
        border-color: #000 !important;
    }
}
.navbar-toggler {
    background-color: #c6b7a0a6 !important;
}

/* # end */

/* --- UPDATED NAVBAR ACTIVE DESIGN --- */
@keyframes waveJump {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 #fff,
            12px 0 0 #fff;
    }

    15% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px -6px 0 red,
            /* left jump color */
            12px 0 0 #fff;
    }

    30% {
        transform: translateX(-50%) translateY(-6px);
        box-shadow:
            -12px 6px 0 blue,
            /* center jump color */
            12px 6px 0 blue;
    }

    45% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 #fff,
            12px -6px 0 red;
        /* right jump color */
    }

    60% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 #fff,
            12px 0 0 #fff;
    }
}

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 15px;
    margin-top: 12px !important;
    margin: 0 5px;
    transition: color 0.3s ease;
}

/* The Dots Container (Pseudo-element) */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;

    /* Initial State (Hidden/Transparent) */
    background-color: transparent;
    box-shadow: -12px 0 0 transparent, 12px 0 0 transparent;

    /* Positioning & Default Transition (Pop effect) */
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar-nav .nav-link{
    font-family: 'Marcellus', serif !important;
    font-size: 14px !important;
    color: #fff !important;
}
/* HOVER STATE: Show static dots */
.navbar-nav .nav-link:hover {
    color: #f7eee7 !important;
}

.navbar-nav .nav-link:hover::after {
    background-color: #fff !important;
    box-shadow: -12px 0 0 #fff, 12px 0 0 #fff;
    transform: translateX(-50%) scale(1);
}

/* ACTIVE STATE: Show dots + Wave Animation */
.navbar-nav .nav-link.active {
    color: #fff!important;
    font-weight: 700;
}

.navbar-nav .nav-link.active::after {
    background-color: #fff;
    box-shadow: -12px 0 0 #fff, 12px 0 0 #fff;

    /* Ensure it's visible and centered before animation takes over */
    transform: translateX(-50%) scale(1);

    /* Apply the wave jumping animation */
    animation: waveJump 1.5s infinite linear;
}

/* --- MOBILE RESPONSIVENESS FIX --- */
@media (max-width: 992px) {

    /* Align items to the left in the dropdown menu */
    .navbar-nav {
        align-items: center;
        padding-bottom: 15px;
    }

    .navbar-nav .nav-link {
        /* Full width for easier clicking, align text left */
        width: 100%;
        margin: 8px 0;
        text-align: left;
        padding-left: 0;
        /* Usually container has padding, so this aligns nicely */
    }

    /* Reposition dots to the left for mobile */
    .navbar-nav .nav-link::after {
        left: 20px;
        /* Offset to accommodate the left shadow dot */
        /* Remove the centering transform */
        transform: translateX(0) scale(0);
    }

    /* Mobile Hover State */
    .navbar-nav .nav-link:hover::after {
        transform: translateX(0) scale(1);
    }

    /* Mobile Active State with Mobile-Specific Animation */
    .navbar-nav .nav-link.active::after {
        transform: translateX(0) scale(1);
        animation: waveJumpMobile 1.5s infinite linear;
    }

    /* Add some space around the button on mobile */
    .navbar .book-btn {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* Mobile specific animation (no horizontal centering) */
@keyframes waveJumpMobile {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 var(--brand-gold),
            12px 0 0 var(--brand-gold);
    }

    15% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px -6px 0 red,
            /* left jump color */
            12px 0 0 var(--brand-gold);
    }

    30% {
        transform: translateX(-50%) translateY(-6px);
        box-shadow:
            -12px 6px 0 blue,
            /* center jump color */
            12px 6px 0 blue;
    }

    45% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 var(--brand-gold),
            12px -6px 0 red;
        /* right jump color */
    }

    60% {
        transform: translateX(-50%) translateY(0);
        box-shadow:
            -12px 0 0 var(--brand-gold),
            12px 0 0 var(--brand-gold);
    }
}

/* --- END UPDATED NAVBAR DESIGN --- */


/* --- Navbar Styling --- */

.navbar.custom-navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(6, 6, 6, 0.192);
}

.navbar.custom-navbar.scrolled {
    background-color: #000000d6 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .book-btn {
    background: #493b31 !important;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

 @media (min-width:1024px) {
        .logo{
          margin-left: -60px;
        }
      }

.navbar .quick-btn {
    background: #f7eee7 !important;
    color: #493b31 !important;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}


@media (min-width: 1024px) {
    .navbar .book-btn {
        margin-right: -50px;
    }
    
}
/* --- END OF Navbar Styling --- */

/* style for make the navbar heading responsive */

@media (max-width: 386px) {
    #logo_res {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 352px) {
    #logo_res {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 343px) {
    #logo_res {
        font-size: 1.0rem !important;
    }
}

/* common footer style start hear */
/* --- Footer (Copied from previous) --- */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: all-font;
}

.footer-link:hover {
    color: #f7eee7;
    transform: translateX(5px);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #f7eee7;
    border-color: #f7eee7;
    transform: translateY(-3px);
}

.footer-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    font-family: all-font;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #f7eee7;
    border-radius: 2px;
}

.badge-5-Star {
    background-color: #d4a017;
    padding: 5px;
    border-radius: 30px;
    color: white;
}

/* Removed unused footer media queries for .footer-Events and .footer-Service */

footer a {
    transition: 0.3s ease;
}

footer a:hover {
    color: #493b31!important;
    padding-left: 3px;
}

/* Underline animation */
footer li a {
    position: relative;
}

footer li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #f7eee7;
    transition: 0.3s ease;
}

footer li a:hover::after {
    width: 100%;
}

/* footer end */


/* font style */

.main-font {
    font-family: Felix Titling;
    letter-spacing: 2px;
    font-size: 44px !important;
    color: #fff !important;
    font-weight: bolder;
}

.all-font {
    font-family: 'Open Sans', serif;
}


/* end font style */

/* Decorative Footer */

:root {
    --gold: #B8935C;
    --cream: #FBF8F3;
}

.amenities-footer {
    text-align: center;
    margin-top: 70px;
}

.footer-ornament {
    width: 200px;
    margin: 0 auto;
    position: relative;
}

.footer-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-ornament::after {
    content: '❖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #493b31;
    font-size: 18px;
    background: var(--cream);
    padding: 0 15px;
}

@media (max-width: 768px) {
    .edit {
        margin-right: 32px;
    }
}
@media (max-width: 330px) {
    .edit {
        margin-right: 0px;
    }
}
@media (max-width: 340px) {
  .footer-links-Policies {
    text-align: left !important;
  }

  .footer-links-Policiesl h5,
  .footer-links-Policies h6 {
    margin-left: 0;
    padding-left: 0;
  }

  .footer-links-Policies ul {
    padding-left: 0;
  }

  .footer-links-Policies {
    justify-content: flex-start !important;
  }
}


/*end Decorative Footer */

/* css for double border in the index.html page */

.carousel-item img{
    border-radius: 15px;
}

.glass-border {
  position: relative;
  padding: 4px;
  border-radius: 20px;
  border: 3px solid #98752b;
}

.glass-border::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  border: 3px solid #98752b;
  box-shadow: 0 0 10px rgba(237,199,101,0.6);
  pointer-events: none;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  position: relative;
  opacity: 0;
  transition: 1.5s all ease;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  animation: fade-left 1s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Enhancing Responsive Typography */
@media (max-width: 768px) {
    h1.display-5 {
        font-size: 2.5rem;
    }
    h2.display-5 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
}

/* new card scc */

.room-poster {
  background: #f4ede4;
  padding: 14px;
  border: 1px solid #d6c1a5;
  max-width: 280px;
  margin: auto;
}

.room-image {
  border: 1px solid #d6c1a5;
  padding: 6px;
  background: #fff;
}

.room-image img {
  width: 100%;
  display: block;
}

.room-text-box {
  background: #f4ede4;
  border: 1px solid #d6c1a5;
  margin: -35px auto 0;   /* overlap effect */
  padding: 18px 16px;
  width: 85%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.room-text-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #3b2f2f;
  margin-bottom: 10px;
  line-height: 1.2;
}

.room-text-box p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #5c4b3c;
  line-height: 1.6;
}

/* GRID BALANCE */
.room-poster {
  background: #f4ede4;
  padding: 14px;
  border: 1px solid #d6c1a5;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE FRAME */
.room-image {
  border: 1px solid #d6c1a5;
  padding: 6px;
  background: #fff;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

/* TEXT PANEL */
.room-text-box {
  background: #f4ede4;
  border: 1px solid #d6c1a5;
  margin: -35px auto 0;
  padding: 18px 16px;
  width: 85%;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* TYPOGRAPHY */
.room-text-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #3b2f2f;
  margin-bottom: 10px;
  line-height: 1.25;
}

.room-text-box p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #5c4b3c;
  line-height: 1.6;
}

/* ✨ HOVER EFFECT (Luxury, subtle) */
.room-poster:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.room-poster:hover img {
  transform: scale(1.06);
}

.room-poster:hover .room-text-box {
  transform: translateY(-6px);
}

.room-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  color: #3b2f2f;
  margin-bottom: 18px;
  padding-bottom: 18px;
  text-align: center;
}

/* the horizontal line */
.room-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #3b2f2f;
  margin-bottom: 8px;
}

.room-title-divider {
  position: relative;
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: #dbc283;
  margin: 12px auto 18px;
}

.room-title-divider::after {
  content: "✧";          /* diamond */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
  color: #af8d43;
  background: #f4ede4;   /* card background */
  padding: 0 14px;
}



/* room-features-section */

.room-features-section {
  background: #f4ede4;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #3b2f2f;
}

/* Title */
.features-title {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Divider under title */
.features-divider {
  width: 180px;
  height: 1px;
  background: #b49c68;
  margin: 0 auto 30px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: auto;
}

/* Column */
.features-list {
  list-style: none;
  padding: 0 30px;
  margin: 0;
  text-align: left;
}

/* Vertical divider for center column */
.features-list.bordered {
  border-left: 1px solid #d6c1a5;
  border-right: 1px solid #d6c1a5;
}

/* Items */
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 14px;
  color:  #493b31;
}

/* Icons */
.features-list i {
  color: #f7eee7#493b31;
  font-size: 16px;
}
