/* Reset and Base Styles */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Outfit', sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
  opacity: 0.8;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cccccc;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn:hover { 
  background: #ffffff;
  color: #0d0d0d;
  transform: translateY(-2px);
}

/* Section Styles */
section { 
  padding: 4rem 2rem; 
  text-align: center; 
}

/* Featured Products Carousel */
.featured-section {
  background: #0d0d0d;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 3rem;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.featured-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-card p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: #ffffff;
  color: #0d0d0d;
}

.carousel-btn.active {
  background: #ffffff;
  color: #0d0d0d;
}

/* All Products Section */
.products-section {
  background: #0d0d0d;
  padding: 6rem 2rem;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-tab:hover,
.category-tab.active {
  background: #ffffff;
  color: #0d0d0d;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
  font-size: 1.3rem;
}

.social-icons a:hover { 
  transform: translateY(-3px); 
}

.social-icons .fa-linkedin:hover { 
  color: #0a66c2; 
}

.social-icons .fa-instagram:hover { 
  color: #e1306c; 
}

.social-icons .fa-youtube:hover { 
  color: #ff0000; 
}

.social-icons .fa-x-twitter:hover,
.social-icons .fa-twitter-x:hover,
.social-icons .fa-x:hover { 
  color: #1da1f2; 
}

/* Fix for X (Twitter) icon display */
.fa-twitter-x::before {
  content: "𝕏";
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: #0d0d0d;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-item a {
  transition: all 0.3s ease;
}

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

.contact-item a:hover i {
  color: #ffffff;
  opacity: 0.8;
}

/* Section dividers */
.section-divider {
  margin: 4rem auto;
  width: 80%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  background: #0d0d0d;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 { 
    font-size: 2.5rem; 
  }
  
  .nav-links { 
    display: none; 
  }
  
  .logo span { 
    display: none; 
  }
  
  .logo img { 
    height: 35px; 
  }
  
  .carousel-slide { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .featured-card { 
    width: 100%; 
    max-width: 350px; 
  }
  
  .category-tabs { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .products-grid { 
    grid-template-columns: 1fr; 
  }
  
  .contact-grid { 
    grid-template-columns: 1fr; 
  }
}

/* Hidden class for filtering */
.hidden { 
  display: none; 
} 