.elementor-321 .elementor-element.elementor-element-7d0fb66d{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-53c0bde0 */* { box-sizing: border-box; }
:root { --primary: hsl(50,100%,50%); }
body { margin:0; font-family:system-ui,sans-serif; }

/* Navbar */
.menu {
  background: #111;
  color: rgba(255,255,255,0.85);
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  padding: 8px 15px;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left: Logo */
.nav-left .nav-logo {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition:0.3s;
}
.nav-left .nav-logo:hover { color:hsl(50,100%,60%); }

/* Center: Menu */
.nav-center {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-item a { color: inherit; text-decoration: none; font-weight: 500; }
.nav-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.nav-item.active { color: var(--primary); font-weight: 600; text-shadow:0 0 6px hsla(50,100%,70%,0.8);}
.nav-item:not(:first-of-type) { border-left:1px solid rgba(255,255,255,0.1); }

/* Icons */
.icon > svg { width:18px; height:18px; stroke-width:2; transition:0.3s; }
.nav-item:hover .icon > svg { stroke: var(--primary); transform: scale(1.1); }

/* Right: Buttons */
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  padding: 7px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.login-btn { border: 1px solid white; color:white; background:transparent; }
.login-btn:hover { background:white; color:var(--primary); }
.signup-btn { background: linear-gradient(45deg,#f6e05e,#f59e0b); color:black; border:none; }
.signup-btn:hover { background: linear-gradient(45deg,#facc15,#d97706); transform:translateY(-2px); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap:4px; cursor:pointer; }
.nav-toggle span { width:25px; height:3px; background:white; border-radius:2px; }

/* Mobile */
@media(max-width:768px){
  .nav-container { flex-direction: column; gap:10px; }
  .nav-center, .nav-right { flex-direction: column; width:100%; text-align:center; }
  .nav-item { border-left:none; border-top:1px solid rgba(255,255,255,0.1); width:100%; justify-content:center;}
  .nav-toggle { display:flex; position:absolute; right:15px; top:10px;}
}/* End custom CSS */