/* FILE: css/layout.css */
.container {
  max-width: 1440px;
  margin: 0 auto;
  background: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-bg {
  width: 100%;
  background-color: black;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.header-inner {
  align-items: center;
  height: 100px;
}

.logo img {
  height: 80px;
}

.main-nav {
  margin-left: auto;
}


.nav-text {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}
.nav-text {
  opacity: 0.7;
}
.nav-links {
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile toggle hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */


