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

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

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #cc0000;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

.nav a {
  margin-left: 20px;
  color: #fff;
}

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

.hero {
  background: url('https://i.imgur.com/CDDUdp2.jpeg') no-repeat center/cover;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #FFD700;    
  -webkit-text-stroke: 1.1px black;
  text-stroke: 1.1px black;
  font-weight: 700;
}

.hero p {
  font-size: 2.5rem;
  margin: 20px 0;
  color: #FFD700;             
  -webkit-text-stroke: 1.0px black;
  text-stroke: 1.0px black;
  font-weight: 600;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.category {
  flex: 1 1 200px;
  text-align: center;
}

.category img {
  max-width: 100%;
  border-radius: 10px;
}

.category h3 {
  margin-top: 10px;
}

.products {
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  margin-bottom: 20px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product {
  flex: 1 1 200px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.product img {
  max-width: 100%;
  border-radius: 10px;
}

.product h4 {
  margin: 10px 0;
}

.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .categories,
  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .header {
    flex-direction: column;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin: 0 10px;
  }
}


.logo img {
  height: 100px;  
  width: 150;
}
