/* =========================
   Global Reset & Base
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================
   Hero Section
========================= */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #ffffff;
}

.hero-text h1 {
  font-size: 42px;
}

.hero-text p {
  font-size: 20px;
}

/* =========================
   Factory Section
========================= */
.factory {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  background: #ffffff;
}

.factory img {
  width: 50%;
  border-radius: 12px;
}

.factory-text {
  flex: 1;
}

/* =========================
   Features Section
========================= */
.features {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.feature-list {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  flex: 1;
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

/* =========================
   About Factory (Art Style)
========================= */
.about-factory {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f7f4, #ffffff);
  text-align: center;
}

.about-factory h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 36px;
  color: #2a2a2a;
}

.about-factory p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   Product Showcase (4 items)
========================= */
.product-showcase {
  padding: 90px 20px;
  background: #ffffff;
}

.showcase-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 80px;
  letter-spacing: 2px;
  color: #2a2a2a;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 90px;
}

.showcase-image,
.showcase-text {
  flex: 1;
}

.showcase-image img {
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.showcase-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 22px;
  color: #1f1f1f;
}

.showcase-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

.right-image {
  flex-direction: row-reverse;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 992px) {
  .factory {
    padding: 60px 30px;
  }

  .hero-text h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-text {
    bottom: 15%;
    left: 6%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* Factory */
  .factory {
    flex-direction: column;
    padding: 50px 20px;
  }

  .factory img {
    width: 100%;
  }

  /* Features */
  .feature-list {
    flex-direction: column;
  }

  /* About */
  .about-factory h2 {
    font-size: 38px;
  }

  .about-factory p {
    font-size: 18px;
  }

  /* Showcase */
  .showcase-title {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .showcase-item {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .showcase-text h3 {
    font-size: 28px;
  }

  .showcase-text p {
    font-size: 17px;
    max-width: 100%;
  }
}






/* Footer Styles */
.site-footer {
    background-color: #1a1a1a; /* 高端深灰色背景 */
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d4af37; /* 金色点缀 */
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #777;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    margin-left: 15px;
}

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

/* Responsive adjustment */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}