* {
  box-sizing: border-box;
}
/* ==================================nav bar */
.left-section {
  display: flex;
  align-items: center;
}

.menu-btn {
  padding: 10px;
  color: #2c3e50;
  cursor: pointer;
  margin-right: 0; /* No gap between three dots and logo */
}

.menu-content {
  display: none;
  position: fixed;
  top: 0;
  background-color: #2c3e50;
  width: 250px;
  height: 100vh;
  padding: 20px;
  z-index: 2;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.menu-content.active {
  left: 0;
  display: block;
}

/* Links inside menu */
.menu-content a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 18px;
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-content a i {
  margin-right: 12px;
  font-size: 20px;
  color: #ffc107; /* Icon color */
}

.menu-content a:hover {
  color: #17a2b8;
}

/* Special highlight button */
.attention-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  margin-top: 15px;
  font-weight: bold;
  border-radius: 6px;
  transition: transform 0.2s ease-in-out;
  text-align: center;
}

.attention-button:hover {
  transform: scale(1.05);
}

/* Bottom list styling */
.menu-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.menu-content ul li {
  margin-bottom: 10px;
}

.menu-content ul li a {
  font-size: 16px;
  color: #ccc;
}

.menu-content ul li a:hover {
  color: #fff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #fff;
  transform: scale(1.2);
}

/* HR and paragraph tweaks */
.menu-content hr {
  border-top: 1px solid #555;
  margin: 20px 0;
}

.menu-content p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #aaa;
}
