/*
Theme Name: Homey Child
Theme URI: http://themeforest.net/user/favethemes/
Author: Favethemes
Author URI: http://themeforest.net/user/favethemes/
Description: Homey is a powerful booking platform that lets you run a residential or commercial
rental business online with no hassle
Version: 1.0.0
Tags: right-sidebar, left-sidebar, custom-colors, custom-menu, featured-images, post-formats, theme-options, translation-ready
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: homey
Template: homey
*/


/* Your CSS code goes here
-------------------------------------- */
/* Make sure this only affects inside header */
.header-nav .raahtak-search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 12px 20px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-nav .raahtak-search-bar input.form-control {
  /* Search input inside header */
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 12px;
  background: transparent;
  width: 100%;
}

.header-nav .raahtak-search-bar .btn {
  background-color: #2962ff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.header-nav .raahtak-search-bar .btn svg {
  width: 18px;
  height: 18px;
}

.header-nav .raahtak-header-padding {
  margin-top: 15px;
  margin-bottom: 15px;
}

.header-nav .raahtak-header-search-form {
  transition: all 0.3s ease;
}

.header-nav.is-sticky .raahtak-header-search-form {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 8px;
}
/* Wrapper box: grey rounded bar */
.homey-reset-wrapper {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 999px; /* fully rounded */
    padding: 10px 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin: 0 auto;
}

/* Left icon: email */
.homey-reset-wrapper .icon-left {
    font-size: 16px;
    margin-right: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

/* Email input field */
.homey-reset-wrapper input[type="email"] {
    border: none;
    background: transparent;
    flex-grow: 1;
    font-size: 14px;
    outline: none;
    color: #000;
    padding: 8px 0;
}

/* Arrow button on right */
.homey-reset-wrapper .arrow-button {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding-left: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.homey-reset-wrapper .arrow-button:hover {
    transform: translateX(4px);
}
.custom-card-image {
    position: relative;
    overflow: hidden;
}

.custom-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Change to 30%, 50% as per effect */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 1;
}
.custom-listing-image {
    position: relative;
    z-index: 0;
}