/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: 'Inter', sans-serif;
  color: #343331;
  background: #ffffff;
}

/* Placeholder (temporary) */
.body-placeholder {
  background: #ccc;
  padding: 40px;
  font-size: 28px;
  font-weight: 600;
}
/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  border-bottom: 1px solid #eee;
}

/* Logo */
.logo-section img {
  height: 40px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #343331;
  font-size: 15px;
}

/* Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.signin {
  color: red;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile profile icon */
.mobile-profile {
  display: none;
  font-size: 22px;
}

/* MOBILE NAV BAR */
.mobile-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  display: none;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
  }

  .header-right {
    display: none;
  }

  .mobile-profile {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .header {
    padding: 12px 20px;
  }

  .logo-section img {
    height: 35px;
  }
}
