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

/* Navbar */
/* .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
} */

.navbar {
  display: flex;
  justify-content: space-between; /* logo left, menu right */
  align-items: center;
  padding: 15px 20px;
  background: #000;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  height: 32px;
}

.logo-text {
  color: white;
  font-weight: 600;
  font-size: 20px;
}

.nav-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.btn-signup {
  background: linear-gradient(to right, #0e83f0, #3fa9f5);
  color: white;
  padding: 10px 40px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

/* Menu icon hidden by default */
.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Mobile menu hidden initially */
.nav-right {
  display: flex;
  gap: 16px;
}

/* Footer Styles */
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.heart-logo {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  margin-right: 5px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 180px;
  margin: 10px;
}

.footer-logo {
  width: 30px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 5px; /* space between image and text */
  margin-bottom: 10px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff; /* adjust color to match your theme */
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column p {
  font-size: 14px;
  color: #ccc;
  max-width: 250px;
}

/* Bottom Bar */
.footer-bottom {
  background: linear-gradient(to right, #0e83f0, #3fa9f5);
  text-align: center;
  padding: 14px 16px;
  font-size: 14px;
  color: white;
}

.footer-bottom p {
  display: inline-flex;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom p {
    display: block;
  }

  .menu-icon {
    display: block; /* show hamburger in mobile */
  }

  .nav-right {
    display: none; /* hide menu by default */
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    gap: 12px;
    z-index: 999;
  }

  .nav-right.show {
    display: flex; /* show menu when toggled */
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo-icon {
    height: 32px;
  }
}


