/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body */
body {
  background: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #0f2a45;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Welcome Section */
.welcome {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.welcome h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.welcome p {
  margin-bottom: 20px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0f2a45;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #154065;
}

/* Features Section */
.features {
  padding: 40px 20px;
  margin: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.features h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

#promoted-items {
  padding: 15px;
  background: #f1f4f9;
  border-radius: 6px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background: #0f2a45;
  color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0f2a45;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 4px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
