/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: rgb(27, 26, 26);
}



/* Order Section */
#order {
  padding: 40px 20px;
  background: #f8f8f8; /* light background */
  text-align: center;
}

#order h2 {
  font-size: 26px;
  color: #222;
  margin-bottom: 15px;
}

/* Shift the paragraph a bit to the right */
#order p {
  font-size: 18px;
  color: #444;
  margin-left: 20px;  /* <-- shift to the right */
}

/* WhatsApp link styles */
#order ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

#order ul li a {
  display: inline-block;
  padding: 10px 20px;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#order ul li a:hover {
  background: #1ebe5d;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #089dee;
  color: #fff;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  transition: max-height 0.3s ease-in-out;
  overflow: visible;
  max-height: 0;
}

.nav-links li a {
  color: #e7edf0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background: #112031;
  border-radius: 25px;
}


/* Menu toggle */
.menu-icon {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  color: #3005ec;
}

/* Sections */
.section {
  padding: 3rem 0;
  text-align: center;
}

.section h2 {
  margin-bottom: 1rem;
  color: rgba(5, 60, 241, 0.856);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product:hover {
  transform: scale(1.05);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Contact Form */
form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form textarea,
form button {
  padding: 0.8rem;
  border: 1px solid #f1f3f0e5;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: #0077b6;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #ebeef1;
}

/* Footer */
footer {
  background: #023e8a;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-logo {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.dotted-line {
  border: 1px dotted #fff;
  margin: 1rem auto;
  width: 80%;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  color: rgb(254, 254, 255);
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffdd00;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #ffdd00;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: #0077b6;
    width: 100%;
    text-align: center;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  h1, h2, h3 {
    font-size: 1.2rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  form {
    width: 95%;
  }
}


/* nav container */
.nav {
  position: relative;
}

/* hide default checkbox */
.menu-toggle {
  display: none;
}
/* --- DEFAULT (desktop) --- */
.nav-links {
  list-style: none;
  display: flex;          /* always show horizontally on desktop */
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffdd57;
}
/* nav links list */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffdd57;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .menu-icon {
    display: block; /* show hamburger */
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #0056a3;  /* blue background */
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 10px 10px;
  }

  /* when checkbox is checked → show menu */
  .menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 10px 0;
  }

  .nav-links li {
    text-align: center;
  }
}


/* Style About Section 
#about h2 {
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 15px;
}

#about p {
  font-size: 18px;
  color: #f8f8f8;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
*/



