/* Launch Banner Styles */
.launch-banner {
  background: linear-gradient(135deg, #44b27b, #224154);
  color: white;
  text-align: center;
  padding: 1rem;
}

.beta-tag {
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  margin-right: 0.5rem;
}
.logo-text {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #22223b;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-left: 0.3em;
}
/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.2em;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  padding: 0 0.5em;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* anchor the menu to the right of the toggle so it doesn't overflow on small screens */
  left: auto;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 120px;
  z-index: 200;
  border-radius: 6px;
  padding: 0.5em 0;
  /* make sure the menu can't exceed the viewport on narrow screens */
  max-width: calc(100vw - 2rem);
  /* small offset from the edge */
  margin: 0.25rem;
  box-sizing: border-box;
}
  /* Show menu when toggled via JS (for touch devices) */
  .dropdown.open .dropdown-menu {
    display: block;
  }

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.5em 1.2em;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #44b27b;
}

/* Remove inline style from icon */
.dropdown-toggle .menu-icon {
  font-size: 1.2em;
  vertical-align: middle;
}
/* Header Styles */
header {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.nav-links a:hover { 
  color: #44b27b; 
}

/* Media queries for header */
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }
  
  .logo {
    font-size: 0.9rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
}