:root {
  --primary: #161926;
  --secondary: #EDBE66;
  --accent: #F5E6CC;
  --muted: #2A2E3D;
  --glass: rgba(22, 25, 38, 0.9);
  --glass-dark: rgba(22, 25, 38, 0.95);
  --border: rgba(237, 190, 102, 0.15);
  --text-dim: rgba(245, 230, 204, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  color: white;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

.label {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 4px;
  color: var(--secondary);
  text-transform: uppercase;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 2.5rem;
}

.link {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--secondary);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-gold {
  background: var(--secondary);
  color: var(--primary);
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

.nav_button{
  display: inline-block;
  margin: 0;
}

.hero {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(22, 25, 38, 0.6), rgba(22, 25, 38, 0.6)), 
              url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 0 2rem;
}

.hero .title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero .title span {
  font-style: italic;
  color: var(--secondary);
}

.hero .sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
  max-width: 600px;
}

.search {
  background: var(--glass);
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 900px; /* a bit wider to accommodate larger inputs */
  border: 1px solid rgba(237, 190, 102, 0.3);
  border-radius: 8px;
}

.search .input {
  background: transparent;
  border: none;
  padding: 1.25rem 1rem; /* larger padding for bigger box */
  color: white;
  flex: 1;
  outline: none;
  font-size: 1.05rem; /* bigger placeholder / input text */
  min-height: 48px;
}

.search .input::placeholder {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
}

.section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.card {
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-name {
  font-size: 1.5rem;
}

.card-price {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.25rem;
}

.card-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer {
  background: var(--muted);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  border-top: 1px solid var(--border);
}

.foot-head {
  color: var(--secondary);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.foot-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav { padding: 1rem 2rem; }
  .menu { display: none; }
  .hero .title { font-size: 2.5rem; }
  .grid { grid-template-columns: 1fr; }
  .search { flex-direction: column; }
  .search .input { font-size: 1rem; padding: 0.9rem; min-height: 44px; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .foot-list { align-items: center; }
}