/*
 * Main stylesheet for Tiyam Tan Posh
 * Contains global styles for body, layout, and the main navigation bar.
 */

/* General Body and Layout Styles */
body {
    background-color: #f8f9fa; /* A light grey background */
    font-family: 'Vazir', sans-serif; /* Consistent font for the whole site */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Ensures the main content area grows to fill space */
}

/* Navigation Bar Styles */
.navbar {
    font-size: 1rem; /* Reset font size for navbar content */
}

.navbar-brand {
    font-family: 'PersianKhatKhati02', 'Vazir', sans-serif;
    font-size: 1.75rem; /* A good size for the brand name */
}

.nav-link {
    font-family: 'VazirM', sans-serif; /* A medium weight for nav links */
}
.dropdown-item{
    font-size: xx-large;
}
