/* About Hero Section */
.about-hero {
  height: 50vh;
  background-image: url('../assets/images/hero-bg-about.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* Navbar scroll effect */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(42, 42, 42, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links a {
  color: #ffffff;
}

.navbar.scrolled .social-links a {
  color: #ffffff;
}

.navbar.scrolled .address a {
  color: #FF6B6B;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 100px;
}

.about-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

/* About Info Section */
.about-info {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2A2A2A;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #666;
}

/* Product Gallery Section */
.product-gallery {
  padding: 5rem 0;
  background-color: white;
}

.product-gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2A2A2A;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 0.6rem 1rem;
  border: 2px solid #FF6B6B;
  background: transparent;
  color: #FF6B6B;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: #FF6B6B;
  color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.gallery-item-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-item-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    height: 40vh;
  }

  .about-content h1 {
    font-size: 2.5rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .product-gallery h2 {
    font-size: 2rem;
  }

  .category-filters {
    gap: 0.4rem;
    padding: 0 10px;
  }

  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 30vh;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .category-filters {
    gap: 0.3rem;
  }

  .filter-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.price-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 0.6rem 1.2rem;
  background-color: #FF6B6B;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.price-btn:hover {
  background-color: #ff8585;
  transform: scale(1.04);
}
