/* style.css */

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f6eddd;
  color: #3d452b;
}

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

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #3d452b;
  font-weight: bold;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #3d452b;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #3d452b;
}

header {
  background-color: #f6eddd;
  border-bottom: 1px solid #ccc;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  background-color: #f6eddd;
  gap: 2rem;
}

.hero-left {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  align-items: flex-start;
}

.hero-left h2 {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
  color: #3d452b;
}

.hero-left h1 {
  font-size: 5rem;
  margin: 0;
  color: #5d633f;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-left .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.hero-right {
  max-width: 400px;
}

.hero-right img {
  width: 100%;
  border-radius: 12px;
}

.btn {
  background-color: #5d633f;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #444a2f;
}

.about {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fefaf1;
}

.menu {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f6eddd;
}

.about h2, .menu h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3d452b;
}

.about p, .menu p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #3d452b;
}

.footer-colors {
  display: flex;
  height: 60px;
  background: linear-gradient(to right, #5b6140, #555c3b, #697145, #bbb187, #cba476);
}
.logo img {
  max-height: 90px; /* adjust as needed */
  width: auto;
  display: block;

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    display: none;
    flex-direction: column;
    margin-top: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    flex-direction: column;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 3rem;
  }

  .hero-right img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


/* Hide menu toggle on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #3d452b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  width: 100%;
}

.menu-toggle span:nth-child(2) {
  width: 75%;
}

.menu-toggle span:nth-child(3) {
  width: 50%;
}

/* Animate hamburger to X when active */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 100%;
}

/* Hide nav menu on mobile by default */
.nav {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* adjust for your header height */
    left: 0;
    width: 100%;
    background-color: #f6eddd;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    display: flex;
    max-height: 500px; /* enough to show menu items */
  }

  .nav a {
    margin: 0.75rem 0;
    font-size: 1.2rem;
  }
}
