:root {
    --primary-color: #d97706;
    --secondary-color: #059669;
    --accent-color: #eab308;
    --dark-brown: #78350f;
    --light-bg: #fffbeb;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --black: #000000;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-light {
  background-color: rgba(255, 255, 255, 0.98);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/*.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}
*/

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('/images/indian_spices1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(107, 70, 193, 0.7));
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}


.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.featured-products-preview {
  background-color: var(--light-bg);
}

.feature-card {
  padding: 2rem;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.about-section {
  background-color: #ffffff;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.values-list {
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.value-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.products-section {
  background-color: var(--light-bg);
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  height: 280px;
  overflow: hidden;
  background-color: #f9fafb;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-content {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.product-origin {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-origin i {
  margin-right: 0.25rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-features .badge {
  background-color: var(--light-bg);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonials-section {
  background-color: #ffffff;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stars i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.wholesale-section {
  background-color: var(--light-bg);
}

.wholesale-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wholesale-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wholesale-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.wholesale-card h3 {
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.wholesale-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.wholesale-benefits {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.wholesale-benefits h4 {
  color: var(--dark-brown);
  font-size: 1.75rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.benefits-list i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-section {
  background-color: #ffffff;
}

.contact-info-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  margin-bottom: 0.25rem;
}

.contact-info-card a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.15);
}

.footer {
  background-color: #1f2937;
}

.brand-text-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer h5 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer p, .footer li {
  color: #d1d5db;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--dark-brown);
  transform: translateY(-3px);
  color: white;
}

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

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

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

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

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

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

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

  .product-image-wrapper {
    height: 220px;
  }
}
