:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-color: #f5f5f5;
  --highlight-color: #474d57;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  margin: 0;
  padding: 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
  filter: grayscale(100%);
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* Fixed Button Styles - Critical Fix */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #000;
  background-color: #000; /* Default: Black background */
  color: #fff; /* Default: White text */
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover,
.btn:active {
  background-color: #fff; /* Hover/Click: White background */
  color: #000; /* Hover/Click: Black text */
}

.nav-link {
  position: relative;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.about-section {
  padding: 5rem 0;
  background-color: var(--accent-color);
}

.products-section {
  padding: 5rem 0;
}

.product-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.footer-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ccc;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }

  .logo {
    max-width: 150px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 100;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }
}
