/* FFTORY - Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { background: #1a1a2e; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #e94560; font-size: 1.8rem; font-weight: bold; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #e94560; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 100px 0; text-align: center; color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-sub { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background: #e94560; color: #fff; }
.btn-primary:hover { background: #ff6b6b; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #1a1a2e; }
.btn-small { background: #e94560; color: #fff; padding: 8px 20px; font-size: 0.9rem; }
.btn-small:hover { background: #ff6b6b; }

/* Sections */
section { padding: 80px 0; }
h2 { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; color: #1a1a2e; }
.section-desc { text-align: center; color: #666; margin-bottom: 3rem; font-size: 1.1rem; }

/* Products */
.products { background: #f8f9fa; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.product-card { background: #fff; border-radius: 12px; padding: 2rem; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); position: relative; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-5px); }
.placeholder-img { font-size: 5rem; margin-bottom: 1rem; }
.product-card h3 { margin-bottom: 0.5rem; color: #1a1a2e; }
.product-desc { color: #666; margin-bottom: 1rem; }
.product-tag { position: absolute; top: 15px; right: 15px; background: #e94560; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; }

/* Stories */
.story-text { max-width: 800px; margin: 0 auto; text-align: center; }
.story-text p { margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.8; }
.story-text .btn { margin: 1rem 0.5rem; }

/* About */
.about { background: #f8f9fa; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.about-card { background: #fff; border-radius: 12px; padding: 2rem; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.about-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.contact-item { background: #fff; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.contact-item h3 { margin-bottom: 0.5rem; }

/* Footer */
.footer { background: #1a1a2e; color: #fff; text-align: center; padding: 2rem 0; }
.footer-links a { color: #e94560; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    h2 { font-size: 1.8rem; }
}
