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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: url('../images/background_extracted.png') no-repeat center bottom fixed;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e6007e;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}

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

.btn-rounded {
  background-color: #e6007e;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
  font-weight: bold;
}

.btn-rounded:hover {
  background-color: #c5006e;
}

/* Hover Dropdown */
.hover-button-area {
  margin-top: 20px;
  position: relative;
}

.hover-button {
  background-color: #006400;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
}

.dropdown-hover {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: #333;
  min-width: 240px;
  border-radius: 10px;
  z-index: 1000;
}

.dropdown-hover a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #444;
}

.dropdown-hover a:hover {
  background-color: #575757;
}

/* Sections */
section.content {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.6);
}

.about-us-img {
  margin-top: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
}

/* Product Cards */
.product-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  background: white;
  color: black;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer */
footer {
  background: black;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

footer .social-icons {
  margin-top: 15px;
}

footer .social-icons img {
  width: 48px;
  height: 48px;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: rgba(0,0,0,0.8);
    width: 100%;
    padding: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn-rounded, .hover-button {
    font-size: 16px;
    padding: 12px 20px;
  }

  .product-card {
    width: 90%;
  }

  .about-us-img {
    width: 90%;
  }
}
