/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  background: #fff;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 80px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 180px);
}

.brand-icon,
.text-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.brand-icon:hover,
.text-logo:hover {
  opacity: 0.7;
}

.brand-icon img {
  height: 28px;
  width: auto;
  display: block;
}

.text-logo img {
  height: 38px;
  width: auto;
  max-width: 100%;
  display: block;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #111;
  transition: opacity 0.2s ease;
}

.nav-icon:hover {
  opacity: 0.6;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../assets/hero-bg.jpg") center center / cover no-repeat;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 480px) {
  .navbar {
    height: 56px;
    padding: 0 16px;
  }

  .brand-icon img {
    height: 24px;
  }

  .text-logo img {
    height: 30px;
  }

  .nav-left,
  .nav-right {
    min-width: 64px;
    gap: 14px;
  }

  .nav-icon {
    width: 22px;
    height: 22px;
  }
}
