/* Modern Tabs SCSS */
.hero-section {
  position: relative;
  width: 100%;
  background-color: #262637;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 576px) {
  .hero-section {
    display: none;
  }
}
.hero-section .hero-background {
  position: relative;
  width: 100%;
}
.hero-section .hero-background img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-section .hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(38, 38, 55, 0.7), rgba(38, 38, 55, 0.9));
}
.hero-section .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px;
  z-index: 10;
}
.hero-section .hero-content .logo-container {
  text-align: center;
  margin-bottom: 3px;
}
.hero-section .hero-content .logo-container .logo-hero {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.hero-section .hero-content .logo-container .hero-title {
  font-size: 20px;
  font-weight: 500px;
  margin-bottom: 3px;
  text-align: center;
}

/* Modern Tab Design */
.property-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}
.property-tabs .tab-item {
  flex: 1;
  text-align: center;
  padding: 15px 20px;
  background-color: #fff;
  color: #222222;
  font-weight: 500px;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 0 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.property-tabs .tab-item:hover {
  background-color: #f7f7f7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.property-tabs .tab-item.active {
  background-color: rgb(227, 113, 44);
  color: white;
}
.property-tabs .tab-item.tab-sale {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0;
}
.property-tabs .tab-item.tab-rent {
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
}
.property-tabs .tab-item.tab-daily {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 0;
}

/* Responsive Styles using variables */
@media (max-width: 768px) {
  .hero-title {
    font-size: 16px;
  }
  .logo-hero {
    width: 80px;
  }
  .property-tabs {
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
  }
  .property-tabs .tab-item {
    padding: 10px;
    font-size: 14px;
    border-radius: 4px !important;
    margin: 0 2px;
  }
}
/* For mobile devices */
@media (max-width: 576px) {
  .hero-content {
    padding: 15px 10px;
  }
  .hero-title {
    font-size: 16px;
  }
  .property-tabs {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .property-tabs .tab-item {
    margin: 2px 0;
    width: 100%;
  }
}
/* For small mobile devices */
@media (max-width: 420px) {
  .hero-title {
    font-size: 14px;
  }
  .logo-hero {
    width: 70px;
  }
}
/* Fix for medium-sized screens */
@media (min-width: 576px) and (max-width: 992px) {
  .property-tabs {
    width: 90%;
  }
}/*# sourceMappingURL=modern-tabs.css.map */