:root {
  /* Color Palette */
  --primary-color: #000000;
  --primary-dark: #1f6b2a;
  --primary-light: #e8f5e9;
  --coffee-color: #6f4e37;
  --spice-color: #b4533c;

  --text-color: #333;
  --text-light: #555;
  --text-lighter: #666;
  --text-on-primary: white;

  --background: #f9f9f9;
  --surface: white;
  --footer-bg: #222;
  --footer-text: #ddd;
  --copyright-text: #999;
  --border-color: #444;

  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --image-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-main: "Neue Montreal", sans-serif;
  --line-height: 1.6;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--background);
}

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

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  padding: 20px 0;
  box-shadow: var(--shadow);
}

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

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

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--text-on-primary);
  text-decoration: none;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: var(--text-on-primary);
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

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

/* Service Section */
.service-section {
  padding: 80px 0;
  background-color: var(--surface);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  margin: 0 auto;
  color: var(--text-lighter);
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--image-shadow);
}

.benefits {
  margin-top: 40px;
}

.benefits h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.benefits ul {
  list-style-position: inside;
  margin-bottom: 20px;
}

.benefits li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Commodities Section */
.commodities-section {
  background-color: #ebebeb;
  padding: 60px 0;
}

.commodities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.commodity-card {
  background-color: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

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

.commodity-image {
  height: 200px;
  overflow: hidden;
}

.commodity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.commodity-card:hover .commodity-image img {
  transform: scale(1.05);
}

.commodity-content {
  padding: 20px;
}

.commodity-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}
.commodity-content p {
  font-size: 1.1rem;
}

.coffee .commodity-content h4 {
  color: var(--coffee-color);
}

.spices .commodity-content h4 {
  color: var(--spice-color);
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.process-step {
  background-color: var(--surface);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
}

.coffee .process-step-icon {
  background-color: rgba(111, 78, 55, 0.1);
  color: var(--coffee-color);
}

.spices .process-step-icon {
  background-color: rgba(180, 83, 60, 0.1);
  color: var(--spice-color);
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background-color: var(--surface);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.partner-logo {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  text-align: center;
  padding: 60px 20px;
  margin-top: 10px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin: 0 auto 30px;
  font-size: 18px;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 20px;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }
}
