@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  /* Color Variable */
  --primary: #fdfdfd;
  --secondary: #000000;
  --text-color: #282828;
  --accent-color: #7baa35;
  --accent-color-2: #1b1c29;
  --accent-color-3: #adadad;
  --accent-color-4: #ececec;
  --accent-color-5: #331e23;
  --accent-color-transparent: #ffffff00;
  /* Primary Font (Luxury Headings) */
  --font-heading: "Playfair Display", serif;
  /* Secondary Font (Body Text) */
  --font-body: "Montserrat", sans-serif;
  /* Optional Accent Font (for tagline or highlights) */
  --font-accent: "Libre Bodoni", serif;
  --font-family-1: "Gilda Display", sans-serif;
  --font-family-2: "Roboto", sans-serif;
  --font-family-4: "Poppins", sans-serif;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fdfdfd;
  transition: all 0.3s ease;
}

/* === 02. Keyframes Animation === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up 1s ease forwards !important;
}

@property --progress {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}

@keyframes load {
  to {
    --progress: var(var(--value));
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }

  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}

/* keyframes Animation */
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === 03. Global Settings === */

.convention-btn {
  background-color: var(--accent-color-5);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

/* === 04. Base Style === */

body {
  font-family: var(--font-family-2);
  color: var(--secondary);
}

h1 {
  font-family: var(--font-family-1);
  font-size: 3rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2em;
}

h2 {
  font-family: var(--font-family-4);
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2em;
}

h3 {
  font-family: var(--font-family-1);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  font-family: var(--font-family-1);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2em;
}

h5 {
  font-family: var(--font-family-1);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2em;
}

h6 {
  font-size: 0.938rem;
  font-weight: 500;
  line-height: 1.2em;
}

h1,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-1);
  margin-bottom: 0px;
}

p {
  font-family: var(--font-family-2);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 10px;
  color: var(--text-color);
}

button,
a {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  letter-spacing: 1.2px;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === 05. Base Section === */

.section {
  padding: 1em 1em 1em 1em;
}

.section-py-medium {
  padding: 3em 1em 3em 1em;
}

.section-pb-large {
  padding: 1em 1em 2em 1em;
}

.section-py-large {
  padding: 2em 1em 6em 1em;
}

.section-content-spacer {
  height: 14px;
}

/* === 06. Hero Container === */

.hero-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /* margin-bottom: 140px; */
}

/* === 07. Button Style === */

.btn {
  font-family: var(--font-family-2);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  letter-spacing: 1.2px;
  border-radius: 0px;
  padding: 18px 32px 18px 32px;
  transition: all 0.3s;
}

.btn-accent {
  border: 1px solid var(--accent-color);
  color: var(--primary);
  background: var(--accent-color);
  /* background: linear-gradient(135deg, rgb(219, 61, 61), #7baa35); */
  transition: 0.3s ease;
}

.btn-accent:hover {
  color: #fff;
  background: var(--secondary);
  box-shadow: #000000;
}

.btn-accent.btn-white-hover:hover {
  background-color: var(--primary);
  color: var(--secondary);
  border: solid 1px var(--primary);
}

.btn-outline-primary {
  border: solid 1px var(--primary);
  color: var(--primary);
  background-color: var(--accent-color-transparent);
  font-family: var(--font-family-4);
}

.btn-outline-primary:hover {
  border: solid 1px var(--primary);
  color: var(--secondary);
  background-color: var(--primary);
}

/* === 08. Card Style === */

.card {
  border-radius: 0px;
}

.card-service {
  display: flex;
  flex-direction: column;
  border: none;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  padding: 20px 20px 20px 20px;
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: -101%;
  height: 100%;
  width: 100%;
  background-size: 101% 101%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.card-service:hover {
  background-color: var(--accent-color);
}

.card-service:hover::before {
  left: 0;
}

.card-service i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 13px;
}

.card-service:hover i {
  color: var(--primary);
}

.card-service:hover h4 {
  color: var(--primary);
}

.card-reservation {
  background-color: var(--accent-color-2);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 2em 2em 2em 2em;
}

.card-faq-info {
  width: 30%;
  height: 100%;
  background-color: var(--accent-color-2);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 2em 2em 2em 2em;
}

.card-contact-form {
  background-color: var(--accent-color-2);
  color: var(--primary);
  padding: 2em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
}

/* === 09. Color Style === */

.bg-accent-color-2 {
  background-color: var(--accent-color-2);
}

.accent-primary {
  color: var(--primary);
}

.accent-color {
  color: var(--accent-color);
}

/* === 10. Image Style === */
.image-container {
  position: relative;
  z-index: 1;
}

.image-container img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.image-container .about-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-container .about-img {
  width: 100%;
  height: 875px;
}

.image-container .signature-img {
  width: 30%;
  max-width: 100%;
  height: auto;
}

.about-philosophy-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-philosophy-image img {
  width: 500px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}

.about-value-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-value-image img {
  width: 500px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}

.room-image,
.room-detail {
  display: none;
}

.room-image.active,
.room-detail.active {
  display: block;
}

.room-image img {
  width: 100%;
  height: 400px;
}

.room-detail-image img {
  width: 100%;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
}

.gallery-image img {
  width: 100%;
  aspect-ratio: auto 800 / 422;
  height: 300px;
  opacity: 1;
  transition: 0.5s ease;
}

.gallery-image:hover img {
  opacity: 0.7;
}

.gallery-image.gallery-image-tall img {
  height: 620px;
}

.gallery-image.gallery-image-half-tall img {
  height: 400px;
}

.gallery-image.gallery-image-short img {
  height: 200px;
}

.gallery-image.gallery-image-short-wide img {
  width: 800px;
}

.blog-image img {
  height: 300px;
}

.post-image img {
  width: 100%;
  height: 400px;
}

.footer-logo img {
  max-width: 30%;
}

/* === 11. Header Style === */

.navbar-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: #7baa35;
}

.navbar {
  border-radius: 20px 20px 20px 20px;
  position: relative;
  padding: 0px;
  z-index: 1;
}

.navbar-nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.navbar .logo-container {
  width: 14%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar .logo-container img {
  max-width: 70%;
}

.navbar .nav-link-container {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-link {
  font-family: var(--font-family-4);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--primary);
  padding: 15px 15px 15px 15px;
}

.nav-link:hover {
  color: #fdfdfd98;
}

.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link.show {
  color: #fdfdfd98 !important;
}

#avaliablility-form {
  padding: 20px;
  border-radius: 10px;
}

#avaliablility-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

#avaliablility-form input,
#avaliablility-form select {
  height: 30px;
}

.navbar-cta-container {
  width: 15%;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: flex-end;
}

.nav-btn {
  display: none;
  padding: 16px 16px;
  background-color: var(--accent-color);
  color: var(--primary);
  box-shadow: none;
  transition: all 300ms ease;
  border: none;
  border-radius: 0px 0px 0px 0px;
  box-shadow: none;
  font-size: 18px;
}

.nav-btn:hover {
  background-color: var(--primary);
  color: var(--accent-color);
}

/* === 12. Sidebar Style === */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--primary);
  color: var(--secondary);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  max-height: 100vh;
  padding: 0px 16px 0px 5px;
}

.sidebar.active {
  transform: translateX(300px);
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 5px 5px 5px;
}

.sidebar-logo {
  height: 150px;
}

.close-btn {
  font-family: var(--font-family-2);
  display: inline-block;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 8px 8px 8px 8px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  cursor: pointer;
  padding: 8px 18px;
  transition: all 300ms;
  border: none;
  outline: none;
}

.close-btn:hover {
  background-color: var(--primary);
  color: var(--accent-color);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.sidebar-menu li {
  padding: 10px 15px 10px 15px;
}

.sidebar-menu a {
  font-family: var(--font-family-2);
  color: var(--secondary);
  text-decoration: none;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: normal;
  letter-spacing: 0px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.sidebar-menu a:focus {
  color: var(--accent-color);
}

.aside-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* === 13. Footer Style === */
.footer-container {
  background-color: var(--accent-color-2);
  color: var(--primary);
  padding: 3em 1em 3em 1em;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.3fr 0.3fr;
  gap: 20px;
  padding: 0em 0em 4em 0em;
}

.footer-title-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 2em 0em 0em;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-quick-links-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 2em 0em 2em;
}

.footer-quick-links {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: normal;
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-quick-links:hover {
  color: var(--accent-color);
}

.footer-information-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 0em 0em 2em;
}

.footer-info-item {
  display: flex;
  flex-direction: row;
  gap: 10px 10px;
  align-items: center;
}

.footer-info-icon,
.footer-info-text {
  color: var(--primary);
  margin: 0px;
}
.footer-info-item :hover {
  color: #7baa35;
}

.footer-copyright-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 20px;
  justify-content: space-between;
  padding: 2em 0em 0em 0em;
  border-top: 1px solid var(--primary);
}

.copyright-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--primary);
}

.legalink-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--primary);
  letter-spacing: normal;
}

/* === 14. Form Style === */

.form {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 0px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: solid 1px var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border-bottom: solid 1px var(--accent-color);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--accent-color-3);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
}

.form input:autofill,
.form input:autofill:focus {
  color: var(--primary);
  transition: background-color 5000s ease-in-out;
  -webkit-text-fill-color: var(--primary);
}

.form .input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: row;
}

.form .input-wrapper .input-icon {
  color: var(--primary);
  position: absolute;
  left: 10px;
  top: 16px;
  transform: none;
}

.form .input-wrapper input,
.form .input-wrapper textarea {
  padding-left: 35px;
}

.form .dropdown-container {
  position: relative;
  width: 100%;
}

.form .dropdown-select {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: var(--accent-color-3);
  border-bottom: solid 1px var(--primary);
  outline: none;
  padding: 14px 0px 14px 14px;
  font-size: 16px;
  line-height: 1.4em;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px 20px;
  z-index: 2;
}

.form .dropdown-select:focus {
  border-bottom: solid 1px var(--accent-color);
}

.form .dropdown-select i {
  color: var(--primary);
  fill: var(--primary);
}

.form .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  z-index: 10;
  margin-top: 5px;
  max-height: 200px;
  overflow-y: auto;
}

.form .dropdown-container.active .dropdown-list {
  display: block;
}

.form .dropdown-option {
  background-color: var(--primary);
  padding: 15px 15px 15px 15px;
  border-color: var(--secondary);
  color: var(--secondary);
  border-radius: 0;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.form .dropdown-option:hover {
  background-color: var(--accent-color);
  color: var(--primary);
}

.form .dropdown-option.selected {
  background-color: var(--accent-color);
  color: var(--primary);
}

#newsletter-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 20px;
}

