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

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #0b0b0b;
  color: #ffffff;
}

/* TOP BAR */
.top-bar {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  border-bottom: 1px solid #222;
}

.navbar h1 {
  color: #d4af37;
  font-size: 24px;
  letter-spacing: 2px;
}

.navbar nav a {
  color: #d4af37;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #ffffff;
}

/* HERO SECTION */
.hero {
  height: 85vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h2 {
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.hero-text button:hover {
  background: #ffffff;
}

/* TRUST SECTION */
.trust {
  display: flex;
  justify-content: space-around;
  padding: 25px;
  background: #111;
  text-align: center;
  font-size: 14px;
}

.trust div {
  color: #d4af37;
}

/* COLLECTIONS */
.collections {
  padding: 50px 20px;
  text-align: center;
}

.collections h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #d4af37;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #1a1a1a;
  border: 1px solid #d4af37;
  padding: 10px;
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card p {
  margin-top: 10px;
  color: #d4af37;
}

/* GOLD PRICE */
.gold-price {
  padding: 40px;
  text-align: center;
  background: #111;
}

.gold-price h2 {
  color: #d4af37;
  margin-bottom: 10px;
}

/* CALCULATOR */
.calculator {
  padding: 40px;
  text-align: center;
}

.calculator input,
.calculator select {
  padding: 10px;
  margin: 10px;
  width: 200px;
  border: none;
}

.calculator button {
  padding: 10px 20px;
  background: #d4af37;
  border: none;
  cursor: pointer;
}

.calculator h3 {
  margin-top: 15px;
  color: #d4af37;
}

/* PRODUCTS */
.products {
  padding: 50px 20px;
  text-align: center;
}

.products h2 {
  margin-bottom: 30px;
  color: #d4af37;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #999;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    height: 60vh;
    padding: 20px;
  }

  .hero-text h2 {
    font-size: 26px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust {
    flex-direction: column;
    gap: 10px;
  }

}