:root {
  --primary: #478f07;
  --secondary: #620063;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Winky Rough", sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondary);
}

.secondary-btn {
  display: inline-block;
  background: transparent;
  color: #000;
  padding: 12px 24px;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.secondary-btn:hover {
  background: #f0f0f0;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

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

.nav-links li {
  font-weight: 500;
  cursor: pointer;
}

.nav-links li:hover {
  color: var(--secondary);
}

.shop-now-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  background: var(--secondary);
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  margin-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 50px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* USP Section */
.usp-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.usp-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.usp-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #000;
}

.usp-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.usp-description {
  color: #666;
}

/* Categories Section */
.categories {
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.category-item:hover .category-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.category-overlay p {
  margin-bottom: 15px;
  font-size: 14px;
}

/* Our Story Section */
.our-story {
  padding: 100px 0;
  background: #f5f5f5;
}

.story-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-image {
  flex: 1;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

.story-content p {
  margin-bottom: 20px;
  color: #555;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
}

.author-info p {
  color: #777;
  font-size: 14px;
}

/* Product Highlights */
.product-highlights {
  padding: 100px 0;
  background: #f0f0f0;
}

.highlight-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.highlight-image {
  flex: 1;
  position: relative;
  height: 500px;
}

.highlight-main-image {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.highlight-secondary-image {
  width: 60%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.highlight-content {
  flex: 1;
}

.highlight-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.highlight-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.highlight-icon {
  margin-right: 15px;
  background: var(--primary);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-feature-content h4 {
  margin-bottom: 5px;
}

.highlight-feature-content p {
  color: #666;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.benefit-item {
  display: flex;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 36px;
  margin-right: 20px;
  color: #000;
}

.benefit-content h3 {
  margin-bottom: 10px;
}

.benefit-content p {
  color: #666;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("/api/placeholder/1200/600");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.final-cta p {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-links li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: #666;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
  .highlight-container {
    flex-direction: column;
  }

  /* .highlight-image {
    width: 100%;
    margin-bottom: 30px;
  } */

  .story-container {
    flex-direction: column;
  }

  .story-image {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero h1 {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .btn,
  .secondary-btn {
    color: white;
  }
}

@media (max-width: 576px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .secondary-btn {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }

  .secondary-btn {
    margin-left: 0;
  }
}
