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

html, body {
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --gold: #d4af37;
  --gold-soft: #c9a86a;
  --white-soft: #e0e0e0;
  --max-width: 1200px;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), #000 80%);
  z-index: -1;
}
.hero-content {
  max-width: 800px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  max-width: var(--max-width);
  margin: auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}
.section p {
  color: var(--white-soft);
}
.section ul {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}
.section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* PRODUCTS */
.center {
  text-align: center;
}
.products {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1100px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .products {
    grid-template-columns: 1fr;
  }
}
.product-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(212,175,55,0.3);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card h3 {
  margin-top: 15px;
  font-size: 1.1rem;
}
.product-card p {
  color: var(--gold);
  margin-top: 5px;
}

/* FOOTER */
footer {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background: #000;
}
footer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1;
}
footer p {
  color: #aaa;
}
