/*
Theme Name: FWM
Theme URI: https://fwm.dorm.local/fwm
Author: loentlai
Author URI: https://www.shtc.tw
Description: A minimalist Japanese-natural style WordPress theme for interior design websites.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: FWM
*/

@import url("css/style.css?v=20250812");

body {
  font-family: 'Noto Serif TC', 'Noto Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #333;
}

.hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  color: #4B4B3E;
  margin-bottom: 1rem;
}

.cta {
  background-color: #6B705C;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
}

.about-gallery {
  padding: 4rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.about {
  max-width: 400px;
}

.testimonial-posts {
  display: flex;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
}

.testimonial blockquote {
  font-style: italic;
  border-left: 4px solid #A5A58D;
  padding-left: 1rem;
}

.posts {
  max-width: 400px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: #CCC;
  border-radius: 50%;
}

.actions span {
  margin-right: 1rem;
  color: #6B705C;
  cursor: pointer;
}