:root {
  --bg: #f8f7f4;
  --text: #1a1a1a;
  --accent: #d4af37;
  --shadow: rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5vw;
  background: #fff;
  box-shadow: 0 2px 10px var(--shadow);
}

header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero {
  display: grid;
  place-items: center;
  height: 100vh;
  width: 100%;
  background: url("imgs/bkg2.png") center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.hero h2 {
  font-size: 4rem;
  z-index: 1;
  position: relative;
}

.products {
  padding: 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  /* height: 150px;
  object-fit: cover; */
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product h3 {
  margin-bottom: 0.5rem;
}

.product p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #eee;
  margin-top: 4rem;
}
