/* ========= Base ========= */
body {
  background: #000;
  color: #e9ecef;
  font-family: 'Inter', sans-serif;
}

/* ========= Navbar ========= */
.navbar { padding: 1.2rem 1.5rem; }
.navbar .nav-link { font-size: 1.1rem; font-weight: 500; }

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: .375rem;
}

/* ========= Hero ========= */
.hero {
  padding: 0;
  margin-bottom: 2rem;
}

.hero-frame {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}


@media (max-width: 768px) {
  .hero-frame { height: 180px; }
  .navbar .nav-link { font-size: 1rem; }
}

@media (min-width: 1400px) {
  .hero-frame { height: 280px; }
}