#newsletter-form .input-wrapper {
  width: 60%;
}

#newsletter-form .btn {
  width: 40%;
}

.error-border {
  border: 1px solid red !important;
}

.success {
  color: var(--accent-color-3);
}

.error {
  color: var(--accent-color-3);
}

.check-icon,
.cross-icon {
  font-size: 20px;
  margin-right: 10px;
}

.alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  color: var(--secondary);
}

.hidden {
  display: none;
}

/* === 15. Heading Style === */

.banner-home-title {
  font-size: 4rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2em;
}

.banner-home-subtitle {
  font-family: var(--font-family-1);
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2em;
}

.heading-content-container {
  display: flex;
  flex-direction: column;
  /* gap: 20px 20px; */
}

.heading-content-container.heading-center {
  align-items: center;
  text-align: center;
}

.heading-content-container.heading-center .heading-excerpt {
  max-width: 75%;
  text-align: center;
}

.leaf-icon {
  height: 80px;
  width: 80px;
}

.sub-heading.accent-primary {
  color: var(--primary);
}

/* === 16. Banner Style === */
.banner-home {
  /* padding: 0em 0em 0em 0em;
    display: flex;
    flex-direction: row; */
  height: 100dvh;
  /* align-items: flex-end; */

  overflow: hidden;
  z-index: 1;
}
.banner-home .bg-overlay img {
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-home .bg-overlay::before {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-inner {
  padding: 20em 1em 6em 1em;
  background-image: url("assets/Image/single-bed.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.booking-cta-banner {
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 850px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("assets/Image/Lawn-1.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* LABEL */
.custom-input label {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 5px;
}

/* FIX DROPDOWN OPTIONS */
.input-field select {
  color: #fff;
  background: transparent;
}

/* VERY IMPORTANT */
.input-field select option {
  color: #000;
  background: #fff;
}

/* INPUT BOX */
.input-field {
  display: flex;
  align-items: center;
  /* background: #222; */
  border: 1px solid #444;
  border-radius: 6px;
  padding: 10px 12px;
  transition: 0.3s;
}

/* ICON */
.input-field i {
  color: #7baa35;
  margin-right: 8px;
}

/* INPUT + SELECT */
.input-field input,
.input-field select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

/* DATE ICON COLOR FIX */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* HOVER / FOCUS */
.input-field:hover,
.input-field:focus-within {
  border-color: #7baa35;
}

/* BUTTON */
.check-btn {
  background: #f4a261;
  border: none;
  padding: 12px;
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;
}

.check-btn:hover {
  background: #e76f51;
}

.testimonial-banner {
  background-attachment: fixed;
  background-image: url("assets/Image/front-view.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonial-banner::before {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  opacity: 0.5;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-notfound {
  background-image: url("images/tidy-and-cozy-bedroom-2023-11-27-04-52-13-utc_result.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 13em 1em 6em 1em;
  min-height: 900px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-notfound::before {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  opacity: 0.5;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Banner Home Style */

.banner-home-content {
  position: absolute;
  top: 53%;
  left: 8%;
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  /* position: relative; */
  z-index: 3;
}

.banner-home-title-container {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 0em 0em 0em;
}

.banner-home-cta-container {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Banner Inner Style */

.banner-inner-container {
  width: 70%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  z-index: 2;
}

.banner-inner-subtitle {
  width: 80%;
  color: var(--primary);
}

.banner-inner-title {
  width: 95%;
  color: var(--primary);
}

.banner-inner-meta-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px 10px;
}

.banner-inner-meta-icon {
  color: var(--primary);
}

.banner-inner-meta-text {
  color: var(--primary);
  margin: 0px;
}

.leaf-breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 20px;
}

.leaf-breadcrumb .breadcrumb-item {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: normal;
  color: var(--primary);
  transition: all 0.3s ease;
}

.leaf-breadcrumb .breadcrumb-item:hover {
  color: var(--accent-color);
}

.leaf-breadcrumb .breadcrumb-separator {
  color: var(--primary);
}

/* === 17. About Style === */

.about-title-container.brand-story-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 0em 2em 2em 0em;
  width: 50%;
  z-index: 2;
}

.about-quote-container.brand-story-quote {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 2em 0em 0em 2em;
  width: 50%;
  z-index: 2;
}

.about-philosophy-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 0px;
}

.about-philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 0em 0em 3em;
}

.about-philosophy-quote {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 0em 0em 1em;
  border-left: 1px solid var(--accent-color);
}

.about-value-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 0px;
}

.about-value-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 4em 0em 0em;
}

.about-value-list {
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
  padding: 0em 0em 1em 0em;
  border-bottom: 1px solid var(--secondary);
}

.about-value-icon {
  font-size: 2rem;
  color: var(--accent-color);
}

/* === 18. Service Style === */

/* Card Styling */
.card-service {
  border-radius: 16px;
  border: none;
  background: #fdfdfd;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Hover Effect */
.card-service:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Top Gradient Line */
.card-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #299cc6, #e85321);
  transform: scaleX(0);
  transition: 0.4s;
}

.card-service:hover::before {
  transform: scaleX(1);
}

/* Icon Styling */
.card-service i {
  font-size: 30px;
  color: #7baa35;
  transition: 0.3s;
}

/* Icon Hover Animation */
.card-service:hover i {
  transform: rotateY(180deg);
  color: #fdfdfd;
}

/* Text */
.card-service h4 {
  font-size: 15px;
  margin-top: 10px;
  font-weight: 600;
  color: #1e293b;
}

/* Heading Section */
.heading-content-container h2 {
  font-weight: 700;
}

.heading-excerpt {
  margin: 0 auto;
  font-size: 18px;
  color: #fdfdfd;
  padding-top: 5px;
}

/* Spacing Fix */
.section-content-spacer {
  height: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .card-service {
    padding: 20px 10px !important;
  }

  .card-service i {
    font-size: 24px;
  }

  .card-service h4 {
    font-size: 13px;
  }
}

.where-we-are {
  position: relative;
  overflow: hidden;
}

.where-we-are::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url(assets/Image/Lawn-1.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* CARD STYLE */
.custom-card {
  height: 280px;
}

/* IMAGE */
.custom-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.custom-card p {
  color: var(--accent-color);
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-card {
    height: 250px;
  }

  .custom-card img {
    height: 200px;
  }
}

/* === 19. Rooms Style === */

.room-detail-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: center;
  overflow: hidden;
  padding: 0em 0em 0em 1em;
  width: auto;
  height: 100%;
}

.rooms-tab-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 280px;
  min-width: 280px;
  height: 100%;
  text-align: start;
}

.rooms-tab-content-container {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px 0px;
}

.room-selection {
  display: flex;
  flex-direction: column;
  gap: 0px 0px;
  padding: 0px 32px 0px 0px;
  width: 100%;
}

.room-info-container {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  background-color: var(--accent-color-2);
  color: var(--primary);
  padding: 2em 2em 2em 2em;
}

.room-detail-info-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 0em 0em 0em 4em;
}

.room-detail-info-underline {
  border-bottom: 1px solid var(--secondary);
  margin: 15px 0px 15px 0px;
}

.room-selection .tab-nav {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: var(--accent-color-transparent);
  padding: 20px 0px 15px 0px;
  border: none;
  border-bottom: 1px solid var(--secondary);
  color: var(--secondary);
  /* font-family: inherit; */
  transition: all 200ms;
  width: 100%;
}

.room-selection .tab-nav .fa-arrow-right {
  font-size: 0.9rem;
  margin-top: 3px;
  color: inherit;
}

.room-selection .tab-nav .tab-title {
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  line-height: 1.2;
}

.room-selection .tab-nav .tab-title-content {
  font-size: 0.9rem;
  font-weight: normal;
  color: inherit;
  opacity: 0.8;
  line-height: 1.2;
}

.room-selection .tab-nav span.d-flex {
  flex-direction: column;
  align-items: flex-start;
}

.room-selection .tab-nav:hover {
  color: var(--accent-color);
  border-bottom: solid 1px var(--accent-color);
}

.room-selection .tab-nav:not(.active) .tab-title-content {
  display: none;
}

.room-selection .tab-nav.active {
  color: var(--accent-color);
  border-bottom: solid 1px var(--accent-color);
}

/* === 20. Booking CTA Style === */

.booking-cta-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: center;
  max-width: 75%;
  margin: 0 auto;
}

