/*
Theme Name: Fixwaale Theme
Theme URI: https://fixwaale.com
Author: Fixwaale
Description: Custom lightweight theme for Fixwaale Home Services with Elementor support.
Version: 1.0
*/

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

/* Top Header */
.top-header {
  background-color: #fff3e0;
  color: #6d4c41;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid #ffcc80;
}
.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-left { font-weight: 500; }
.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-icons { display: flex; gap: 10px; }
.social-icons img { width: 20px; height: 20px; }

/* Main Header */
.main-header {
  background-color: #ff8f00;
  color: #fff;
  padding: 10px 0;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.navbar-menu {
  display: flex;
  gap: 24px;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.navbar-menu a:hover {
  color: #ffe082;
}
.navbar-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: #2e2e2e;
  color: #ccc;
  padding: 15px 0;
  font-size: 14px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left { margin-bottom: 10px; }
.footer-right a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-right a:hover {
  color: #ff8f00;
}

@media (max-width: 768px) {
  .top-header .container,
  .main-header .container,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .navbar-toggle { display: block; }
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  .navbar-menu.active { display: flex; }
  .footer-right a {
    margin-left: 0;
    margin-right: 15px;
  }
}
