/*
Theme Name: Datanalyser

Adding support for languages written in a Right To Left (RTL) direction is easy,
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/


@font-face {
	font-family: 'BNazanin';
	src: 
        url('../fonts/BNazanin.woff2') format('woff2'), 
        url('../fonts/BNazanin.woff') format('woff'), 
        url('../fonts/BNazanin.ttf') format('truetype');
}
body, div, p, a, h1, h2, h3, h4, h5{
    font-family: BNazanin;
    text-align: justify;
}
input[type="submit"],
input[type="search"],
input[type="text"],
input[type="email"],
input[type="number"] {
    font-family: BNazanin !important;
    font-size: 1.2rem;
}
textarea {
    font-family: BNazanin !important;
    font-size: 1.2rem !important;
}
select {
    font-family: BNazanin !important;
    font-size: 1.2rem !important;
}
button[type="submit"] {
    font-family: BNazanin !important;
    font-size: 1.2rem;
    background-color: var(--wp--preset--color--vivid-cyan-blue);
}
.menu-toggle {
    font-family: BNazanin !important;
    font-size: 1.2rem;
}
p {
    font-size: 1.2rem;
}

/* RTL Footer Contact Section Styling */
.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
    background-color: #f7f7f7; /* Matches Twenty Seventeen's light background */
    border-top: 1px solid #e1e1e1; /* Subtle border for separation */
    direction: rtl; /* Set right-to-left layout */
    text-align: right;
}
.footer-contact div {
    flex: 1 1 45%; /* Adjust layout on smaller screens */
    margin: 10px;
    padding: 10px;
}
.footer-contact h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #222; /* Matches Twenty Seventeen's primary text color */
    font-weight: bold;
}
.footer-contact p {
    margin: 5px 0;
    font-size: 1em;
    line-height: 1.5;
    color: #555; /* Matches secondary text color */
}
.footer-email {
    margin: 5px 0;
    font-size: 0.8em;
    line-height: 1.5;
    color: #555; /* Matches secondary text color */
}
.footer-contact a {
    color: #0073aa; /* Matches Twenty Seventeen's link color */
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}
@media screen and (min-width: 48em) {
    .page .entry-header {
    	width: 20% !important;
    }
    .page .entry-content {
    	width: 75% !important;
    }
    .social-navigation {
    	width: 20% !important;
    }
    .site-info {
    	width: 75% !important;
    }
}
.entry-header h1, h2 {
    font-size: 1.75rem !important;
}
.entry-content li {
    font-size: 1.2rem;
}
.wp-block-media-text img {
    border-radius: 16px;
}
.menu {
    font-size: 1.1rem;
}
.site-title a {
    font-size: 4.5rem;
}
.site-description {
    font-size: 1.2rem;
}
.page-header h1 {
    font-size: 2.5rem;
}
.wp-block-latest-posts a {
    font-size: 1.2rem;
}
.wp-block-latest-comments div {
    font-size: 1.2rem !important;
}
.wp-block-archives-list a {
    font-size: 1.1rem;
}
.wp-block-categories-list a{
    font-size: 1.1rem;
}
.wp-block-search__label {
    font-size: 1.2rem;
}
.entry-date {
    font-size: 0.9rem;
}
.cat-links a {
    font-size: 0.9rem;
}
.tags-links a {
    font-size: 0.9rem;
}













