'); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 20px; margin-bottom: 60px; } .hero h2 { font-size: 3rem; margin-bottom: 20px; animation: fadeIn 1s ease; } .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; animation: fadeIn 1.2s ease; } .btn { display: inline-block; background-color: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); border: 2px solid var(--accent); animation: fadeIn 1.4s ease; } .btn:hover { background-color: transparent; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .btn-secondary { background-color: transparent; border-color: white; margin-left: 15px; } .btn-secondary:hover { background-color: white; color: var(--primary); } /* About Section */ .section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent); } .about-content { display: flex; gap: 50px; align-items: center; } .about-text { flex: 1; } .about-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .feature-item { display: flex; align-items: flex-start; gap: 15px; } .feature-icon { background-color: var(--secondary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; } .feature-text h4 { margin-bottom: 5px; } .about-image { flex: 1; background: linear-gradient(45deg, var(--secondary), var(--primary)); border-radius: 10px; height: 400px; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; text-align: center; padding: 20px; } /* Products Section */ .products { background-color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: var(--transition); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #e9ecef; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--gray); } .product-info { padding: 20px; } .product-info h3 { margin-bottom: 10px; color: var(--primary); } .product-info p { color: var(--gray); margin-bottom: 15px; } .product-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; } .category-tag { background-color: #e9f7fe; color: var(--secondary); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; } /* Why Us Section */ .why-us { background: linear-gradient(to right, var(--primary), #1a2530); color: white; } .why-us .section-title h2 { color: white; } .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .benefit-card { background-color: rgba(255,255,255,0.05); border-radius: 10px; padding: 30px; text-align: center; transition: var(--transition); } .benefit-card:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-5px); } .benefit-icon { font-size: 3rem; margin-bottom: 20px; color: var(--secondary); } .benefit-card h3 { margin-bottom: 15px; font-size: 1.5rem; } /* Contact Section */ .contact-container { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); } .contact-details { margin: 30px 0; } .contact-item { display: flex; align-items: flex-start; margin-bottom: 20px; } .contact-icon { width: 50px; height: 50px; background-color: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-right: 15px; flex-shrink: 0; } .contact-form { flex: 1; background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--primary); color: white; padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #b0bec5; text-decoration: none; transition: var(--transition); } .footer-col ul li a:hover { color: white; padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #b0bec5; font-size: 0.9rem; } /* Animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { flex-direction: column; } } @media (max-width: 768px) { nav ul { display: none; } .mobile-menu-btn { display: block; } .hero h2 { font-size: 2.2rem; } .hero p { font-size: 1rem; } .btn { display: block; margin: 10px auto; width: 80%; max-width: 300px; } .btn-secondary { margin-left: 0; } }
PrincessHome specializes in designing and manufacturing high-quality furniture that combines aesthetic appeal with exceptional functionality. Serving global clients with innovative home and office solutions since 2010.
Explore Our Collection Request a QuoteFounded in 2010, PrincessHome has grown into a leading furniture manufacturer specializing in creating exquisite pieces for homes and offices worldwide. With a dedicated team of over 200 skilled craftsmen and designers, we blend traditional techniques with modern innovation to deliver products that exceed expectations.
Our state-of-the-art 50,000 square meter manufacturing facility in Foshan, China, allows us to maintain strict quality control while ensuring efficient production and timely delivery to our global clientele.
Attention to detail in every piece we create
Contemporary styles that complement any space
Tailored to your specific requirements
Eco-friendly and durable materials
Modern, comfortable seating solutions designed for relaxation and style. Available in various configurations, fabrics, and finishes.
Elegant dining tables and chairs crafted for memorable gatherings. Options in wood, metal, and glass combinations.
Transform your bedroom with our luxurious bed frames, nightstands, and dressers designed for comfort and storage.
Functional and stylish desks, chairs, and storage solutions for productive work-from-home environments.
Weather-resistant pieces designed for patios, gardens, and balconies. Made with durable, all-weather materials.
Smart storage solutions including TV stands, cabinets, bookshelves, and display units to organize your space beautifully.
Each piece undergoes rigorous quality control to ensure durability, safety, and exceptional craftsmanship that meets international standards.
We offer extensive customization in dimensions, materials, finishes, and fabrics to match your specific requirements and design vision.
Our optimized supply chain and packaging expertise ensure your furniture arrives safely and on time, anywhere in the world.
We provide comprehensive OEM and ODM services, helping brands develop exclusive furniture collections with private labeling.
Committed to sustainability, we use environmentally responsible materials and manufacturing processes.
With exports to over 30 countries, we understand the diverse needs of international markets and compliance requirements.
Reach out to our team for inquiries, quotes, or partnership opportunities. We're ready to assist with your furniture needs.
No. 123 Furniture Avenue, Foshan City, Guangdong Province, China 528000
+86 123 4567 8910
Our commitment to quality is validated by international certifications: