/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #FAFAF9;
  color: #1A1A1A;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-size: 28px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1495020689067-958852a7765e') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
}
.hero-content h1 {
  font-size: 52px;
}
.hero-content p {
  font-size: 20px;
  margin: 16px 0;
}
.btn {
  padding: 14px 36px;
  border: none;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #D4AF37;
  color: #000;
}

/* Products */
.products {
  padding: 80px 0;
  background-color: #fff;
}
.products h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.product-card {
  background-color: #F5F5F5;
  padding: 24px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* About */
.about {
  padding: 80px 0;
  background-color: #FAFAF9;
  text-align: center;
}
.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about p {
  max-width: 700px;
  margin: auto;
}

/* Newsletter */
.newsletter {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}
.newsletter form {
  margin-top: 20px;
}
.newsletter input[type="email"] {
  padding: 14px;
  width: 280px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 12px;
}

/* Footer */
.footer {
  padding: 40px 0;
  background-color: #1A1A1A;
  color: #fff;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    right: 20px;
    top: 80px;
    width: 200px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 10px 0;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .newsletter input[type="email"] {
    width: 90%;
    margin-bottom: 12px;
  }
}

