/* Homepage Styles */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
}

.hero-content {
  max-width: 80vw;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 40px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  margin: 0 0 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video Section */
.video-section {
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .video-section {
    display: flex;
    justify-content: center;
  }

  .hero-video {
    width: auto;
    max-width: 380px;
    max-height: 70vh;
  }
}

/* Featured Product Section */
.featured-section {
  padding: 80px 20px;
  background: #fff;
}

.featured-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.featured-single {
  max-width: 800px;
  margin: 0 auto;
}

.featured-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: all 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.featured-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.featured-info p {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
}

.featured-info .btn-primary i {
  margin-left: 8px;
  font-size: 12px;
}

/* CTA Card Section */
.cta-card-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cta-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.2s ease;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.cta-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cta-card p {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 42px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .cta-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .featured-section,
  .cta-card-section {
    padding: 60px 20px;
  }

  .featured-section h2,
  .cta-card h2 {
    font-size: 32px;
  }

  .featured-info {
    padding: 30px;
  }

  .featured-info h3 {
    font-size: 24px;
  }

  .cta-card {
    padding: 30px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
