/*
Theme Name: Bashundhara Paints
Theme URI: https://bashundharagroup.com
Author: Bashundhara Group
Author URI: https://bashundharagroup.com
Description: Official website theme for Bashundhara Paints, a subsidiary of Bashundhara Group Bangladesh.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bashundhara-paints
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: disc;
    padding-left: 25px;
}

/* ===== NAVBAR ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    border-bottom: 2px solid #cc0000;
    padding: 10px 20px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #cc0000;
    line-height: 1.2;
}

.nav-logo-sub {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #555;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #cc0000;
    text-decoration: underline;
    font-weight: bold;
}

.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 4px 10px;
    font-size: 22px;
    color: #333;
}

.nav-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 20px;
}

.nav-mobile-menu a {
    display: block;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.nav-mobile-menu a:last-child {
    border-bottom: none;
}

.nav-mobile-menu a:hover {
    color: #cc0000;
}

/* ===== PAGE OFFSET (for fixed nav) ===== */
.page-wrap {
    padding-top: 70px;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.hero-carousel img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    background: #cc0000;
}

/* ===== SECTIONS ===== */
section {
    padding: 50px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-inner-sm {
    max-width: 850px;
    margin: 0 auto;
}

.section-inner-md {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== WELCOME ===== */
.welcome-section {
    background: #fff;
    text-align: center;
}

.welcome-section .section-inner {
    max-width: 800px;
}

.welcome-section h1 {
    font-family: Georgia, serif;
    font-size: 36px;
    color: #cc0000;
    margin-bottom: 15px;
}

.welcome-section p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.welcome-section p.tagline {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.welcome-section p a {
    color: #cc0000;
    text-decoration: underline;
    font-weight: bold;
}

.welcome-section p a:hover {
    color: #aa0000;
}

/* ===== STATS ===== */
.stats-section {
    background: #f5f5f5;
    padding: 40px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: #fff;
    padding: 25px 15px;
    border: 1px solid #ddd;
}

.stat-num {
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 6px;
}

.stat-label {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #777;
}

/* ===== PRODUCTS ===== */
.products-section {
    background: #fff;
}

.products-section h2 {
    font-family: Georgia, serif;
    font-size: 30px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.products-section .subtitle {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 35px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    text-align: center;
    background: #fafafa;
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-card-body {
    padding: 18px 16px 22px;
}

.product-card h3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-card p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: #fef2f2;
}

.why-section h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #cc0000;
    text-align: center;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.why-card {
    background: #fff;
    border: 1px solid #f0c0c0;
    padding: 20px 18px;
}

.why-card h4 {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 8px;
}

.why-card p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ===== HOME CTA ===== */
.home-cta {
    background: #cc0000;
    padding: 45px 20px;
    text-align: center;
}

.home-cta h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.home-cta p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.btn-white {
    background: #fff;
    color: #cc0000;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background: #f5f5f5;
    color: #cc0000;
}

/* ===== ABOUT PAGE ===== */
.about-header {
    background: #cc0000;
    padding: 40px 20px;
    text-align: center;
}

.about-header h1 {
    font-family: Georgia, serif;
    font-size: 38px;
    color: #fff;
    margin-bottom: 8px;
}

.about-header p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.about-intro {
    background: #fff;
    padding: 45px 20px;
}

.about-intro h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.about-intro p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.section-tag {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 12px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-tag.red  { background: #cc0000; color: #fff; }
.section-tag.dark { background: #333;    color: #fff; }

.mission-section {
    background: #fef2f2;
    padding: 45px 20px;
    border-top: 3px solid #cc0000;
}

.mission-section h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #cc0000;
    margin-bottom: 18px;
}

.mission-section p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-section blockquote {
    border-left: 4px solid #cc0000;
    padding-left: 18px;
    margin: 20px 0;
    font-family: Georgia, serif;
    font-size: 16px;
    color: #333;
    font-style: italic;
    line-height: 1.7;
}

.vision-section {
    background: #fff;
    padding: 45px 20px;
}

.vision-section h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 18px;
}

.vision-section p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-section {
    background: #f5f5f5;
    padding: 45px 20px;
    border-top: 3px solid #cc0000;
}

.values-section h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #cc0000;
    margin-bottom: 18px;
}

.values-section > .section-inner-sm > p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.value-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 22px 16px;
    text-align: center;
}

.value-card h4 {
    font-family: Georgia, serif;
    font-size: 17px;
    color: #cc0000;
    margin-bottom: 10px;
}

.value-card p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.group-section {
    background: #fff;
    padding: 45px 20px;
}

.group-section h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.group-section p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.group-section ul {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 2;
    padding-left: 25px;
    margin-bottom: 15px;
}

.back-cta {
    background: #333;
    padding: 35px 20px;
    text-align: center;
}

.back-cta p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 18px;
}

.btn-red {
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 11px 28px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-red:hover {
    background: #aa0000;
    color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #222;
    color: #ccc;
    padding: 30px 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 25px;
}

.footer-brand-name {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #cc0000;
    margin-bottom: 8px;
}

.footer-brand-desc {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}

.footer-col-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: #cc0000;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #999 !important;
    margin-bottom: 8px;
    text-decoration: none !important;
    cursor: pointer;
}

.footer-col a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.footer-contact p a {
    display: inline !important;
    color: #999 !important;
    text-decoration: none !important;
    cursor: pointer;
}

.footer-contact p a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.footer-contact p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #999;
    line-height: 1.9;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .nav-mobile-menu.open {
        display: block;
    }

    .hero-carousel img {
        height: 260px;
    }

    .welcome-section h1 {
        font-size: 26px;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 24px;
    }
}
