
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:url('../images/wood.png') repeat-y center top;
  background-size:cover;
  color:#f5e8d0;
}
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 30px;
  background:rgba(40,20,5,0.85);
}
.header-left{
  display:flex;
  align-items:center;
  gap:15px;
}
.header-left img{
  height:90px;
}
nav{
  display:flex;
  gap:15px;
}
nav a{
  background:#2f6a2f;
  color:#ffffff;
  padding:10px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  letter-spacing:0.03em;
  box-shadow:0 2px 4px rgba(0,0,0,0.4);
  transition:transform .2s, background .2s;
}
nav a:hover{
  background:#255325;
  transform:translateY(-1px);
}
main{
  max-width:1200px;
  margin:0 auto;
  padding:30px 20px 40px;
}
.hero{
  text-align:center;
  margin-bottom:30px;
}
.hero h1{
  font-size:3rem;
  margin-bottom:10px;
  text-shadow:2px 2px 3px #000;
}
.hero p{
  font-size:1.2rem;
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}
.category-card{
  background:rgba(80,45,15,0.92);
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:#f5e8d0;
  box-shadow:0 4px 12px rgba(0,0,0,0.5);
  transition:transform .2s, box-shadow .2s;
}
.category-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.65);
}
.category-card img{
  object-position:center center;
  width:100%;
  height:180px;
  object-fit:cover;
}
.category-card h3{
  text-align:center;
  font-size:1.4rem;
  padding:12px 10px 14px;
}
.page-wrapper{
  max-width:900px;
  margin:0 auto;
  padding:30px 20px 40px;
  background:rgba(60,35,10,0.9);
  border-radius:16px;
  box-shadow:0 4px 16px rgba(0,0,0,0.6);
}
.page-wrapper h1{
  text-align:center;
  margin-top:0;
  margin-bottom:20px;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:20px;
}
.gallery img{
  object-fit:cover;
  object-position:center center;
  width:100%;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,0.5);
}
.lightbox{
  display:none;
  position:fixed;
  top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.85);
  justify-content:center;
  align-items:center;
  z-index:1000;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
footer{
  text-align:center;
  padding:20px;
  background:rgba(40,20,5,0.92);
  color:#f5e8d0;
}
@media(max-width:700px){
  .header-left img{height:70px;}
  .hero h1{font-size:2.2rem;}
}

/* Mobile Menu Upgrade */
.mobile-menu-toggle {
  display:none;
  background:#3a7f3a;
  color:white;
  padding:10px 14px;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
  border:none;
  font-size:1rem;
}

@media(max-width:800px){
  nav a{
    display:none;
  }
  .mobile-menu-toggle{
    display:block;
  }
  nav.active a{
    display:block;
    margin-top:8px;
    background:#4d9950;
  }

  header{
    flex-direction:column;
    gap:10px;
    padding:15px;
  }

  .hero h1{
    font-size:2rem;
  }
  .hero p{
    font-size:1rem;
  }
  .category-card img{
    height:150px;
  }
  .page-wrapper{
    padding:20px;
  }
}

.category-card{
 padding:10px;
}
.category-card img{
 border-radius:12px;
 object-fit:cover;
 width:100%;
 height:220px;
}
.gallery{
 padding:40px!important;
 gap:30px!important;
}
.gallery img{
 border-radius:14px;
 object-fit:cover;
 width:100%;
 height:240px;
}
