/* ===================== GLOBAL RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================== NAVBAR ===================== */
header {
  width: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(136, 13, 13, 0.95); /* SAME everywhere */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  z-index: 9999;
}

/* ===================== LOGO ===================== */
.logooo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* ===================== DESKTOP MENU ===================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

/* Menu items */
.nav-links li {
  display: flex;
  align-items: center;
  gap: 6px;                 /* space around "/" */
  white-space: nowrap;     /* 🔑 prevents wrapping */
}

/* Menu links */
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd6d6;
}

/* ===================== HAMBURGER ===================== */
.menu-toggle {
  display: none;
}

/* ===================== MOBILE ===================== */
@media (max-width: 767px) {

.logooo {
  display: block;
  width: 120px;        /* good mobile size */
  height: auto;
}


  /* Show hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
  }

  /* Mobile menu container */
  .nav-links {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(136, 13, 13, 0.97);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    font-size: 16px;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #880d0d;        /* 🔒 SOLID COLOR (HOME LOOK) */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  z-index: 9999;
}
/* 🔧 FORCE LOGIN / SIGNUP SLASH COLOR */
.nav-links li {
  color: #fff;
}
