/* UI/UX Refinements */

/* ===== 1. COLOR CONSISTENCY ===== */

/* Using dark red (#e63946) as the consistent brand accent color */

/* Navigation menu hover/active state */
.m_tag:hover,
.m_tag:focus {
  color: #fff !important;
  background: #e63946 !important;
}

.active_tab {
  color: #fff !important;
  background: #e63946 !important;
}

/* Change all orange accent colors to dark red */
#header .header_1l h2 a .col_1,
#menu .navbar-brand .col_1,
.footer_logo h2 .col_1,
.top-contact-info i,
.top-contact-info a:hover,
#footer ul li a:hover,
.footer_social a:hover i,
.footer_2 a.col_1 {
  color: #e63946 !important;
}

/* For "On Sale" badges and callouts */
.col_1, 
.span_3.col_1 {
  color: #e63946 !important;
}

/* ===== 2. BUTTON & TEXT CONTRAST ===== */

/* Get in Touch Button with improved contrast */
.get-in-touch-btn {
  background: #e63946 !important;
  color: white !important;
  padding: 10px 22px !important; /* Slightly larger */
  font-size: 16px !important;
  border-radius: 5px !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.get-in-touch-btn:hover {
  background: #c1272d !important; /* Darker shade for hover */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3) !important;
}

/* Call-to-action buttons */
.button,
.button_1,
.carousel-caption a.button {
  background: #e63946 !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

.button:hover,
.button_1:hover,
.carousel-caption a.button:hover {
  background: #c1272d !important;
}

/* ===== 3. FOOTER CONTENT IMPROVEMENTS ===== */

/* Footer section separators */
.footer_col_section {
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-left: 20px !important;
}

@media (max-width: 767px) {
  .footer_col_section {
    border-left: none !important;
    padding-left: 15px !important;
    margin-top: 30px !important;
  }
}

/* Enhanced Footer headings */
#footer h4 {
  position: relative;
  padding-bottom: 15px !important;
  margin-bottom: 20px !important;
  font-size: 18px !important;
  letter-spacing: 0.5px !important;
}

#footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: #e63946 !important;
}

/* Footer social links with icons */
.footer_social {
  margin-top: 20px !important;
}

.footer_social a {
  display: inline-block !important;
  margin-right: 15px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
}

.footer_social i {
  background: rgba(255, 255, 255, 0.1) !important;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  text-align: center !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.footer_social a:hover i {
  background: #e63946 !important;
  color: white !important;
  transform: translateY(-3px) !important;
}

/* Enhanced footer links */
#footer ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
  transition: all 0.3s ease !important;
}

#footer ul li:last-child {
  border-bottom: none !important;
}

#footer ul li a {
  position: relative;
  padding-left: 15px !important;
  transition: all 0.3s ease !important;
}

#footer ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  color: #e63946 !important;
}

#footer ul li a:hover {
  padding-left: 18px !important;
  color: #fff !important;
}

/* ===== 4. HEADER LOGO VISIBILITY ===== */

/* Larger logo */
#header .header_1l h2 {
  font-size: 28px !important; /* 15-20% larger */
  margin-top: 0 !important;
}

#header .header_1l h2 a i {
  font-size: 24px !important;
  margin-right: 8px !important;
}

/* Mobile responsive logo */
@media (max-width: 767px) {
  #header .header_1l h2 {
    font-size: 24px !important;
    text-align: center !important;
  }
}

/* ===== 5. GENERAL UX IMPROVEMENTS ===== */

/* Consistent hover effects */
a:hover {
  color: #e63946 !important;
  text-decoration: none !important;
}

/* Improved form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 1px solid #444 !important;
  background-color: #333 !important;
  color: #fff !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
}

/* Newsletter section improvements */
.newsletter_form .button {
  background: #e63946 !important;
  color: white !important;
  padding: 8px 15px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.newsletter_form .button:hover {
  background: #c1272d !important;
}

/* Improved carousel caption */
.carousel-caption {
  background: rgba(0, 0, 0, 0.5) !important;
  padding: 20px !important;
}
