/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BODY */
html, body {
  width: 100%;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* BACKGROUND FULL */
.hero {
  width: 100%;
  height: 100vh;
  background: url("./bg4.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GLASS BOX */
.center-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 620px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

/* LOGO FIX */
.logo {
  display: block;
  margin: 0 auto 28px;
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* SEARCH */
.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.search-box input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-box button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: #ffcc66;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.search-box button:hover {
  transform: translateY(-2px);
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.tab:hover {
  background: rgba(255,255,255,0.4);
}

.tab.active {
  background: #ffcc66;
  color: #222;
}

/* MOBILE */
@media (max-width: 480px) {
  .center-box {
    padding: 26px;
  }

  .logo {
    max-width: 220px;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    width: 100%;
  }
}
