/* Noto Serif Bengali Font */
@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-Regular.ttf')
    format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-Medium.ttf')
    format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-SemiBold.ttf')
    format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-Bold.ttf')
    format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-Light.ttf')
    format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-ExtraLight.ttf')
    format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-ExtraBold.ttf')
    format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif Bengali';
  src: url('../fonts/Noto_Serif_Bengali/NotoSerifBengali-Black.ttf')
    format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Manrope Font */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-primary: 'Manrope', 'Noto Serif Bengali', sans-serif;
  --font-secondary: 'Noto Serif Bengali', 'Manrope', serif;
  --font-bangla: 'Noto Serif Bengali', serif;
  --font-english: 'Manrope', sans-serif;
}

/* Global font settings */
html,
body {
  font-family: var(--font-primary) !important;
}

/* Set font family for all elements */
*,
*::before,
*::after {
  font-family: inherit !important;
}

/* English text specific styling */
.en-text,
.english-text {
  font-family: var(--font-english) !important;
}

/* Bangla text specific styling */
.bn-text,
.bangla-text {
  font-family: var(--font-bangla) !important;
}

/* Specific element styles */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
select,
textarea,
label,
li,
div {
  font-family: var(--font-primary);
}

/* Form elements */
input::placeholder,
textarea::placeholder {
  font-family: var(--font-primary);
}

/* Button text */
button,
.button,
[type='button'],
[type='reset'],
[type='submit'] {
  font-family: var(--font-primary);
}
