/* ================== RESET ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================== VARIABILE ================== */
:root {
  --bg: #f4f6f9;
  --accent: #f5c518;
  --accent-dark: #e6b800;
  --dark: #0d1015;
  --muted: #6b7280;
  --white: #fff;
  --red: #d73b3b;
  --transition: 0.25s;
}

/* ================== BODY ================== */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: #111;
  scroll-behavior: smooth;
}

/* ================== CONTAINER ================== */
.container {
  width: 92%;
  max-width: 1250px;
  margin: 0 auto;
}

/* ================== TOP STRIP ================== */
.top-strip {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 0;
}

.top-strip.red { background: var(--red); color: #fff; }

.top-strip.yellow {
  background: var(--dark);
  color: #fff;
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 8px 10px;
}

/* ================== HEADER ================== */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.header-logo img { height: 56px; }

.user-area {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* ================== NAVBAR ================== */
.navbar {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar ul {
  display: flex;
  gap: 22px;
  list-style: none;
  justify-content: center;
  padding: 12px 0;
}

.navbar a.nav-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--accent);
  transition: all 0.3s ease;
}

.navbar a.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245,197,24,0.4);
}

/* ================== HAMBURGER ================== */
.hamburger {
  display: none; /* ❌ desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 3000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ================== MEDIA QUERY MOBIL ================== */
@media (max-width: 768px) {

  .hamburger {
    display: flex; /* ✅ doar telefon */
    position: absolute;
    right: 20px;
    top: 18px;
  }

  .navbar ul {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100%;
    background: #111;
    flex-direction: column;
    padding: 90px 20px;
    gap: 18px;
    transition: left 0.35s ease;
    z-index: 2500;
  }

  .navbar ul.show {
    left: 0;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
  }
}