* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #fdfaf6;
  color: #333;
}

/* NAVBAR FIX */
.navbar {
  background: #fff6ea;
  border-bottom: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  height: 70px;   /* keep header height SAME */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 130px;          /* increase logo height */
  width: auto;
  object-fit: contain;
  transform: translateY(2px); /* optional fine-tune */
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #d97706;
}

/* BUTTON */
.btn-quote {
  background: #d97706;
  color: #fff;
  border: none;
  padding: 10px 20px;     /* better proportions */
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-quote:hover {
  background: #b45309;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-wrapper {
    min-height: 72px;
  }

  .logo img {
    height: 100px;
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;   /* 👈 ADD THIS */
}

/* HERO */
.hero {
  background: url("images/spices-bg.png") center / cover no-repeat;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  padding: 100px 0;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #f59e0b;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #f59e0b;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-secondary {
  border: 2px solid #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* FEATURES */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 18px 0;
  background: #fff6ea;
  color: #333;
  position: relative;
}

.feature {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: center right;
  }
}

/* SPICE COLLECTION SECTION */
.spice-collection {
  background: #fdf5eb;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #3f2d1c;
  margin-bottom: 10px;
}

.section-header p {
  color: #7a5c3c;
  font-size: 16px;
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.spice-card {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.spice-card:hover {
  transform: translateY(-8px);
}

.spice-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.spice-card h3 {
  font-size: 22px;
  margin: 18px 0;
  color: #3f2d1c;
}

.spice-card button {
  margin-bottom: 22px;
  padding: 10px 22px;
  background: #d97706;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.spice-card button:hover {
  background: #b45309;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .spice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spice-grid {
    grid-template-columns: 1fr;
  }
}

/* EXPORT CTA */
.export-cta {
  background: url("images/ship-bg.png") center / cover no-repeat;
  position: relative;
  height: 460px;
}

.export-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
}

.export-content {
  color: #fff;
}

.export-content h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.export-content p {
  font-size: 18px;
  margin-bottom: 24px;
}

.export-btn {
  background: #f59e0b;
  color: #000;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.export-btn:hover {
  background: #d97706;
}

/* WHY CHOOSE US */
.why-choose {
  background: #fff6ea;
  padding: 70px 0;
  text-align: center;
}

.why-title {
  font-size: 34px;
  margin-bottom: 50px;
  color: #3f2d1c;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card span {
  font-size: 40px;
}

.why-card h3 {
  margin: 16px 0 10px;
  color: #3f2d1c;
}

.why-card p {
  color: #6b4f32;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .export-cta {
    height: 300px;
  }
}

/* inquiry */
.inquiry {
  padding: 80px 0;
  background: #fff;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.inquiry-form button {
  background: #d97706;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.inquiry-form button:hover {
  background: #b45309;
}

@media (max-width: 768px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
}

/* map */
.export-map {
  padding: 70px 0;
  background: #fdf5eb;
  text-align: center;
}

.export-map h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* wp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* footer */
.footer {
  background: #2b1d12;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer p {
  line-height: 2;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #eee;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
   GLOBAL FADE ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero text entrance */
.hero-text h1,
.hero-text p,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
}

.hero-text p {
  animation-delay: 0.3s;
}

.hero-buttons {
  animation-delay: 0.6s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover smooth effect */
.spice-card,
.why-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spice-card:hover,
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

/* Button hover animation */
.btn-primary,
.btn-secondary,
.btn-quote {
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-quote:hover {
  transform: translateY(-3px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

/* Navbar smooth shadow on scroll */
.navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}
