.main-header .logo img {
  max-width: 80% !important;
  height: auto;
}

.banner-section .content-box .btn {
  width: 190px !important;
}

.sticky-header .logo img {
  max-height: 80% !important;
}

.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 40% black overlay */
  z-index: 1;
}

.content-box {
  position: relative;
  z-index: 2;
}

.checkout-form-section .checkout-form {
  background: #f7eeee;
}

.mb-4 {
  text-align: center;
}

.split-container {
  display: flex;
}

.left-side,
.right-side {
  flex: 1; /* Each takes 50% */
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.rooms-section {
  padding: 0%;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.contact-separator {
  text-align: center;
  font-size: 0.9em;
  color: #777;
}

.phone-option,
.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.phone-option {
  background: #25d366;
  color: #333;
}

.whatsapp-option {
  background: #25d366;
  color: white;
}

.whatsapp-option:hover {
  background: #128c7e;
}

.logo-img-wrapper {
  position: relative;
  /* Needed for absolute positioning of blurred bg */
  max-width: 220px;
  margin: auto;
  border-radius: 80px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  place-items: center;
}

/* Blurred background (pseudo-element) */
.logo-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7eeee;
  /* Your desired background color */
  filter: blur(14px);
  /* Positive value (not negative) */
  z-index: -1;
  /* Places it behind the image */
  border-radius: inherit;
  /* Matches parent's border-radius */
}

/* Logo image styling */
.logo-img-wrapper img {
  display: block;
  /* Removes extra space under img */
  width: 100%;
  height: auto;
  border-radius: inherit;
  /* Rounded corners */
  position: relative;
  /* Ensures it stays above the blurred bg */
}

/* Hover effects */
.logo-img-wrapper:hover {
  transform: scale(1.05);
  /* Slight zoom */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /* Enhanced shadow */
}


.mobile-menu .nav-logo img {
    max-height: max-content !important;
}