/* =========================
   GLOBAL STYLES
========================= */
body {
  font-family: Georgia, serif;
  background-color: #fefbf7;
  margin: 0;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Times New Roman", serif;
  color: #000;
  margin-bottom: 10px;
}

p {
  font-family: Georgia, serif;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

/* =========================
   HEADER IMAGE
========================= */
header.hero {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.header-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
}

/* =========================
   TOP NAV
========================= */
.top-nav {
  text-align: center;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.top-nav a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.top-nav a:hover {
  color: #555;
}

/* =========================
   SEARCH BAR
========================= */
.search {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.search input {
  padding: 14px 20px;
  width: 90%;
  max-width: 400px;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #000;
  outline: none;
}

.search input:focus {
  border-color: #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* =========================
   FEATURED SLIDER
========================= */
.featured-slider-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.featured-slider {
  display: flex;
  gap: 30px;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

/* VENDOR CARDS */
.vendor-card {
  min-width: 320px;
  border-radius: 0; /* straight corners */
  overflow: hidden;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(210,180,140,0.2), 0 0 25px rgba(210,180,140,0.1) inset; /* beige glow */
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Shadow on hover */
.vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(210,180,140,0.3), 0 0 30px rgba(210,180,140,0.15) inset;
}

.vendor-card img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

.vendor-card h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.5rem;
  margin: 10px 0;
}

.vendor-card p {
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* SLIDER ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #000;
  background: rgba(255,255,255,0.8);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.slider-arrow.left { left: -20px; }
.slider-arrow.right { right: -20px; }

/* =========================
   SHOWCASE SECTION
========================= */
.join {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.apply-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 1.3rem;
  text-decoration: none;
  margin-top: 30px;
  transition: 0.3s;
  text-align: center;
}

.apply-button:hover {
  background: #333;
  transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */
footer {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 30px;
  border-top: 1px solid #eee;
  box-sizing: border-box;
  margin-top: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .featured-slider { width: 90%; }
  .slider-arrow { display: none; }
  .vendor-card { min-width: 90%; }
  .search input { width: 90%; }
  .join { padding: 0 10px; }
}
