@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 基礎設定與變數 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

a {
  color: inherit;
  cursor: pointer;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(20%);
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
body {
  background-color: #F3E5C8;
  color: #8f8780;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size: 16px;
}
body.lock-scroll {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

footer {
  padding: 5em 2em;
}

h3 {
  line-height: 3;
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
}

small {
  font-size: 12px;
}

.bg-white {
  background-color: #FFF;
}

.section-title {
  color: #E67149;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 1rem rgb(255, 255, 255);
}

/* 導航列 */
.header {
  background: #FFF;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header .hamburger-icon {
  display: none;
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #E67149;
  font-size: 1.2rem;
  gap: 8px;
}
.logo img {
  height: 2em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #8f8780;
  font-weight: 500;
}

/* 按鈕 */
.btn {
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  transition: 0.3s;
  border: 2px solid #E67149;
  color: #E67149;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.5);
}

button.btn, a.btn:hover {
  background-color: #E67149;
  color: #FFF;
}

.btn-sm {
  padding: 0.25rem 1em;
}

.btn-filled {
  background: #E67149;
  color: #FFF;
}

a.btn-filled:hover {
  background: rgb(199.1449275362, 71.1231884058, 27.3550724638);
}

/* Hero Section */
.hero {
  padding: 0;
  text-align: center;
  background-image: url(../img/exp.png);
  background-position: center;
  background-size: cover;
  color: #8f8780;
}
.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #E67149;
}
.hero .container {
  max-width: none;
  padding: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero .left {
  display: flex;
  flex-direction: column;
  padding: 120px 20px;
  margin: 0 0 0 auto;
  width: 50%;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* 市集行程卡片 */
.grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid > div {
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
.grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#products {
  background-image: url(../img/bg-c.png);
}
#products .section-title {
  color: #2F8ACB;
}

.product-category {
  text-align: center;
}
.product-category > a {
  margin-top: 2rem;
}

.product-grid {
  margin: 0 auto;
  max-width: 800px;
}
.product-grid .product-item {
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #FFF;
}
.product-grid .btn {
  font-style: italic;
  margin-top: 1rem;
}

.schedule-card {
  border: 2px solid #E67149;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.schedule-card h3 {
  text-align: left;
}
.schedule-card.highlight {
  background: #F3E5C8;
  color: #145383;
  box-shadow: none;
  border: none;
}
.schedule-card {
  animation: fadeUp 1s backwards;
  -webkit-animation: fadeUp 1s backwards;
}

.date-box {
  background: #E67149;
  color: #FFF;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  padding: 2px 8px;
  border-radius: 20px;
}

/* 手作體驗 */
#experience {
  background-image: url(../img/bg-b.png);
  color: #F3E5C8;
  padding: 0;
}
#experience .section-title {
  text-align: left;
  text-shadow: none;
  color: #F3E5C8;
}
#experience .container {
  padding: 80px 20px;
  background: rgba(20, 83, 131, 0.5);
  max-width: none;
}

.experience-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.experience-grid .experience-gallery {
  padding: 0;
}

.main-img {
  width: 100%;
  border-radius: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "❤";
  position: absolute;
  left: 0;
  color: #E67149;
}

/* 客戶見證 */
.review-card {
  background: #FFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.author {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #E67149;
}

/* 社群連結 */
.contact {
  background-image: url(../img/bg-r.png);
  color: #F3E5C8;
}
.contact .section-title {
  color: #F3E5C8;
  text-shadow: none;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.social-item {
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  color: white;
  text-align: center;
  font-weight: bold;
}

.fb {
  background: #1877F2;
}

.ig {
  background: #E4405F;
}

.line {
  background: #06C755;
}

/* 表單樣式 */
.contact-grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-form-wrapper {
  color: #8f8780;
  background: #F3E5C8;
  padding: 30px;
  border-radius: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.25em;
  margin-top: 1em;
}

/* RWD 響應式 */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  .header .hamburger-icon {
    display: block;
    border: 1px solid #8f8780;
    border-radius: 5px;
    position: absolute;
    right: 1em;
    top: 1em;
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .header .hamburger-icon img {
    width: 80%;
    height: 100%;
  }
  .header.active .main-nav {
    display: flex;
  }
  .main-nav {
    position: fixed;
    display: none;
    width: 50vw;
    top: 68px;
    right: 0;
    text-align: center;
    font-size: 1.5rem;
    background-color: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 0 10px;
    -webkit-border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -ms-border-radius: 0 0 0 10px;
    -o-border-radius: 0 0 0 10px;
  }
  .main-nav ul {
    flex-direction: column;
    font-size: 1rem;
    width: 100%;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }
  .hero .left {
    width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .header-cta {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */