* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
/* Enhanced Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Enhanced Brand Section */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-brand:hover {
  transform: translateY(-2px);
}

.nav-logo .logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-brand:hover .logo {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5016;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.nav-brand:hover .brand-name {
  color: #4caf50;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #2d5016;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #8bc34a;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8bc34a;
  transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #2d5016;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  /* Brand adjustments for mobile */
  .brand-name {
    font-size: 1.2rem;
  }

  .nav-logo .logo {
    height: 40px;
  }

  .nav-brand {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  /* Stack logo and brand name on very small screens */
  .nav-brand {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .brand-name {
    font-size: 1rem;
    font-weight: 600;
  }

  .nav-logo .logo {
    height: 35px;
  }

  .nav-container {
    padding: 0 15px;
  }
}

/* Additional enhancement: Smooth brand name reveal animation */
@keyframes brandFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand-name {
  animation: brandFadeIn 0.6s ease-out;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #2d5016;
}

.btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2d5016;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 3rem;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about-stats {
  display: grid;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #666;
  font-weight: 500;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background:
    radial-gradient(circle at top left, rgba(248, 186, 78, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(76, 175, 80, 0.12), transparent 32%),
    #fffdf8;
}

.catalog-layout {
  display: grid;
  gap: 2rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(45, 80, 22, 0.08);
  box-shadow: 0 18px 45px rgba(45, 80, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(45, 80, 22, 0.14);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent);
  pointer-events: none;
}

.product-card-copy {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d5016;
  margin-bottom: 0.9rem;
}

.product-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f3810;
  margin-bottom: 0.85rem;
}

.product-card p {
  color: #4d5c43;
  line-height: 1.7;
  max-width: 62ch;
}

.product-tags {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.product-tags li {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #32501f;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(45, 80, 22, 0.08);
}

.product-gallery {
  display: grid;
  gap: 1rem;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-item {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(45, 80, 22, 0.08);
  box-shadow: 0 10px 24px rgba(45, 80, 22, 0.08);
}

.product-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-item figcaption {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #274114;
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.cookware-card {
  background: linear-gradient(135deg, #fff4d8, #fff9ee);
}

.kitchen-card {
  background: linear-gradient(135deg, #eef8ea, #f8fff4);
}

.home-card {
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
}

.essentials-card {
  background: linear-gradient(135deg, #fff2ec, #fffaf6);
}

/* Why Us Section */
.why-us {
  padding: 6rem 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8bc34a, #4caf50);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2d5016, #4caf50);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.cta-highlight p {
  margin: 0;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8bc34a, #4caf50);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
}

.contact-details a {
  color: #4caf50;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: #2d5016;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logo p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #8bc34a;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: #8bc34a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo-container {
    padding: 2rem;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .three-up,
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .product-card,
  .feature-card {
    padding: 2rem;
  }

  .two-up,
  .three-up,
  .four-up {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
