/* ===== EKIBIMIZ SAYFASI - INLINE CSS ===== */

/* Breadcrumb Navigation */
nav[aria-label="breadcrumb"] {
  padding: 1rem 2rem;
  background: rgba(15, 15, 15, 0.8);
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
}

nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

nav[aria-label="breadcrumb"] a {
  color: var(--gold);
  text-decoration: none;
}

nav[aria-label="breadcrumb"] li {
  color: #9ca3af;
}

nav[aria-label="breadcrumb"] span {
  color: var(--gold);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  min-height: 50vh;
}

.hero-title {
  --delay: 0s;
}

.hero-subtitle {
  --delay: 0.1s;
}

.hero-description {
  --delay: 0.2s;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

/* Filter Button Icons */
.filter-btn i {
  margin-right: 0.5rem;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
}

/* Footer Logo */
.footer-container img {
  max-width: 300px;
  height: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
}

/* Navbar Styles */
.company-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.company-btn::before {
  content: attr(data-label);
  position: absolute;
  left: 100%;
  white-space: nowrap;
  transition: left 0.3s ease;
}

.company-btn:hover::before {
  left: 0;
  margin-left: 0.5rem;
}

/* Custom Cursor */
body::before {
  content: "";
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 9999;
  display: none;
  top: 0;
  left: 0;
}

body.show-cursor::before {
  display: block;
}

/* Hide default cursor when custom cursor active */
body.show-cursor {
  cursor: none;
}

/* Responsive Mobile Menu Button */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .company-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .company-btn::before {
    display: none;
  }
}
