/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Topbar */
.topbar {
  width: 100%;
  min-height: 55px;
  background: #ffefef;
  font-size: 13px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  width: 100%;
}

/* Location text */
.topbar-location {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1%;
  text-transform: capitalize;
  color: #000;
  opacity: 1;
}

/* Social icons */
.topbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-social .social-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s ease;
}

.topbar-social .social-icon:hover {
  transform: scale(1.1);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;      /* stack location + social vertically */
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .topbar-location {
    font-size: 14px;            /* slightly smaller font */
  }

  .topbar-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 12px;
    padding: 8px 12px;
  }

  .topbar-location {
    font-size: 13px;
  }

  .topbar-social .social-icon {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}
