.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: system-ui, sans-serif;
  z-index: 1000;
}

.menu__logo {
  font-family: 'Logo', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
   color: white;
}

.menu__links {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu__links a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Headline', sans-serif;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu__links a:hover {
   color: #F40000; 
   opacity: 1;
}

.menu__cta {
  padding: 0.6rem 1rem;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
  font-family: 'Basic text', sans-serif;
}

.menu__cta:hover {
  background: #f40000;
  border-color: #f40000;
  color: white;
}

.menu__toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: color 0.2s ease;
}

.menu__toggle:hover {
  color: #f40000;
}

/* Mobile */
@media (max-width: 768px) {
  .menu__links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .menu__links.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .menu__toggle {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}