* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  background: #0a0a0a;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
    url('images/hero_img.png')
    center / cover no-repeat;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 120px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── EXPLORE DROPDOWN ── */
.explore-wrap { position: relative; }

.btn-explore {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #0068F5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-explore:hover { background: #0056cc; }

.chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.btn-explore.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E2E4E9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 170px;
  overflow: visible;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
}

.dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dd-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #383838;
  cursor: pointer;
  transition: background 0.12s;
  border-radius: 6px;
  margin: 4px;
}

.dd-item:hover { background: #f0f4ff; color: #0068F5; }

.dd-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.sub-menu {
  position: absolute;
  left: calc(100% + 6px);
  top: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E2E4E9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.dd-item:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.sub-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #383838;
  text-decoration: none;
  transition: background 0.12s;
}

.sub-item:hover { background: #f0f4ff; color: #0068F5; }

/* ── NAV BUTTONS ── */
.btn-list {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.15s;
}

.btn-list:hover { background: rgba(255,255,255,0.22); }

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.avatar svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* ── HERO CONTENT ── */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 100px;
}

.hero-title {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 460px;
}

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 7px 7px 7px 22px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.22);
}

.search-icon {
  width: 18px;
  height: 18px;
  stroke: #868C98;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #383838;
  padding: 4px 14px;
}

.search-bar input::placeholder { color: #868C98; }

.search-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #0068F5;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.search-btn:hover { background: #0056cc; }

.search-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }

  .logo { font-size: 18px; }

  .btn-list {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-explore { padding: 8px 12px; font-size: 13px; }

  .hero-title { font-size: 38px; letter-spacing: -1px; }

  .hero-sub { font-size: 15px; margin-bottom: 28px; }

  .hero-content { padding: 40px 20px 60px; }

  .search-bar {
    border-radius: 50px;
    padding: 6px 6px 6px 16px;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .search-bar input { font-size: 13px; min-width: 0; }

  .search-btn { padding: 10px 16px; font-size: 13px; flex-shrink: 0; }

  .search-btn svg { display: none; }

  .sub-menu { left: auto; right: calc(100% + 6px); }
}