/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.header-icons img {
  height: 24px;
  margin-left: 20px;
}

/* Hero Section Styles */
.hero {
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  /* Deepseek messed up a bit by putting color instead of background-color (I presume), making the text invisible */
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Featured Products Section Styles */
.featured-products {
  padding: 50px 0;
  text-align: center;
}

.featured-products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

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

.product-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.product-card p {
  font-size: 1rem;
  color: #ff6600;
}

/* About Section Styles */
.about {
  background-color: #f4f4f4;
  padding: 50px 0;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
}

.social-media img {
  height: 24px;
  margin: 0 10px;
}

.footer p {
  margin-top: 20px;
  font-size: 0.9rem;
}