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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header Section */
.header {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #DAA520;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #000, #444), url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero .btn {
  background: #DAA520;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero .btn:hover {
  background: #c69720;
}

/* Products Section */
.products {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.product-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.product-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

.product-card p {
  padding: 0 1rem 1rem;
  color: #555;
}

/* About Section */
.about {
  padding: 2rem 1rem;
  background: #f0f0f0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}

.contact a {
  color: #DAA520;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer Section */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer a {
  color: #DAA520;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
