body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  z-index: 1000;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  letter-spacing: 2px;
}

/* HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  letter-spacing: 2px;
}

.hero p {
  max-width: 600px;
  opacity: 0.8;
}

.hero button {
  margin-top: 20px;
  padding: 14px 30px;
  background: gold;
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* IMAGE BANNER */
.image-banner {
  position: relative;
}

.image-banner img {
  width: 100%;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
}

/* OVERLAY SECTION */
.overlay-section {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
}

.overlay-content {
  background: rgba(0,0,0,0.7);
  padding: 40px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

/* CARD SECTION */
.card-section {
  padding: 80px 20px;
  text-align: center;
}

.card {
  background: #111;
  padding: 20px;
  margin: auto;
  max-width: 400px;
  border-radius: 10px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* JOIN SECTION */
.join-section {
  background: #7a0019;
  padding: 100px 20px;
  text-align: center;
}

.join-section input {
  display: block;
  margin: 10px auto;
  padding: 12px;
  width: 80%;
  max-width: 350px;
  border: none;
  border-radius: 5px;
}

.join-section button {
  background: gold;
  padding: 12px 25px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* SCROLL CONTAINER (USED FOR PEOPLE + PRODUCTS) */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* PEOPLE SECTION */
.people-section {
  padding: 100px 20px;
  text-align: center;
}

.people-section h2 {
  margin-bottom: 20px;
}

.people-section img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

/* PRODUCT SECTION */
.product-section {
  padding: 100px 20px;
  text-align: center;
  background: #111;
}

.product-section h2 {
  margin-bottom: 20px;
}

.product-card {
  min-width: 220px;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card p {
  margin-top: 10px;
  color: gold;
  font-weight: bold;
}

/* SEE ALL BUTTON */
.see-all {
  margin-top: 20px;
  padding: 12px 25px;
  background: gold;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #7a0019;
  text-align: center;
  padding: 30px;
}