/*
Theme Name: Swenson Gardens Inspired
Theme URI: https://example.com/swenson-gardens
Author: Grok Assisted
Author URI: https://x.ai
Description: 仿 Swenson Gardens 牡丹网站风格的极简 WordPress 主题
Version: 1.0.0
Text Domain: swenson-gardens
*/

:root {
  --pink-main: #e83e8c;     /* 粉色主色，根据截图 */
  --pink-light: #f8c8d8;
  --green: #4a7043;
  --gray: #555;
  --bg-light: #fffaf5;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  background: #fff;
}

a { color: var(--pink-main); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Logo area */
.site-header {
  text-align: center;
  padding: 30px 0 10px;
  background: #fff;
}

.site-title {
  color: var(--pink-main);
  font-size: 3.2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.site-subtitle {
  color: var(--green);
  font-size: 1.3rem;
  margin: 8px 0 0;
  font-style: italic;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&q=80') center/cover no-repeat;  /* 换成你自己的大图 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

.hero h1 {
  font-size: 3.8rem;
  margin: 0 0 1rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.5rem;
  margin: 0 0 2rem;
}

.btn {
  display: inline-block;
  background: var(--pink-main);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
}

.btn:hover {
  background: #c13584;
}

/* Chemical Free Section */
.section-chemical {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.section-chemical h2 {
  color: var(--pink-main);
  font-size: 2.6rem;
}

/* Featured Products */
.featured-products {
  padding: 60px 0;
  text-align: center;
}

.featured-products h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: var(--pink-main);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.product-title {
  margin: 15px 0 8px;
  font-size: 1.35rem;
}

.product-price {
  color: #e91e63;
  font-weight: bold;
  font-size: 1.4rem;
}

/* Peony Care */
.peony-care {
  background: #f9f5f2;
  padding: 60px 0;
  text-align: center;
}

.peony-care .inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: #2d1a1a;
  color: #ccc;
  padding: 60px 0 30px;
  text-align: center;
  font-size: 0.95rem;
}

.footer-nav a {
  color: #eee;
  margin: 0 15px;
}

.footer-nav a:hover { color: white; }