/* === 21. Offering Style === */

.main-title {
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0;
}

.desc {
  max-width: 600px;
  margin: auto;
}

/* CARD */
.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ICON */
.icon-circle {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle img {
  width: 30px;
}

/* CONTENT */
.card-content {
  padding: 50px 20px 25px;
}

.card-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.card-content p {
  color: #666;
  font-size: 14px;
}

/* COLORS */
.mehendi {
  color: #3a7d44;
}

.sangeet {
  color: #6b3fa0;
}

.haldi {
  color: #d4a017;
}

/* === 22. Rating Style === */
.Experience-section {
  background: linear-gradient(#92c730, #7baa35);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  color: #fff;
  position: relative;
}

/* Cards */
.rating-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 35px 35px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover */
.rating-box:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Smooth light sweep */
.rating-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  top: -50%;
  left: -50%;
  transform: rotate(25deg);
  transition: 0.6s;
}

.rating-box:hover::before {
  left: 100%;
}

/* Counter */
.rating-counter-container {
  font-size: 30px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 10px;
}

.rating-detail {
  font-size: 20px;
  color: #050505;
}

/* Title */
.rating-title {
  font-family: var(--font-family-1);
  font-size: 15px;
  letter-spacing: 1px;
  color: #050505;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ICON  */
.rating-box i {
  font-size: 30px;
  color: #fdfdfd;
  margin-bottom: 12px;
  display: inline-block;
  padding: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .rating-box {
    margin: 15px 0;
  }
}

/* === 23. Gallery Style === */

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
}

.gallery-container.gallery-container__wide-container {
  width: 67%;
}

.gallery-container.gallery-container__narrow-container {
  display: grid;
  grid-template-columns: 1fr;
  width: 33%;
}

.gallery-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}

/* === 24. FAQs Style === */

.faq-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: space-between;
  width: auto;
  height: 100%;
  padding: 0em 0em 0em 4em;
}

.faq-info-content-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding-left: 4em;
}

/* === 25. Testimonial Style === */

.testimonial-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-content {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 20px 40px;
}

.testimonial-reviewer-box {
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  align-items: center;
}

.testimonial-name {
  color: var(--primary);
}

.testimonial-designation {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.063rem;
  font-style: italic;
  color: var(--primary);
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 20px 0px;
  text-align: center;
}
.testimonial-quote p{
    color: white;
}
.testimonial-button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px 20px;
}

