@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

body {
  background-color: #f8f8ff;
  color: #030303;
  line-height: 1.6;
  font-size: 16px;
}

/* HEADER & NAVIGATION */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

/* Navigation Menu */
nav {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.2em;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #00a86b;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #ffffff;
  border: 1px solid #ccc;
  min-width: 220px;
  top: 100%;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5em;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Search */
.search-container {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 25px;
  overflow: hidden;
}

.search-container input {
  padding: 0.5em 1em;
  border: none;
  outline: none;
  background: transparent;
}

.search-container button {
  padding: 0.5em 1em;
  border: none;
  background-color: #00a86b;
  color: white;
  cursor: pointer;
}

.search-container button:hover {
  background-color: #008f5a;
}

/* HERO SECTION (INDEX) */
.hero {
  background: url('bg_images/dalpha7.jpg') center/cover no-repeat;
  padding: 6em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 3em;
  border-radius: 10px;
}

.hero-content {
  color: #fff;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.hero-content .hero-btn {
  padding: 0.8em 1.5em;
  background-color: #00a86b;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.hero-content .hero-btn:hover {
  background-color: #008f5a;
}

/* FEATURED PRODUCTS */
.products-section {
  padding: 3em 2em;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1em;
  color: #00a86b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
}

.product-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 0.5em 0;
}

.add-to-cart-btn {
  padding: 0.4em 1em;
  background-color: #00a86b;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background-color: #008f5a;
}

/* ABOUT PREVIEW (INDEX) */
.about-preview {
  padding: 3em 2em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  align-items: center;
}

.about-preview img {
  width: 100%;
  border-radius: 8px;
}

.about-preview h2 {
  color: #00a86b;
  margin-bottom: 0.5em;
}

.about-preview p {
  margin-bottom: 1em;
  font-size: 0.95rem;
}

.about-preview a {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #00a86b;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

.about-preview a:hover {
  background-color: #008f5a;
}

/* Storytelling & Trust */
.story-trust {
  background-color: #fdfdfd;
  padding: 3em 2em;
  border-top: 1px solid #eee;
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
}

.story-text {
  flex: 1 1 55%;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #00a86b;
}

.story-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.story-text h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  color: #333;
}

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

.trust-list li {
  margin-bottom: 0.5em;
  font-weight: 500;
}

.story-image {
  flex: 1 1 35%;
  text-align: center;
}

.story-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial-section {
  margin-top: 2.5em;
}

.testimonial-section h3 {
  font-size: 1.4rem;
  color: #00a86b;
  margin-bottom: 1em;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.testimonials blockquote {
  background-color: #fff;
  border-left: 4px solid #00a86b;
  padding: 1em;
  font-style: italic;
  flex: 1 1 45%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 6px;
}

.testimonials blockquote span {
  display: block;
  margin-top: 0.8em;
  font-weight: 600;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }
  .testimonials {
    flex-direction: column;
  }
}


/* CONTACT PREVIEW (INDEX) */
.contact-preview {
  padding: 3em 2em;
  background-color: #f0f0f0;
  text-align: center;
}

.contact-preview h2 {
  color: #00a86b;
  margin-bottom: 0.5em;
}

.contact-preview p {
  margin-bottom: 1em;
}

.contact-preview a {
  padding: 0.6em 1.2em;
  background-color: #00a86b;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

.contact-preview a:hover {
  background-color: #008f5a;
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  padding: 1.5em;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.cart-content h2 {
  margin-bottom: 1em;
  color: #00a86b;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #333;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}

.checkout-link {
  background: #00a86b;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
}

.checkout-link:hover {
  background: #008f5a;
}

/* Checkout Page */
.checkout-section {
  background: #fff;
  padding: 2em;
  max-width: 700px;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.checkout-section h2 {
  color: #00a86b;
  margin-bottom: 1em;
}

.checkout-form {
  display: flex;
  flex-direction: column;
}

.checkout-form label {
  margin-top: 1em;
  margin-bottom: 0.3em;
  font-weight: 500;
}

.checkout-form input,
.checkout-form textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  resize: none;
}

.checkout-btn {
  margin-top: 1.5em;
  padding: 0.8em;
  background-color: #00a86b;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.checkout-btn:hover {
  background-color: #008f5a;
}

.cart-summary {
  margin-top: 2em;
  padding: 1.5em;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
}

.cart-summary h3 {
  margin-bottom: 1em;
  color: #00a86b;
}

.cart-summary p {
  margin: 0.5em 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* CONTACT PAGE */
.contact-section {
  padding: 3em 2em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}

.contact-section h2 {
  color: #00a86b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background-color: #00a86b;
  color: white;
  padding: 0.8em 1.2em;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #008f5a;
}

/* ABOUT PAGE */
.about-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  padding: 3em 2em;
}

.about-story h2 {
  color: #00a86b;
}

.about-story p {
  margin-bottom: 1em;
  font-size: 0.95rem;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  padding: 3em 2em;
  background: #f8f8ff;
}

.mission-vision h2 {
  color: #00a86b;
}

/* Footer */
.footer {
  background-color: #1a0a4b;
  color: #fff;
  padding: 3em 1.5em 1.5em;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  margin-bottom: 1em;
  font-weight: 600;
  color: #00a86b;
}

.footer-about p {
  margin-bottom: 1em;
}

.footer-social a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  margin-right: 0.6em;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00a86b;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6em;
}

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

.footer-links a:hover {
  color: #00a86b;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #00a86b;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2em;
  padding-top: 1em;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    margin-top: 0.8em;
  }
}

/* Dark Overlay for Background Images */
.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: -1;
}

.hero.overlay::before {
  background-color: rgba(0, 0, 0, 0.5);
}

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

/* Page Header (MCNL style) */
.page-header {
  position: relative;
  color: white;
  text-align: center;
  padding: 4em 2em;
}

.page-header .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.page-header .header-content {
  position: relative;
  z-index: 2;
}

/* Contact Section Grid */
.contact-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  padding: 3em 2em;
  background: #fff;
}

.contact-section-grid h2 {
  color: #00a86b;
  margin-bottom: 1em;
}

.contact-details p,
.business-hours ul li {
  margin: 0.5em 0;
  font-size: 0.95rem;
}

.contact-details i {
  color: #00a86b;
  margin-right: 8px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form button {
  background: #00a86b;
  color: white;
  padding: 0.8em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #008f5a;
}
