/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #020617;
  color: #e2e8f0;
}

/* ===== NAVBAR ===== */
.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 30px; /* tighter */
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;   /* FIXED SIZE */
  width: auto;
}

.brand{
  font-size: 2.3rem;
  font-weight: bold;
    margin-left: 15px;


  background: linear-gradient(
    120deg,
    #f88838 40%,
    #ffffff 50%,
    #f88838 60%
  );

  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: shineText 3s linear infinite;
}

@keyframes shineText{
  0%{
    background-position: -200% center;
  }
  100%{
    background-position: 200% center;
  }
}

/* NAV LINKS */
nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

nav a {
  margin-right: 20px;
  color: #e5e7ec;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: #38bdf8;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  position: absolute;
  right: 25px;
  top: 15px;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #0f172a;
    position: absolute;
    right: 20px;
    top: 85px;
    padding: 15px;
    border-radius: 10px;
  }

  nav.show { display: flex; }
  .menu-toggle { display: block; }
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #0f172a;
  margin-top: 60px;
}    
