/* Bengali Language Specific Styles */

/* Better font support for Bengali script */
body {
    font-family: 'Noto Sans Bengali', 'Vrinda', 'Arial Unicode MS', sans-serif;
}

/* Language Switcher - wider for 3 languages */
.language-switcher {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 5px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lang-option {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-option:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.lang-option.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

/* Adjust line height for better Bengali readability */
body, p, li, span {
    line-height: 1.8;
}

/* Slightly larger font for Bengali */
html {
    font-size: 16px;
}

/* Better spacing for Bengali text */
.hero-title {
    line-height: 1.3;
}

.hero-subtitle {
    line-height: 1.7;
}

/* FAQ questions in Bengali need more space */
.faq-question h3 {
    line-height: 1.6;
}

/* Adjust button text */
.btn {
    font-size: 1.05rem;
}

/* Better readability for Bengali headers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Bengali numbers styling */
.step-number,
.step-h-number,
.tip-number {
    font-family: 'Noto Sans Bengali', 'Vrinda', sans-serif;
}

/* Mobile adjustments for Bengali */
@media (max-width: 968px) {
    .language-switcher {
        top: 70px;
        right: 15px;
        padding: 4px;
        flex-wrap: wrap;
        max-width: 200px;
    }
    
    .lang-option {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .language-switcher {
        top: 65px;
        right: 10px;
    }
    
    html {
        font-size: 15px;
    }
}
