/* Base styles - minimal, modern theme overrides take precedence */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #e6f0fa;
}

.top-bar {
  background-color: #2c3e50;
  color: #f0e5d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  text-align: center;
  padding-left: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 44px; /* Fixed height for consistent positioning */
}

.top-bar .site-logo {
  max-height: 25px;
  /* Adjust as needed */
  margin-top: 0px;
  width: auto;
  /* Maintain aspect ratio */
  /* Other styling as needed */
}

.top-bar .logo {
  max-height: 20px;
  /* Adjust as needed */
  width: auto;
  /* Maintain aspect ratio */
  margin-top: 1px;
  /* Other styling as needed */
}

.top-bar h1 {
  font-family: 'Lato', sans-serif;
  margin: 0;
  font-size: 24px padding-left: 60px;
}

.top-bar p {
  margin: 0;
  font-size: 14px;
}

.hamburger-menu {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 250; /* Above fixed topbar */
}

/* Adjust for iOS devices */
@media screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .hamburger-menu {
    left: 10px;
  }
}

.hamburger-menu button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #e6f0fa;
}

.hamburger-menu-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 18%;
  color: #2c3e50;

  font-size: 16px;
  cursor: pointer;
  margin-left: 0px;
  text-align: center;
  /* Removed margin-bottom and vertical-align as they were not valid or necessary */
}

.top-bar .logo-container {
  display: flex;
  align-items: center;
  /* Aligns items vertically in the center */
}

.top-bar .logo-separator {
  color: #fff;
  margin: 0 12px;
  align-self: flex-start;
  /* Aligns the 'by' phrase a bit higher */
  padding-top: 7px;
  /* Adjust padding for fine-tuning */
}

.language-toggle {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0; /* Remove uneven padding */
  margin-left: auto;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
}

.language-toggle button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px 6px;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
}

.language-toggle button.active-language {
  background-color: #2980b9;
  /* Aktif buton için mavi arka plan */
  color: white;
  /* Aktif buton için beyaz yazı rengi */
}

.active-language {
  background-color: #2980b9;
  /* Blue background */
  color: white;
  /* White text */
  border-radius: 5px;
  /* Rounded corners */
}

/* Theme Toggle Button (Classic Theme) */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn i {
  font-size: 14px;
}