/*
Theme Name: Taza Clone
Theme URI: https://thangmaytaza.com/
Author: AI Agent
Description: Clone theme of thangmaytaza.com with Gutenberg block editor support
Version: 1.0.0
Text Domain: taza-clone
*/

:root {
    --primary: #221854;
    --secondary: #ff6604;
    --dark: #0a0a0a;
    --gray: #f6f6f6;
    --white: #ffffff;
    --border: #eee;
    --product-bg: #291880;
    --label-purple: #897eb3;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; font-size: 14px; line-height: 1.6; color: var(--dark); }
a { color: var(--secondary); text-decoration: none; }
a:hover { color: #e55a00; }
img { max-width: 100%; height: auto; }
.container { max-width: 1270px; margin: 0 auto; padding: 0 15px; }
.section { padding: 80px 0; }
.section-gray { background: var(--gray); }
.site-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo a { font-size: 24px; font-weight: 800; color: var(--primary); text-decoration: none; }
.main-nav ul { display: flex; list-style: none; gap: 25px; }
.main-nav a { color: var(--primary); font-weight: 600; font-size: 15px; text-transform: uppercase; transition: color 0.3s; }
.main-nav a:hover { color: var(--secondary); }
.header-hotline { font-size: 16px; font-weight: 700; color: var(--secondary); }
.hero-slider { position: relative; height: 500px; overflow: hidden; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title span { display: inline-block; background: var(--secondary); color: var(--white); padding: 10px 30px; font-weight: 600; font-size: 18px; position: relative; }
.section-title span::after { content: ''; position: absolute; right: -16px; top: 0; width: 0; height: 0; border-top: 21px solid transparent; border-bottom: 21px solid transparent; border-left: 16px solid var(--secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .label { color: var(--label-purple); letter-spacing: 8px; font-size: 13px; margin-bottom: 10px; }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.stat-number { font-size: 48px; font-weight: 800; color: var(--secondary); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { border: 2px solid var(--secondary); border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.product-card .card-image { height: 200px; background: var(--gray); overflow: hidden; }
.product-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card .card-body { background: var(--product-bg); color: var(--white); padding: 20px; }
.product-card .card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.btn-more { color: var(--secondary); font-weight: 600; display: inline-block; margin-top: 10px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { background: var(--white); border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; }
.project-card .card-image { height: 200px; overflow: hidden; }
.project-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.project-card .card-body { padding: 20px; }
.project-card h3 { font-size: 15px; font-weight: 600; color: var(--primary); }
.services-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.service-card { text-align: center; width: 150px; }
.service-card .icon-circle { width: 100px; height: 100px; border-radius: 50%; background: var(--gray); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 40px; color: var(--secondary); }
.equipment-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.equipment-card { text-align: center; background: var(--white); padding: 15px; border-radius: 8px; border: 1px solid var(--border); transition: border-color 0.3s; }
.equipment-card:hover { border-color: var(--secondary); }
.equipment-card .icon { font-size: 40px; color: var(--secondary); margin-bottom: 10px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { background: var(--white); border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); overflow: hidden; }
.news-card .card-image { height: 200px; overflow: hidden; }
.news-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card .card-body { padding: 15px; }
.news-card .date { font-size: 12px; color: #999; margin-bottom: 5px; }
.partners-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; }
.partners-grid img { height: 40px; opacity: 0.6; filter: grayscale(100%); transition: all 0.3s; }
.partners-grid img:hover { opacity: 1; filter: grayscale(0%); }
.cta-section { background: var(--primary); color: var(--white); padding: 80px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-left h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.cta-left .hotline { font-size: 24px; font-weight: 700; color: var(--secondary); }
.cta-form { background: var(--white); padding: 30px; border-radius: 8px; }
.cta-form input, .cta-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; }
.cta-form input[type="submit"] { background: var(--secondary); color: var(--white); border: none; cursor: pointer; font-weight: 600; }
.site-footer { background: var(--dark); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #999; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.sidebar-widget { background: var(--white); padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 20px; }
.sidebar-widget h3 { border-bottom: 2px solid var(--secondary); padding-bottom: 10px; margin-bottom: 15px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid var(--border); border-radius: 6px; }
.breadcrumb { padding: 15px 0; background: var(--gray); }
@media (max-width: 992px) { .products-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); } .equipment-grid { grid-template-columns: repeat(3, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } .blog-layout, .about-grid, .cta-grid, .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .main-nav { display: none; } .products-grid, .projects-grid, .news-grid { grid-template-columns: 1fr; } .equipment-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: 1fr; } .hero-slider { height: 300px; } }
