/* ===== NAVBAR ===== */
.navbar{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:20px;
  color:#8b0000;
}
.logo img{
  height:60px;
}

/* ===== NAV LINKS ===== */
.nav-links{
  margin-left: auto;
  display:flex;
  align-items:right;
  list-style:none;
  gap:22px;
}

/* Go Home Button */
.nav-links .home-btn{
  padding:7px 14px;
  border-radius:18px;
  background:#FFF1D6;
  color:#333;
  font-weight:600;
}

/* Normal Links */
.nav-links a{
  position:relative;
  text-decoration:none;
  color:#b91c1c;
  padding:6px 4px;
  font-weight:500;
  transition:.25s ease;
}

/* Hover effect */
.nav-links a:hover{
  color:#ff6b00;
}

/* Underline Active Effect */
.nav-links a .active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  border-radius:2px;
  background:linear-gradient(90deg,#ff8c00,#ff6b00);
}

/* Hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:auto;
}
.hamburger span{
  width:28px;
  height:4px;
  background:#333;
  border-radius:6px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .hamburger{display:flex;}

  .nav-links{
    position:absolute;
    top:64px;
    right:16px;
    background:#fff;
    flex-direction:column;
    width:210px;
    padding:16px;
    border-radius:14px;
    box-shadow:0 14px 32px rgba(0,0,0,.18);
    display:none;
  }

  .nav-links.show{display:flex;}

  .nav-links .home-btn{
    background:#fff7e8;
  }
}