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

main {
  background-color: #bf9f93;
  width: 100vw;
  height: 85vh;
  display: flex;
  flex-direction: row;
}

main > div, section > div {
  width: 50%;
  height: 100%;
}

/* Optional: Center the text content on the right side */
.left-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  color: #fff; /* change based on your background */
}

/* Optional: Add styling for better readability */
.left-half h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.left-half p {
  margin-bottom: 1.5rem;
}

button#checkout-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  background-color: #A67F73;
  color: white;
}

header {
  width: 100%;
  background: #bf9f93;
  color: white;
  height: 10%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.logo {
  font-size: 1.5rem;
}

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
 
.nav-links {
  list-style: none;
  display: none;
  gap: 1.5rem;
}

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

.hamburger {
  display: block;
  z-index: 100;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #A67F73;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 1rem;
  border-radius: 5px;
  z-index: 1;
  width: 33vw;
  height: 100vh;
}

.nav-links.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
    background-color: #A67F73;
    height: 95vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
}

.background {
    background-color: #bf9f93;
}


footer {
  background-color: #f2f2f2;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.footer-links li a {
  color: #333;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.right-half {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  display: block;
  height: auto;
}


@media screen and (max-width: 720px) {
  main,
  section {
    flex-direction: column;
    height: auto;
  }

  main > div,
  section > div {
    width: 100%;
    height: auto;
  }

  .left-half,
  .right-half {
    padding: 2rem;
    text-align: center;
    align-items: center;
  }

  .left-half h1 {
    font-size: 2.5rem;
  }

  img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .nav-links {
    width: 100vw;
  }
}