/* ===========================================================
   GENEL RESET & FONT AYARLARI
=========================================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f7f3;
  color: #333;
}

/* ===========================================================
   HEADER (ÜST MENÜ)
=========================================================== */
header {
  background-color: #1c1c1c !important;
  height: 77px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo img { height: 28px; }

#top_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.user_logged_in a { 
  display: flex; 
  align-items: center; 
  color: #fff; 
}

.avatar_circle {
  width: 32px;
  height: 32px;
  background-color: #fdd6e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
}

.user_name {
  margin-left: 6px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

/* ===========================================================
   ÜST KULLANICI MENÜSÜ
=========================================================== */
#userMenuContainer {
  position: relative !important;
  margin-top: 77px !important;
  background-color: #FCFBF3 !important;
  padding: 20px !important;
  text-align: center !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
  z-index: 10 !important;
}

.user-menu-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.user-menu-desktop .menu-item.active {
  color: #1b7d2f !important;
  font-weight: 600;
}

.user-menu-desktop .menu-item:hover {
  color: #1b7d2f !important;
  transition: 0.2s ease;
}

.user-menu-desktop .logout {
  color: #D5332E !important;
  font-weight: 600;
}

.user-menu-desktop .logout:hover { opacity: 0.8; }


@media (max-width: 991px) {
  .user-menu-desktop { display: none !important; }
  .user-menu-mobile { display: block !important; }
}