.testimonial-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  color: var(--accent-color);
  transition: all 0.3s ease;
  padding: 8px 16px 8px 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 1.125rem;
  border: none;
  box-shadow: none;
  outline: none;
}

.testimonial-button:hover {
  background-color: var(--accent-color);
  color: var(--primary);
}

/* === 26. Team Style === */

.team-layout {
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.team-social-icon-box {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 10px;
  padding: 1em 1em 1em 1em;
}

.team-content {
  background-color: var(--accent-color-2);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 5px 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1em 1em 1em 1em;
  width: 100%;
}

.team-underline {
  border-bottom: solid 1px var(--primary);
  width: 60%;
  margin: 15px 0px 15px 0px;
}

/* === 27. Notfound Style === */

.notfound-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
}

.notfound-content-title {
  /* font-family: var(--font-family-1); */
  font-size: 9rem;
  font-weight: 600;
  line-height: 1em;
  color: var(--primary);
}

.notfound-content-description {
  width: 50%;
  color: var(--primary);
}

/* === 28. Blog Post Style === */

.blog-layout {
  display: flex;
  flex-direction: column;
  /* gap: 20px 20px; */
}

.blog-link {
  font-family: var(--font-family-1);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2em;
  /* letter-spacing: normal; */
  color: var(--secondary);
}

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

.blog-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px 5px;
  color: var(--accent-color-3);
  font-family: var(--font-family-2);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2em;
}

.blog-meta-title {
  font-family: var(--font-family-2);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2em;
}

.single-post-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  margin: 0 auto;
}

.post-quote-container {
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
  padding: 0em 0em 0em 2em;
  border-left: 1px solid var(--accent-color);
}

.post-quote-text {
  font-style: italic;
}

.post-share-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--accent-color-3);
  padding: 2em 0em 0em 0em;
}

/* === 29. Contact Style === */

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-info-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--text-color);
}

.contact-info-description {
  font-family: var(--font-family-1);
  font-weight: 500;
  line-height: 1.2em;
  color: var(--text-color);
}
.contact-info-description a{
  font-family: var(--font-family-1);
  font-weight: 500;
  line-height: 1.2em;
  color: var(--text-color);
}

.contact-form-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  padding: 2em 0em 0em 0em;
}

/* === 30. Accordion Style === */

.accordion .accordion-item {
  background-color: transparent;
  border: none;
  color: var(--primary);
  outline: none;
  border-radius: 4px;
}

.accordion .accordion-item .accordion-body {
  color: var(--text-color);
  /* font-family: var(--font-2); */
  text-align: start;
  padding: 18px 32px 18px 32px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button {
  font-family: var(--font-family-2);
  background-color: var(--accent-color-4);
  border: none;
  outline: none;
  border-radius: 0px !important;
  font-size: 1.063rem;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: normal;
  font-style: italic;
  position: relative;
  text-transform: none;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 14px 30px 14px 30px;
  color: var(--secondary);
}

.accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="black" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-arrow-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v10.793l3.146-3.147a.5.5 0 1 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 1 1 .708-.708L7.5 13.293V2.5A.5.5 0 0 1 8 2z"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
  font-weight: 400;
  background-color: var(--secondary);
  border: none;
  box-shadow: none;
  color: var(--primary);
  fill: var(--primary);
  outline: none;
}

/* === 31. Icon Style === */

.room-icon {
  display: flex;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.room-icon svg {
  width: 16px;
  height: 16px;
  border-radius: 0;
}

.team-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary);
  fill: var(--primary);
}

.contact-icon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Icon styling */
.contact-icon {
  min-width: 45px;
  height: 45px;
  background-color: #7baa35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .contact-icon-box {
    width: 100%;
    padding: 5px 0;
  }

  .contact-icon-box h5 {
    font-size: 14px;
  }

  .contact-icon-box p {
    font-size: 15px;
    word-break: break-word;
  }

  .faq-content-container .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

.post-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  background-color: var(--accent-color);
  color: var(--primary);
  transition: all 0.3s ease;
}

.post-icon:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  background-color: var(--accent-color);
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* === 33. Custom List Style === */
.circle-list {
  list-style: none;
  padding: 0;
}

.circle-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.circle-list .icon {
  font-size: 8px;
  color: var(--accent-color);
  margin-top: 7px;
  flex-shrink: 0;
  /* 🔥 IMPORTANT */
}

.circle-list li span {
  display: block;
}

/* === 34. Map Style === */

.maps {
  max-width: 100%;
  width: 100%;
  line-height: 1;
}

.maps.room-maps {
  height: 300px;
}

.maps.contact-maps {
  height: 580px;
}

/* === 35. Spacing utilities === */

.gspace-0 {
  gap: 0px 0px;
}

.gspace-1 {
  gap: 10px 10px;
}

.gspace-2 {
  gap: 20px 20px;
}

.gspace-3 {
  gap: 30px 30px;
}

.gspace-4 {
  gap: 40px 40px;
}

.gspace-5 {
  gap: 50px 50px;
}

.gspace-x-0 {
  column-gap: 0px;
}

.gspace-x-1 {
  column-gap: 10px;
}

.gspace-x-2 {
  column-gap: 20px;
}

.gspace-x-3 {
  column-gap: 30px;
}

.gspace-x-4 {
  column-gap: 40px;
}

.gspace-x-5 {
  column-gap: 50px;
}

