/* Google Fonts should be added in <head> */
/* Noto Nastaliq Urdu + Noto Sans Arabic */

body {
    padding-top: 15px;
    padding-bottom: 50px;
    background-color: #f4f5f7;

    /* Urdu-friendly font stack */
    font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    direction: rtl;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    padding: 10px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    direction: rtl;
}

header .logo {
    height: 60px;
    object-fit: contain;
    margin-left: 10px; /* changed for RTL */
}

header h1 {
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin: 0;

    /* Urdu heading font */
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 2;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1050;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.05);
    padding: 15px 0;
    font-size: 14px;
    color: #555;
    text-align: center;
}

/* PDF Card */
.pdf-card {
    max-width: 1000px;
    margin: 0 auto 40px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pdf-card .card-header {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding: 15px 20px;

    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 2;
}

.pdf-card iframe {
    width: 100%;
    height: 75vh;
    border: none;
}

/* Title Section */
.title-section h1,
.title-section h2 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 2;

    font-family: 'Noto Nastaliq Urdu', serif;
}

.title-section p {
    font-size: 16px;
    color: #666;
}

/* Alerts */
.alert-warning {
    max-width: 600px;
    margin: 40px auto;
    font-size: 16px;
}

/* Main spacing */
main {
    padding-top: 70px;
}

/* General Urdu readability */
p, span, a, button {
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* Buttons (optional improvement) */
button, a {
    font-family: 'Noto Sans Arabic', sans-serif;
}

/* Flipbook images */
.flipbook-page {
    border-radius: 6px;
}