
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  font-size: 17px;
}

.nav-link {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.nav-logo img {
  height: 60px; /* Larger logo */
  display: block;
  transform: translateY(-4px); /* Optical centering */
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
}

.hero-media {
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  color: white;
  text-shadow: 0 4px 14px rgba(0,0,0,0.6);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
  margin-bottom: 28px;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  align-items: center;
  width: 900px; /* As requested */
  max-width: 90%;
  background: white;
  padding: 12px 18px;
  border-radius: 60px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.search-input {
  flex: 1;
  border: none;
  font-size: 18px;
  padding-left: 12px;
}

.search-input:focus {
  outline: none;
}

.search-button {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.search-button img {
  width: 26px;
  height: 26px;
  display: block;
}