.gspace-y-0 {
  row-gap: 0px;
}

.gspace-y-1 {
  row-gap: 10px;
}

.gspace-y-2 {
  row-gap: 20px;
}

.gspace-y-3 {
  row-gap: 30px;
}

.gspace-y-4 {
  row-gap: 40px;
}

.gspace-y-5 {
  row-gap: 50px;
}

/* Grid spacing (row-gap & column-gap) */

.grid-spacer-1 {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.grid-spacer-2 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.grid-spacer-3 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.grid-spacer-4 {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.grid-spacer-5 {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;
}

/* Grid spacing (column-gap) */

.grid-spacer-x-1 {
  --bs-gutter-x: 10px;
}

.grid-spacer-x-2 {
  --bs-gutter-x: 20px;
}

.grid-spacer-x-3 {
  --bs-gutter-x: 30px;
}

.grid-spacer-x-4 {
  --bs-gutter-x: 40px;
}

.grid-spacer-x-5 {
  --bs-gutter-x: 50px;
}

/* Grid spacing (row-gap) */

.grid-spacer-y-1 {
  --bs-gutter-y: 10px;
}

.grid-spacer-y-2 {
  --bs-gutter-y: 20px;
}

.grid-spacer-y-3 {
  --bs-gutter-y: 30px;
}

.grid-spacer-y-4 {
  --bs-gutter-y: 40px;
}

.grid-spacer-y-5 {
  --bs-gutter-y: 50px;
}

/* === 01. Tablet Responsive === */
@media screen and (max-width: 1440px) {
  .btn-outline-primary {
    padding: 10px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 0.938rem;
  }

  .nav-btn {
    display: block;
  }

  .navbar .nav-link-container {
    display: none;
  }

  .navbar-cta-container {
    display: none;
  }

  .navbar .logo-container {
    width: 25%;
  }

  .navbar .logo-container img {
    width: 50%;
  }

  .banner-home-content {
    flex-direction: column;
  }

  .banner-home-title-container {
    width: 100%;
  }

  .banner-home-title {
    font-size: 3.5rem;
  }

  .banner-home-subtitle {
    font-size: 2.25rem;
  }

  .banner-home-cta-container {
    width: 100%;
  }

  .about-title-container.brand-story-content {
    width: 100%;
    padding: 0px;
    height: 100%;
  }

  .about-quote-container.brand-story-quote {
    width: 100%;
    padding: 0px;
    height: auto;
    margin-bottom: 70px;
  }

  .about-philosophy-container {
    grid-template-columns: 1fr;
  }

  .about-philosophy-content {
    padding: 2em 0em 0em 0em;
  }

  .rooms-tab-container {
    max-width: 240px;
    min-width: 240px;
  }

  .room-detail-container {
    padding: 1em 0em 0em 0em;
  }

  .room-image img {
    height: 400px;
  }

  .room-info-container {
    width: 100%;
  }

  .room-detail-info-container {
    width: 100%;
    padding: 2em 0em 0em 0em;
  }

  .booking-cta-container {
    max-width: 80%;
  }

  .offering--featured {
    background-size: 220% auto;
  }

  .offering--featured:hover {
    background-size: 230% auto;
  }

  .offering-discount-title {
    font-size: 2.25rem;
  }

  .gallery-container.gallery-container__wide-container {
    width: 100%;
  }

  .gallery-container.gallery-container__narrow-container {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .faq-content-container {
    padding: 0em 0em 0em 1em;
  }

  .faq-info-content-container {
    width: 100%;
    padding: 0em 0em 2em 0em;
  }

  .card-faq-info {
    width: 100%;
  }

  .single-post-container {
    width: 100%;
  }

  .notfound-content-description {
    width: 70%;
  }

  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-title-container {
    padding: 0px;
  }

  .footer-quick-links-container {
    padding: 0px;
  }

  .footer-information-container {
    padding: 0px;
  }

  /* images-media */
  .about-philosophy-image img {
    height: 250px;
  }

  .about-value-image img {
    height: 250px;
  }

  .booking-cta-banner {
    min-height: 300px;
  }

  .maps.contact-maps {
    height: 200px;
  }

  .post-image img {
    height: 200px;
    margin-top: 10px;
  }

  .footer-container {
    padding: 1em 1em 1em 1em;
  }

  .image-container .about-img {
    height: 475px;
  }

  .section-py-medium {
    padding: 2em 1em 1em 1em;
    /* margin-top: 5px; */
  }
}

/* === 02. Mobile Responsive === */

@media screen and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 0.938rem;
  }

  .navbar .logo-container {
    width: 45%;
  }

  .banner-home-title {
    font-size: 41px;
  }

  .banner-home-subtitle {
    font-size: 22px;
  }

  .about-title-container.brand-story-content p {
    margin-bottom: 2px;
  }

  .banner-inner-container {
    width: 100%;
  }

  .banner-inner-title {
    width: 100%;
  }

  .banner-inner-subtitle {
    width: 100%;
  }

  .tab-nav .room-tab-arrow {
    display: none;
  }

  .about-value-container {
    grid-template-columns: 1fr;
  }

  .heading-content-container.heading-center .heading-excerpt {
    max-width: none !important;
    font-size: 15px;
  }

  .about-value-content {
    padding: 0em 0em 2em 0em;
  }

  .rooms-tab-container {
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding: 0px 0px 20px 0px;
  }

  .room-image img {
    height: 200px;
  }

  .booking-cta-container {
    max-width: 100%;
  }

  .offering-container,
  .offering-container:hover,
  .offering--featured,
  .offering--featured:hover {
    background-size: 200% auto;
  }

  .gallery-grid-container {
    grid-template-columns: 1fr;
  }

  .gallery-container.gallery-container__narrow-container {
    grid-template-columns: 1fr;
  }

  .gallery-image.gallery-image-tall img,
  .gallery-image.gallery-image-half-tall img,
  .gallery-image.gallery-image-short img {
    height: 150px;
  }

  .gallery-image img {
    height: 150px;
  }

  .gallery-image.gallery-image-short-wide img {
    width: 100%;
  }

  .faq-content-container {
    padding: 0em 0em 2em 0em;
  }

  .testimonial-content {
    padding: 0px;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-content-grid > :first-child {
    grid-column: auto;
  }

  #newsletter-form {
    flex-direction: column;
  }

  #newsletter-form .input-wrapper {
    width: 100%;
  }

  #newsletter-form .btn {
    width: 100%;
  }

  .notfound-content-description {
    width: 100%;
  }

  .contact-form-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-copyright-container {
    flex-direction: column;
    justify-content: center;
  }
}

