/* 全域設定 */
body {
  margin: 0;
  font-family: 'Noto Sans', Arial, sans-serif;
  background-color: #EDF2C5;
  color: #7D7D7D;
  font-size: 14px;
  font-weight: normal;
}

/* Container */
.container {
  max-width: 1000px; /* 960px + 40px padding */
  margin: 0 auto;
  background: #EDF2C5;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

header .logo {
  font-size: 44px;
  font-weight: bold;
  color: #778A50;
}


header .top-buttons {
  display: flex;
  align-items: center;
  gap: 6px; 
}


header .top-buttons a {
  text-decoration: none;
  color: #778A50;
  background: #EDF2C5;
  padding: 4px 8px; 
  border-radius: 3px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
}

/* 按鈕（LOGIN / JOIN） */
header .top-buttons a.text-btn {
  border: #778A50 solid 1px;
  padding: 6px 12px; 
  border-radius: 3px;
  background: #EDF2C5; 
  height: auto; 
  line-height: 1; 
}

/* 圖片按鈕(FB/IG) */
header .top-buttons a.icon-btn {
  background: none;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

header .top-buttons a img {
  width: auto;
  height: 30px;
  vertical-align: middle;
}

/* 分隔符號 */
header .top-buttons .separator {
  color: #778A50;
  font-size: 18px; 
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Nav */
nav {
  background-color: #778A50;
  border-radius: 3px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
}

nav ul li a:hover {
  background-color: rgba(119, 138, 80, 0.8);
}

/* Banner */
.banner {
    margin: 20px 0;
}

.banner img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 3px;
}

/* Main */
main {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

/* 左邊 (Vegetables) */
.left {
  flex: 1;
}

.left h2 {
  background: #778A50;
  color: white;
  padding: 8px;
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
}

.veg-gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-left: 8px;
  padding-right: 8px;
}

.veg-gallery img {
  width: 30%;
  height: auto;
  /* border: 2px solid #ccc;*/
}

/* 右邊 (Contact) */
.right {
  flex: 1;
}

.right h2 {
  background: #778A50;
  color: white;
  padding: 8px;
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
}

.right p {
  background: #F7FBDA;
  padding: 10px;
  font-size: 12px;
  line-height: 150%;
  color: #7D7D7D;
}

/* Footer */
footer {
  background: #778A50;
  text-align: center;
  color: #EDF2C5;
  padding: 15px;
  margin-top: 20px;
  width: 100%;
  font-size: 12px;
  line-height: 150%;
}

