/* Apply Tajwal font globally */
* {
    font-family: 'LamaSans','Poppins', sans-serif !important;
}

/* Ensure font is applied to inputs and buttons */
input, 
button, 
select, 
textarea,
.form-control {
    font-family: 'LamaSans', sans-serif !important;
}

/* Apply to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lamasans', sans-serif !important;
}

/* Apply to specific components */
.navbar,
.dropdown-menu,
.modal-content,
.card,
.alert,
.toast {
    font-family: 'LamaSans', sans-serif !important;
}

/* Main Header Styles */
.main-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .main-header {
        height: 400px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
    }
} 