
.product-card {
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Patrick Hand', cursive;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fdfdfd;
  border-bottom: 2px solid #000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
}


.hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("shutterstock_1017980959-1.jpg"); /* Replace with actual image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  border-bottom: 2px solid #000;
  color: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6); /* Light overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    display: inline-block;
}

]


.hero-image img {
  max-width: 100%;
  height: auto;
  border: 2px solid #000;
  border-radius: 10px;
}


.featured-products {
  padding: 40px;
  text-align: center;
}

.featured-products h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 15px;
  width: 180px;
  background-color: #fff;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.product-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.product-price {
  font-size: 1rem;
  color: #444;
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

.btn:hover {
  background-color: grey;
}