
/* ===== Global Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Body Styling ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: url('/fileadmin/Buyingct_site/Content/Buyers/Buyers-background.svg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header Styling ===== */
header {
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

.header-left img {
  height: 100px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5a85c2;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content li a {
  padding: 10px;
  display: block;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.rent-map-box {
  background: rgba(255, 255, 255, 0.3); /* Soft opacity box */
  border-radius: 12px;
  padding: 1rem 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rent-map-link {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: #003366; /* Match your site colors */
  transition: background 0.3s, color 0.3s;
}

.rent-map-link:hover {
  background: #003366;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
