html {
  background: whitesmoke;
  width: 100vw;
  height: 100vh;
}
/* Reset Default Margins and Padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

}
footer {
  background-color: darkgray;
  padding: 1.5rem;
}
section {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 1.5rem;
  background-color: white;
}
.breadcrumb {
  list-style: none;
  display: flex;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.breadcrumb li {
  margin-right: 5px;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 5px;
  color: #555;
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Basic Navigation Styling */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  color: white;
}

/* Default Navigation Links - Desktop */
#nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
}

#nav-links li a {
  text-decoration: none;
  color: white;
}

/* Hide Hamburger Button on Desktop */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


#card {
  background-color: white; /* Change from orange for a cleaner look */
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow effect */
  text-align: center;
  width: 300px; /* Set a fixed width */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#card img {
  width: 100%; /* Makes sure all images fit the card */
  height: 200px; /* Set a fixed height for uniformity */
  object-fit: cover; /* Ensures the image fills the area without distortion */
  border-radius: 10px; /* Makes the corners rounded */
}

#card h1 {
  font-size: 20px;
  margin: 10px 0;
}

#card p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

/* Mobile View (Max Width 768px) */
@media (max-width: 768px) {
  /* Show Hamburger Button in Mobile */
  .hamburger {
    display: block;
  }

  /* Hide the Navigation Links by Default */
  #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    text-align: center;
  }

  /* Show Navigation Links when "show" class is added */
  #nav-links.show {
    display: flex;
  }

  /* Styling for Mobile Menu Items */
  #nav-links li {
    padding: 10px;
    border-bottom: 1px solid #555;
  }

  #nav-links li:last-child {
    border-bottom: none;
  }
}

/* Order Button */
#card a {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

#card a:hover {
  background-color: #0056b3;
}
#product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center cards */
  gap: 20px;
  padding: 20px;
}

footer {
  background-color: darkgray;
  padding: 1.5rem;
  color: white;
  text-align: center; /* Center text by default */
}

/* Footer Navigation */
footer nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
  margin-top: 1rem;
}

/* Footer Sections */
footer nav h1 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

footer nav ul li {
  margin: 5px 0;
}

/* Links Styling */
footer nav ul li a {
  text-decoration: none;
  color: white;
}

footer nav ul li a:hover {
  text-decoration: underline;
}

/* Responsive Footer for Mobile */
@media (max-width: 768px) {
  footer nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  footer nav ul {
    padding: 0;
  }
}
#testimoni {
  background-color: #f8f9fa; /* Light background for better readability */
  padding: 20px;
  text-align: center;
}

#testimoni h1 {
  margin-bottom: 15px;
  font-size: 24px;
}

.testimony-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Space between testimonies */
}

.testimony {
  max-width: 600px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

form {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="submit"] {
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
}

input[type="submit"]:hover {
  background: #0056b3;
}