/* === 03. Mobile Spacing Responsive === */

@media screen and (min-width: 767px) {
  /* Flex spacing (gap) */

  .gspace-md-0 {
    gap: 0px 0px;
  }

  .gspace-md-1 {
    gap: 10px 10px;
  }

  .gspace-md-2 {
    gap: 20px 20px;
  }

  .gspace-md-3 {
    gap: 30px 30px;
  }

  .gspace-md-4 {
    gap: 40px 40px;
  }

  .gspace-md-5 {
    gap: 50px 50px;
  }

  .gspace-md-100 {
    gap: 100px 100px;
  }

  /* Grid spacing (column-gap) */

  .gspace-x-md-0 {
    column-gap: 0px;
  }

  .gspace-x-md-0 {
    column-gap: 0px;
  }

  .gspace-x-md-1 {
    column-gap: 10px;
  }

  .gspace-x-md-2 {
    column-gap: 20px;
  }

  .gspace-x-md-3 {
    column-gap: 30px;
  }

  .gspace-x-md-4 {
    column-gap: 40px;
  }

  .gspace-x-md-5 {
    column-gap: 50px;
  }

  .gspace-x-md-100 {
    column-gap: 100px;
  }

  /* Grid spacing (row-gap) */

  .gspace-y-md-0 {
    row-gap: 0px;
  }

  .gspace-y-md-1 {
    row-gap: 10px;
  }

  .gspace-y-md-2 {
    row-gap: 20px;
  }

  .gspace-y-md-3 {
    row-gap: 30px;
  }

  .gspace-y-md-4 {
    row-gap: 40px;
  }

  .gspace-y-md-5 {
    row-gap: 50px;
  }

  .gspace-y-md-100 {
    row-gap: 100px;
  }

  /* Grid spacing (row-gap & column-gap) */

  .grid-spacer-md-1 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .grid-spacer-md-2 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .grid-spacer-md-3 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }

  .grid-spacer-md-4 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }

  .grid-spacer-md-5 {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
  }

  .grid-spacer-md-100 {
    --bs-gutter-x: 100px;
    --bs-gutter-y: 100px;
  }

  /* Grid spacing (column-gap) */

  .grid-spacer-x-md-0 {
    --bs-gutter-x: 0px;
  }

  .grid-spacer-x-md-1 {
    --bs-gutter-x: 10px;
  }

  .grid-spacer-x-md-2 {
    --bs-gutter-x: 20px;
  }

  .grid-spacer-x-md-3 {
    --bs-gutter-x: 30px;
  }

  .grid-spacer-x-md-4 {
    --bs-gutter-x: 40px;
  }

  .grid-spacer-x-md-5 {
    --bs-gutter-x: 50px;
  }

  .grid-spacer-x-md-100 {
    --bs-gutter-x: 100px;
  }

  /* Grid spacing (row-gap) */

  .grid-spacer-y-md-0 {
    --bs-gutter-y: 0px;
  }

  .grid-spacer-y-md-1 {
    --bs-gutter-y: 10px;
  }

  .grid-spacer-y-md-2 {
    --bs-gutter-y: 20px;
  }

  .grid-spacer-y-md-3 {
    --bs-gutter-y: 30px;
  }

  .grid-spacer-y-md-4 {
    --bs-gutter-y: 40px;
  }

  .grid-spacer-y-md-5 {
    --bs-gutter-y: 50px;
  }

  .grid-spacer-y-md-100 {
    --bs-gutter-y: 100px;
  }
}

/* === 04. Tablet Spacing Responsive === */

