/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* হিরো সেকশন স্টাইল */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%); /* হালকা নীল থেকে সাদা গ্রেডিয়েন্ট */
    /* আপনি চাইলে এখানে একটি ওয়েভ (wave) ব্যাকগ্রাউন্ড ইমেজ ব্যবহার করতে পারেন */
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* ছোট স্ক্রিনে স্ট্যাক হওয়ার জন্য */
}

/* বাম দিকের কন্টেন্ট */
.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50; /* গাঢ় নীল টেক্সট */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

/* বাটন স্টাইল */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2563eb; /* প্রাইমারি নীল রঙ */
    color: #ffffff;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* ডান দিকের ইমেজ */
.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* ল্যাপটপের নিচে হালকা ছায়া */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* রেসপন্সিভ ডিজাইন (মোবাইল ও ট্যাবলেটের জন্য) */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column-reverse; /* ছোট স্ক্রিনে ইমেজ উপরে যাবে */
        text-align: center;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image {
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }
}