/* Define Roboto font with all styles and weights */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Default font weight */
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
     font-family: "Noto Sans Bengali", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; /* Bold font for headings */
    margin: 0 0 10px;
    color: #222;
}

/* Paragraph styles */
p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0 0 15px;
}

/* Italic text */
em, i {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}

/* Light text */
.light-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

/* Light italic text */
.light-italic-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: italic;
}

/* Buttons */
button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Medium font weight for buttons */
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

img{
max-width: 100%;}
