/* ============================================
   BAKA FURNITURE - About Page Styles
   Extracted from functions.php inline CSS
   ============================================ */

/* --- About page sections --- */
.baka-about-section { padding: 50px 0; }

/* --- Hero --- */
.baka-about-hero { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(https://bakajiaju.com/wp-content/uploads/2026/06/about_office.jpg) center/cover no-repeat; }
.baka-about-hero .btn-hero { display: inline-block; padding: 14px 40px; background: #1eb7aa; color: #fff; border-radius: 30px; text-decoration: none; font-size: 18px; font-weight: 600; transition: all 0.3s; }
.baka-about-hero .btn-hero:hover { background: #189a8f; }

/* --- Section titles --- */
.baka-section-title { text-align: center; margin-bottom: 25px; }
.baka-section-title .subtitle { color: #1eb7aa; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.baka-section-title h2 { font-size: 36px; font-weight: 700; color: #242424; margin-bottom: 15px; }
.baka-section-title p { font-size: 16px; color: #444; max-width: 800px; margin: 20px auto 0; line-height: 1.8; }

/* --- Two column layout --- */
.baka-two-col { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.baka-two-col .col { flex: 1; }
.baka-two-col .col img { width: 100%; height: 420px; object-fit: cover; border-radius: 14px; display: block; }
.baka-two-col .col h3 { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.baka-two-col .col p { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 14px; }
.baka-two-col .btn-primary { display: inline-block; padding: 12px 30px; background: #1eb7aa; color: #fff; border-radius: 5px; text-decoration: none; font-weight: 600; margin-top: 10px; }


/* --- Features grid --- */
.baka-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.baka-feature-card { text-align: center; padding: 40px 20px; border-radius: 10px; }
.baka-feature-card .icon { width: 60px; height: 60px; margin: 0 auto 20px; background: #e8f8f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.baka-feature-card .icon svg { width: 30px; height: 30px; fill: #1eb7aa; }
.baka-feature-card h4 { font-size: 18px; font-weight: 700; color: #242424; margin-bottom: 10px; }
.baka-feature-card p { font-size: 14px; color: #666; line-height: 1.5; }

/* --- Factory gallery --- */
.baka-factory-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.baka-factory-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.baka-factory-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.baka-factory-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-bottom: 1px solid #e0e0e0; }
.baka-factory-card h4 { font-size: 15px; font-weight: 700; color: #1eb7aa; margin: 14px 16px 6px; line-height: 1.3; }
.baka-factory-card p { font-size: 13px; color: #777; line-height: 1.6; margin: 0 16px 16px; }

/* --- Certificates grid --- */
.baka-cert-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.baka-cert-item { text-align: center; width: 170px; }
.baka-cert-item img { width: 160px; height: auto; border: 1px solid #ddd; border-radius: 6px; display: block; margin: 0 auto; }
.baka-cert-item .cert-label { font-size: 12px; color: #555; margin-top: 8px; line-height: 1.3; }

/* --- CTA section --- */
.baka-cta-section { background: #1eb7aa; text-align: center; padding: 60px 20px; color: #fff; }
.baka-cta-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.baka-cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 10px; }
.baka-cta-section .contact-info { font-size: 20px; font-weight: 600; margin: 20px 0; }
.baka-cta-section .contact-info a { color: #fff; text-decoration: none; }
.baka-cta-section .btn-cta-white { display: inline-block; padding: 14px 40px; background: #fff; color: #1eb7aa; border-radius: 30px; text-decoration: none; font-size: 18px; font-weight: 600; margin-top: 20px; }

/* --- Utilities --- */
.baka-bg-gray { background: #f4f4f4; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .baka-factory-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .baka-features-grid { grid-template-columns: repeat(2, 1fr); }
    .baka-cert-item { width: 140px; }
    .baka-cert-item img { width: 130px; }
    .baka-about-section { padding: 50px 0; }
    .baka-section-title h2 { font-size: 28px; }
}
@media (max-width: 480px) {
    .baka-features-grid { grid-template-columns: 1fr; }
    .baka-cert-item { width: 160px; }
    .baka-cert-item img { width: 150px; }
    .baka-factory-gallery { grid-template-columns: 1fr; }
}

/* --- Mobile reverse columns --- */
.reverse-mobile { flex-direction: row; }
@media (max-width: 768px) {
    .reverse-mobile { flex-direction: column-reverse; }
    .baka-two-col { flex-direction: column; }
}

/* --- Hero Title (above hero image) --- */
.baka-about-hero-title { text-align: center; padding: 60px 20px 20px; background: #fff; }
.baka-about-hero-title h1 { font-size: 36px; font-weight: 700; color: #1eb7aa; margin-bottom: 12px; line-height: 1.2; }
.baka-about-hero-title p { font-size: 18px; color: #555; max-width: 700px; margin: 0 auto; line-height: 1.6; }
