/* General Reset */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background-color: #088b2d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header .logo img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 50%;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #FFD700;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url('images/tobacco1.jpg') no-repeat center/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  color: white;
  max-width: 800px;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.3rem;
  font-weight: 600;
}

/* About */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}
.about-text h2 {
  font-size: 2rem;
  color: #006400;
}
.about-text h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.about-text p {
  color: #555;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.about-images img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.about-images img:hover {
  transform: scale(1.05);
}

/* Products */
.stories {
  padding: 80px 20px;
  background: #f8fce9;
}
.stories h2 {
  font-size: 2.2rem;
  color: #2c3e1f;
  margin-bottom: 40px;
}
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.story-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.story-card:hover {
  transform: translateY(-5px);
}
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Cart */
.cart {
  padding: 80px 20px;
  background: #f9f9f9;
}
.cart .container {
  max-width: 600px;
  margin: auto;
}
.cart-item {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item label {
  font-weight: 600;
}
.cart-item input[type="number"] {
  width: 100px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.cart button {
  background: #FFD700;
  color: #006400;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.cart button:hover {
  background: #f0c300;
}

/* Contact */
.contact {
  background: #f9f9f9;
  padding: 80px 20px;
}
.contact h2 {
  font-size: 2.2rem;
  color: #006400;
}
.contact .subtitle {
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-form form,
.contact-info .info-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  resize: none;
}
.contact-form button {
  background: #FFD700;
  color: #006400;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form button:hover {
  background: #f0c300;
}
.contact-info h3 {
  margin-bottom: 15px;
}
.map iframe {
  width: 100%;
  border-radius: 12px;
  height: 400px;
}

/* Footer */
footer {
  background: #006400;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.95rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #006400;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 20px;
  }
  nav ul li {
    margin-bottom: 10px;
  }
  .menu-toggle {
    display: block;
  }
}
