body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #fff;
}

h1,
h2,
h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-family: "Cinzel", serif;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  /* background-color: #f2f2f2; */
  background: linear-gradient(to bottom, #f0f0f0, #d9d9d9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

ul li {
  margin: 0 15px;
}

ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  text-transform: uppercase;
}

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

.logo img {
  height: 60px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  min-width: 30px;
  min-height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Navigation styles for mobile view */
#mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  transition: all 0.3s ease;
}

#mobile-nav ul {
  list-style: none;
  padding: 20px 0;
}

#mobile-nav ul li {
  margin: 10px 0;
}

#mobile-nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  text-transform: uppercase;
  display: block;
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#mobile-nav.active {
  display: block;
}
/* Products Section */
.products-section {
  text-align: center;
  padding-bottom: 20px;
}

.products-section h1 {
  font-size: 2.5rem;
  color: #7e645a;
  margin-top: 100px;
}

.products-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.product-item {
  text-align: center;
}

.product-item p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #333;
}

/* Contact Section */
.contact-section {
  /* background-color: #7e645a; */
  background: linear-gradient(to bottom, #f0f0f0, #d9d9d9);
  color: #333;
  text-align: center;
  padding: 10px 10px;
}

.contact-section a {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.contact-button {
  background-color: white;
  color: #7e645a;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 20px 0;
}

.contact-info p {
  margin: 5px 0;
}

footer {
  background-image: url("/asset/images/footer_bg.jpeg");
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  margin: 0;
}

.social-icons a {
  margin-left: 10px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }

  .navbar ul {
    flex-direction: column;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
  }

  .navbar.open .nav-left,
  .navbar.open .nav-right {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #7e645a;
    padding: 10px 0;
    text-align: center;
  }

  ul li {
    margin: 10px 0;
  }

  .logo img {
    height: 40px;
    margin-top: 5px;
  }

  .product-item img {
    width: 85%;
  }

  .products-section p {
    max-width: 100%;
    padding: 20px 20px;
  }
}