/* বেসিক রিসেট এবং গ্লোবাল স্টাইল */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #007bff;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #444;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f2f2f2;
}

/* বাটন স্টাইল */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6f61; /* আকর্ষণীয় রঙ */
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #e65c50;
}

.btn-secondary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

/* হেডার স্টাইল */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo img {
    height: 40px; /* লোগোর উচ্চতা */
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #555;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #ff6f61;
}

.main-nav ul li a .fa-shopping-cart {
    font-size: 1.2em;
}

.hamburger-menu {
    font-size: 1.8em;
    cursor: pointer;
    display: none; /* ডেস্কটপে লুকানো থাকবে */
    color: #333;
}

/* হিরো সেকশন */
.hero-section {
    background: url('images/hero-bg.jpg') no-repeat center center/cover; /* একটি সুন্দর ব্যানার ছবি ব্যবহার করো */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-section::before { /* ওভারলে যোগ করা */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* পণ্য গ্রিড */
.product-grid .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px; /* ছবির নির্দিষ্ট উচ্চতা */
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #444;
}

.product-card p {
    font-size: 1.2em;
    color: #ff6f61;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ফিচার সেকশন */
.features-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 3em;
    color: #ff6f61;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #555;
}

.feature-item p {
    color: #777;
}

/* CTA সেকশন */
.cta-section {
    background-color: #ff6f61;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #ff6f61;
}
.cta-section .btn-primary:hover {
    background-color: #eee;
}

/* ফুটার স্টাইল */
.main-footer {
    background-color: #222;
    color: #bbb;
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff6f61;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6f61;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* মোবাইল রেসপনসিভনেস */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* মোবাইল মেনু লুকানো থাকবে জাভাস্ক্রিপ্ট দিয়ে টগল হবে */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 80px; /* হেডার উচ্চতা অনুযায়ী */
        left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .main-nav.active {
        display: flex; /* জাভাস্ক্রিপ্ট দ্বারা সক্রিয় হলে দেখাবে */
    }
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav ul li {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        display: block;
        color: #333;
    }
    .hamburger-menu {
        display: block; /* মোবাইলে দেখাবে */
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }

    .product-grid .products,
    .features-section .container,
    .main-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul {
        padding-left: 0;
    }
}
