/* ---------------- Global Styles ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;800&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #111;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar a {
  padding: 10px 15px;
  font-weight: 600;
  color: #222;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #e5b85c;
}
.navbar div:first-child {
  font-weight: 900;
  font-size: 1.6rem;
  color: #000;
}

/* Hero */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.hero-subtitle {
  font-size: 1.8rem;
  margin-top: 15px;
  font-weight: 300;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Buttons */
.btn {
  margin: 20px 10px 0 10px;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.btn-primary {
  background: #e5b85c;
  color: #000;
  border: none;
}
.btn-primary:hover {
  background: #b38640;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover {
  background: #1DA851;
}

/* Sections */
.section {
  padding: 70px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.section h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* Grid */
.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Product Card */
.product-card {
  width: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.product-card h4 {
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 22px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .product-card {
    width: 90vw;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}