/* ==========================================================================
   Hero Section - Clean Integrated Dark Overlay
   ========================================================================== */

.hero {
    position: relative;
    background-image: url('../images/department-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4.8rem 1rem 4rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* পেছনের ছবির সাথে মসৃণ ডিপ-ব্লু গ্রেডিয়েন্ট */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 64, 0.72) 0%, rgba(10, 23, 44, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* টপ ট্যাগ */
.hero-tag {
    display: inline-block;
    color: #fdba74;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* মূল ক্লাব টাইটেল */
.hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

/* ক্লাবের মূল স্লোগান */
.hero-motto {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* অ্যাকশন বাটন */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-accent {
    background-color: #ea580c;
    color: #ffffff;
    border: 1px solid #ea580c;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.btn-accent:hover {
    background-color: #c2410c;
    border-color: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.5);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0f2b57;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* মোবাইল রেসপনসিভ */
@media (max-width: 600px) {
    .hero {
        padding: 3.8rem 1rem 3.2rem;
    }

    .hero-tag {
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-motto {
        font-size: 0.9rem;
        margin-bottom: 1.4rem;
    }

    .btn {
        padding: 0.55rem 1.1rem;
        font-size: 0.82rem;
    }
}
