/* Custom styles for the academic website */

/* Apply base font size to body and paragraphs */
body, p {
    font-size: var(--base-font-size, 1.1rem);
    line-height: var(--line-height, 1.7);
}

/* Heading sizes */
h1 {
    font-size: var(--heading-font-size, 2.5rem);
}

h2 {
    font-size: var(--subheading-font-size, 2rem);
}

h4 {
    font-size: var(--paper-title-size, 1.5rem);
}

/* Card text size */
.card-text {
    font-size: var(--base-font-size, 1.1rem);
}

/* Navbar text size */
.navbar .nav-link {
    font-size: var(--base-font-size, 1.1rem);
}

/* List items in cards */
.card ul li {
    font-size: var(--base-font-size, 1.1rem);
}

/* Make small text slightly larger */
.small, small {
    font-size: 90%;
}

/* Button text */
.btn {
    font-size: var(--base-font-size, 1.1rem);
}

/* Lead text on homepage */
.lead {
    font-size: calc(var(--base-font-size, 1.1rem) * 1.15);
}

/* Footer styling */
.footer {
    border-top: 1px solid #dee2e6;
}

.footer p {
    font-size: 0.9rem;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
}

.footer a:hover {
    color: #007bff;
    text-decoration: underline;
}