@media screen and (min-width: 1025px) {
  /* Flex spacing (gap) */
  .gspace-lg-0 {
    gap: 0px 0px;
  }

  .gspace-lg-1 {
    gap: 10px 10px;
  }

  .gspace-lg-2 {
    gap: 20px 20px;
  }

  .gspace-lg-3 {
    gap: 30px 30px;
  }

  .gspace-lg-4 {
    gap: 40px 40px;
  }

  .gspace-lg-5 {
    gap: 50px 50px;
  }

  .gspace-lg-100 {
    gap: 100px 100px;
  }

  /* Grid spacing (column-gap) */

  .gspace-x-lg-0 {
    column-gap: 0px;
  }

  .gspace-x-lg-1 {
    column-gap: 10px;
  }

  .gspace-x-lg-2 {
    column-gap: 20px;
  }

  .gspace-x-lg-3 {
    column-gap: 30px;
  }

  .gspace-x-lg-4 {
    column-gap: 40px;
  }

  .gspace-x-lg-5 {
    column-gap: 50px;
  }

  .gspace-x-lg-100 {
    column-gap: 100px;
  }

  /* Grid spacing (row-gap) */

  .gspace-y-lg-0 {
    row-gap: 0px;
  }

  .gspace-y-lg-1 {
    row-gap: 10px;
  }

  .gspace-y-lg-2 {
    row-gap: 20px;
  }

  .gspace-y-lg-3 {
    row-gap: 30px;
  }

  .gspace-y-lg-4 {
    row-gap: 40px;
  }

  .gspace-y-lg-5 {
    row-gap: 50px;
  }

  .gspace-y-lg-100 {
    row-gap: 100px;
  }

  /* Grid spacing (row-gap & column-gap) */

  .grid-spacer-lg-0 {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
  }

  .grid-spacer-lg-1 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .grid-spacer-lg-2 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .grid-spacer-lg-3 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }

  .grid-spacer-lg-4 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }

  .grid-spacer-lg-5 {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
  }

  .grid-spacer-lg-100 {
    --bs-gutter-x: 100px;
    --bs-gutter-y: 100px;
  }

  /* Grid spacing (column-gap) */

  .grid-spacer-x-lg-0 {
    --bs-gutter-x: 0px;
  }

  .grid-spacer-x-lg-1 {
    --bs-gutter-x: 10px;
  }

  .grid-spacer-x-lg-1 {
    --bs-gutter-x: 10px;
  }

  .grid-spacer-x-lg-2 {
    --bs-gutter-x: 20px;
  }

  .grid-spacer-x-lg-3 {
    --bs-gutter-x: 30px;
  }

  .grid-spacer-x-lg-4 {
    --bs-gutter-x: 40px;
  }

  .grid-spacer-x-lg-5 {
    --bs-gutter-x: 50px;
  }

  .grid-spacer-x-lg-100 {
    --bs-gutter-x: 100px;
  }

  /* Grid spacing (row-gap) */

  .grid-spacer-y-lg-0 {
    --bs-gutter-y: 0px;
  }

  .grid-spacer-y-lg-1 {
    --bs-gutter-y: 10px;
  }

  .grid-spacer-y-lg-1 {
    --bs-gutter-y: 10px;
  }

  .grid-spacer-y-lg-2 {
    --bs-gutter-y: 20px;
  }

  .grid-spacer-y-lg-3 {
    --bs-gutter-y: 30px;
  }

  .grid-spacer-y-lg-4 {
    --bs-gutter-y: 40px;
  }

  .grid-spacer-y-lg-5 {
    --bs-gutter-y: 50px;
  }

  .grid-spacer-y-lg-100 {
    --bs-gutter-y: 100px;
  }
}

/* swiper */
.swiper {
  width: 100%;
  padding: 20px 0;
  display: grid;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.amenity-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  background: #fff;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 #7baa35;
}

.amenity-box img {
  height: 80px;
  object-fit: contain;
}

.amenity-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* hover effect */
.amenity-box:hover {
  transform: translateY(-5px);
}

.staff {
  width: 45px;
  height: 45px;
  object-fit: contain;
  background-color: #7baa35;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staffs {
  border: 5px solid #7baa35;
  border-radius: 20px;
}

/* slider */
.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 20s linear infinite;
}

.slide-track img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Image control */
.custom-room-card img {
  height: 200px;
  object-fit: cover;
}

/* Card full height */
.custom-room-card {
  border-radius: 12px;
  overflow: hidden;
}

/* Text control */
.card-text {
  font-size: 14px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .custom-room-card img {
    height: 180px;
  }

  .card-text {
    font-size: 13px;
  }
}

input[type="date"]:before {
  content: attr(placeholder);
  color: #999;
  position: absolute;
}

input[type="date"]:focus:before,
input[type="date"]:valid:before {
  content: "";
}

/* floating button */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

/* Colors */
.call-btn {
  background: #b73517;
}

.whatsapp-btn {
  background: #7baa35;
}

.float-btn :hover {
  color: #fdfdfd;
}

.top-btn {
  background: #333;
  border: none;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}

/* Hide scroll button initially */
#scrollTopBtn {
  display: none;
}

/* FORM CARD */
.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* INPUT GROUP */
.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

/* FLOATING LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 5px;
  color: #888;
  font-size: 13px;
  transition: 0.3s;
  pointer-events: none;
}

/* ACTIVE LABEL */
.form-group input:focus + label,
.form-group input:valid + label {
  top: -8px;
  font-size: 11px;
  color: #331e23;
}

/* SELECT */
.form-select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* IMAGE FIX */
img {
  height: 100%;
  object-fit: cover;
}

/* reservation  */
.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  background-color: transparent;
  color: white;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

select {
  background-color: #f5f7fa;
  color: #333;
}

select option {
  background-color: #f5f7fa;
  color: #000;
}
.masonry-gallery {
  column-count: 3;
  column-gap: 15px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  /* border-radius: 12px; */
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 992px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-gallery {
    column-count: 1;
  }
}
