*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== HEADER ===== */

.site-header {
  background: #f3f3f5;
  border-bottom: 1px solid #e0e0e0;
  
  width: 100%;
  box-sizing: border-box;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Sol Menü */
.nav-left {
  display: flex;
  gap: 24px;
  white-space: nowrap;
}

.nav-left a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
}

/* Sağ taraf */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language dropdown */
#language-dropdown {
  font-family: inherit;
  font-size: 14px;
  padding: 4px 6px;
}

.nav-link {
  color: #222;
  font-weight: 400;
  text-decoration: none;
}

/* ACTIVE STATE */
.page-home .nav-home,
.page-watch-faces .nav-watch-faces,
.page-games .nav-games,
.page-apps .nav-apps,
.page-contact .nav-contact,
.page-privacy-policy .nav-privacy-policy {
  color: #007acc;
  font-weight: 700; /* GoogleSans-Bold */
}

.nav-left a.active,
.mobile-menu a.active {
  color: #007acc;
  font-weight: 700; /* GoogleSans-Bold */
}

/* Burger */
.burger {
  display: none;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 4px;
}

.burger span {
  display: block;
  height: 2px;
  background: #222;
  margin: 5px 0;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .nav {
    justify-content: flex-end;
  }

  .nav-left {
    display: none;
  }

  .burger {
    display: block;
  }
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 240px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.mobile-menu a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

.mobile-menu.active {
  right: 0;
}
