/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libre Baskerville", serif;
  line-height: 1.6;
  color: #222222;
  background-color: #e6dccf;
}

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

/* Typography */
.company-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: #7a2e1d;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #7a2e1d;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation */
.navbar {
  background-color: #7a2e1d;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px 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;
}

.nav-logo .company-logo {
  height: 64px; /* Adjust as needed */
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #e6dccf;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d1c3b3;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e6dccf 0%, #d1c3b3 100%);
}

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

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  color: #7a2e1d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #7a2e1d;
  color: #e6dccf;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(122, 46, 29, 0.3);
}

.cta-button:hover {
  background-color: #5a1f14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 46, 29, 0.4);
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
  padding: 80px 0;
}

.about {
  background-color: #fff;
}

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

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.company-info {
  background-color: #e6dccf;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.company-info h3 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
}

.about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Products Section */
.products {
  background-color: #e6dccf;
}

.product-category {
  margin-bottom: 4rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #7a2e1d;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.coffee-type h4 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.vanilla-grade h4 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cocoa-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coffee-type ul,
.vanilla-grade ul,
.cocoa-specs ul {
  list-style: none;
  padding: 0;
}

.coffee-type li,
.vanilla-grade li,
.cocoa-specs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.key-traits,
.vanilla-features,
.cocoa-features {
  background-color: #e6dccf;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.key-traits h4,
.vanilla-features h4,
.cocoa-features h4 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
}

/* Why Shaori Section */
.why-shaori {
  background-color: #fff;
}

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

.feature {
  background-color: #e6dccf;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature h3 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
}

/* Export Regions Section */
.export-regions {
  background-color: #e6dccf;
}

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

.region {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.region h3 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

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

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-family: "Cinzel", serif;
  color: #7a2e1d;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #7a2e1d;
  text-decoration: none;
}

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

.contact-form {
  background-color: #e6dccf;
  padding: 2rem;
  border-radius: 10px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #7a2e1d;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a2e1d;
  box-shadow: 0 0 5px rgba(122, 46, 29, 0.3);
}

.submit-btn {
  background-color: #7a2e1d;
  color: #e6dccf;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #5a1f14;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: #7a2e1d;
  color: #e6dccf;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Cinzel", serif;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #d1c3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e6dccf;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #d1c3b3;
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #7a2e1d;
    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;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .coffee-comparison {
    grid-template-columns: 1fr;
  }

  .vanilla-grades {
    grid-template-columns: 1fr;
  }

  .cocoa-details {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .product-category {
    padding: 2rem;
  }

  .nav-logo .company-logo {
    height: 40px; /* Adjust for smaller screens */
  }
}

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

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-logo {
  width: 86px;
  height: auto;
}
