/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.logo h1 {
  font-size: 2rem;
  color: #333;
}
nav ul {
  display: flex;
  gap: 20px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
nav ul li a:hover {
  color: #000;
}
.header-icons a {
  font-size: 1.5rem;
  color: #333;
  margin-left: 15px;
  text-decoration: none;
}
.header-icons a:hover {
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #000;
}

/* Products Section */
.products {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}
.products h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
.product-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.product-info p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
}
.add-to-cart {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.add-to-cart:hover {
  background-color: #000;
}

/* Footer */
footer {
  padding: 50px 20px;
  background-color: #333;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li a {
  text-decoration: none;
  color: white;
}
.footer-section ul li a:hover {
  color: #ddd;
}
.social-icons a {
  font-size: 1.5rem;
  color: white;
  margin-right: 15px;
}
.social-icons a:hover {
  color: #ddd;
}
.footer-bottom p {
  font-size: 1rem;
  margin-top: 20px;
}
/* Dark Mode Styles */
body.dark-mode {
  background-color: #333;
  color: #fff;
}

body.dark-mode header {
  background-color: #222;
}

body.dark-mode footer {
  background-color: #222;
}

body.dark-mode .btn {
  background-color: #444;
}

body.dark-mode .product-card {
  background-color: #444;
}

body.dark-mode .add-to-cart {
  background-color: #444;
}

body.dark-mode .footer-section ul li a {
  color: #ddd;
}

body.dark-mode .footer-section ul li a:hover {
  color: #fff;
}

body.dark-mode .social-icons a {
  color: #ddd;
}

body.dark-mode .social-icons a:hover {
  color: #fff;
}

