/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and fonts */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #222;
}

/* Header */
header {
  background-color: #111;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

/* Navigation */
nav {
  margin-top: 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  background-color: #444;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #666;
}

/* Section headings */
section h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 28px;
  color: #333;
}

/* Sections */
section {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding-top: 20px;
}

/* Product Card */
.product-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: box-shadow 0.3s;
}

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

.product-card h3 {
  margin: 10px 0 5px;
  color: #111;
}

.product-card p {
  font-weight: bold;
  margin-bottom: 10px;
}

/* WhatsApp Order Button */
.product-card a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-card a:hover {
  background-color: #128C7E;
}

/* Contact and Location */
#contact a, #location a {
  color: #007bff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 24px;
  }

  section h2 {
    font-size: 22px;
  }
}
/* Contact Section Styling */
.contact-section {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

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

.contact-list li {
  margin: 15px 0;
  font-size: 18px;
}

.contact-list a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #005fa3;
}


/* Base styles */
nav {
  margin-top: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
  }

  #navMenu {
    display: none;
  }

  #navMenu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    background-color: #f2f2f2;
    padding: 15px;
    margin-top: 10px;
  }
}
/* Hamburger button */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Sidebar menu - hidden by default */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* hidden */
  height: 100%;
  width: 250px;
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
}

.sidebar.active {
  left: 0; /* visible */
}

.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.sidebar .nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive: show hamburger and hide normal nav on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav:not(.sidebar) {
    display: none;
  }
}
